MP3 IDv2 Tag Viewer & File Renamer

Just a simple perl script that views and renames files based on mp3 tags. It supports UTF-8. If any one interested check it out.
Find ID3v2 tags inside mp3 files under linux/unix environment with perl and MP3::Tag module installed.
Usage: ./mp3nfo.pl /dir/file.mp3
Source: https://github.com/GoTux/Perl/blob/master/mp3nfo.pl
You can also find exe/dll/ocx meta viewer script and few others if any one care: http://wiki.gotux.net/code
Last edited by TuxLyn (2012-12-19 10:28:18)

TuxLyn wrote:Alright, thanks mate. Move it.
Done

Similar Messages

  • Can anyone suggest tag editor/file renamer?

    i've been using mp3 id3x for a few years.  when i get music i want to fix the tags and rename it to my preferred manner which is lowercase with underscores for spaces (ex. 03-hooray_for_earth-get_home.mp3).  it appears lion doesn't support id3x and the app dev has ceased support long ago. 
    does anyone know of an all in one app that can do the same thing?
    thanks!

    thanks for the recommendations.  i'll see what the scripts options can do for me.  media rage seems ok, but lacks a major feature which is the ability to change the case of file names.  it can do tag names, but not file names unless i'm missing something.  i emailed their support to see if the feature exists.
    thanks

  • ITunes 9 / MP3 IDv2.4 Year / Release date tag problems

    Hi,
    I keep all my CD's as FLAC on a Linux workstation; I want to keep a copy in MP3 format in iTunes. I've got around 5000 tracks; on Linux the tag looks as follows:
    [andrewtaylor@precision mp3]$ eyeD3 Blur/1991/Leisure/01\ -\ She\'s\ So\ High.mp3
    01 - She's So High.mp3 [ 5.45 MB ]
    Time: 04:44 MPEG1, Layer III [ ~160 kb/s @ 44100 Hz - Joint stereo ]
    ID3 v2.4:
    title: She's So High artist: Blur
    album: Leisure year: 1991
    track: 1 genre: Alternative (id 20)
    You can see that the year is 1991. I've copied this to my Mac and when I import it to itunes (and this is the same for all 5000 tracks) the year is missing, but the release date is set to 1/12/1991.
    The 'show info' option of Finder shows no year information and no release date information.
    If I go back to Linux and remove the IDv2 tag and keep only the IDv1 tag; both the Finder and iTunes is able to see the year field and use it properly.
    Anyone got any ideas? I understand that if IDv2 tags are present, iTunes will ignore the IDv1 tag; however, it must be using the year in some capacity to set the release date.
    Many thanks
    Andrew

    I've heard that something about iTunes and v2.4 just don't match up, iTunes along with many other music programs have problems with v2.4. I'd sugest converting everything to v2.3

  • Converting AIF to MP3 and keeping original file name?

    Wondering if this is possible to do using iTunes (if not, i'm open to suggestions). Basically I have a collection of AIFF files named very specifically and I'm looking to convert them to MP3 without changing the names of the actual file (example: POS-01CutThroat.aif becomes POS-01CutThroat.mp3) but still keep all the metadata of the AIF in the MP3 (title, composers, comments etc...)
    If anyone has any clue as to what i'm talking about, or even better can help me out, please let me know
    Thanks!
    null

    I have two suggestions:
    1. Use the Sundry Info to Comments script to add the filename to the Comment field, then use the File Renamer script to rename the files based on the comment field after you’ve ripped them. Obviously, this will only work if you don’t have other info that needs to be in that field.
    2. Rip your files using Max, which gives you a lot more flexibility than iTunes in terms of how the files are named and tagged. This will also produce better sounding MP3 files, because unlike iTunes, it uses the LAME standard.
    Personally, I would go with suggestion #2.

  • Files Renamed when importing to LR4 and now can't find them in LR3

    Help!  What should I do???
    Yesterday I installed LR 4 Beta.  I had a folder with 300 images in it on LR 3, obviously all files had names.  I imported these photos into LR4 to work with LR4 and they were renamed in the process.  Now in my LR3 folder, all the files still have there old names and the "missing photo ?" and I assume that's because the name has been changed and LR3 can't find them.  Any thoughts on an easy fix?
    Thanks,
    Matthew Kraus

    Thanks so much for helping me with this.
    I must admit, I didn't pay too much attention when importing this "test"
    group of photos to LR4, therein lies my problem.  Now that I look at the
    import settings that were used:
    1. Files were not added or copied, they were "moved" to a new location and
    also renamed.
    2. Files were renamed starting with "264" using my regular import template.
    Listed below are the first 10 photos with their original LR3 and he
    changed LR4 names.
    1201_001 changed to 1201_264-2
    1201_002 changed to 1201_265-2
    1201_003 changed to 1201_266-2
    1201_004 changed to 1201_267-2
    1201_005-Edit-Edit changed to 1201_268-2
    1201_005-Edit changed to 1201_269-2
    1201_005-Edit changed to 1201_270-2
    1201_005-Edit-Edit-2 changed to 1201_271-2
    I have a back up of my images on an EHD from several days ago which has the
    original file names, but this backup only has 203 of the 268 images I
    imported yesterday and are renamed.
    Thanks again,
    Matthew Kraus
    2012/1/11 Dorin Nicolaescu-Musteață <[email protected]>
       Re: Files Renamed when importing to LR4 and now can't find them in LR3 created by Dorin
    Nicolaescu-Musteață <http://forums.adobe.com/people/dorin_nicolaescu> in *Photoshop
    Lightroom* - View the full discussion<http://forums.adobe.com/message/4132062#4132062>

  • MP3 ID3 tags

    I'm looking for some free shareware software to do MP3 ID3 tags to use along with itunes. Can anyone suggest a good one to use?
    Thanks.

    import java.io.*;
    public class ReadID3 {
        public static void main(String[] arguments) {
            try {
                File song = new File(arguments[0]);
                FileInputStream file = new FileInputStream(song);
                int size = (int)song.length();
                file.skip(size - 128);
                byte[] last128 = new byte[128];
                file.read(last128);
                String id3 = new String(last128);
                String tag = id3.substring(0, 3);
                if (tag.equals("TAG")) {
                    System.out.println("Title: " + id3.substring(3, 32));
                    System.out.println("Artist: " + id3.substring(33, 62));
                    System.out.println("Album: " + id3.substring(63, 91));
                    System.out.println("Year: " + id3.substring(93, 97));
                } else
                    System.out.println(arguments[0] + " does not contain"
                         + " ID3 info."); 
                file.close();
            } catch (Exception e) {
                System.out.println("Error &#8212; " + e.toString());
    }source : - http://www.informit.com/library/content.asp?b=STY_Java2_24hours&seqNum=218&rl=1

  • Restoring from backup to new location + not wanting files renamed

    Hi there - I am a newbie to this forum.
    I have a Win XP machine that recently needed to have the hard drive wiped and the OS re-installed. Fortunately I had a recent backup of all my data so I'm in a good starting position for a restore. However I have some questions as the re-install of the OS has had a change in profile name.
    Before my machine was wiped, I had a "Daniel" profile and so my "iTunes Media folder location" was set to C:\Documents and Settings\Daniel\My Documents\My Music.
    After my PC was rebuilt, a new profile was created called "dnl". iTunes has been re-installed (version 10.1.2.17). The first time I launched iTunes the "iTunes Media folder location" was set to C:\Documents and Settings\dnl\My Documents\My Music. I did NOT choose to have iTunes browse/load my files and so currently iTunes shows no files or playlists.
    I have recreated the C:\Documents and Settings\Daniel\My Documents\My Music folder from my backup so all the music files and the previous libraries are presently in this location. However even if I change the "iTunes Media folder location" within iTunes to point to the "old" location, it doesn’t find the files or libraries.
    I have tried deleting the following files from C:\Documents and Settings\dnl\My Documents\My Music\iTunes:
    iTunes Library Extras.itdb
    iTunes Library Genius.itdb
    iTunes Library.itl
    iTunes Music Library.xml
    I did this assuming that the next time iTunes was launched, it would refer to the old location (as specified as my "iTunes Media folder location"), find the old library files there and use them. However it seems to ignore them and simply re-creates the files above in the location I deleted them from.
    So…I am unclear as to the best strategy to have iTunes point back to the old location to find the music files and retain all the playlists I had.
    I found this thread: http://support.apple.com/kb/ht1364. It mentions a method that will find all the files in the old location and move them to the new location, retaining playlists, artwork etc. Once the data has been copied, it advises to delete the files from the original location.
    However I see that it mentions checking the ‘Keep iTunes Media folder organized’ option. From reading other threads I know this to be a source of one very irritating problem – it renames all the file names. I have specifically ripped my music using software other than iTunes for the express purpose of being able to tag the filenames with more specific info than iTunes would. I like the files to named <artist>-<album>-<track no>-<track title>.<file extension> and am not a fan of the very basic filenames that iTunes assigns.
    So…I want to have iTunes simply point back to the old location and not do any file renaming. I am happy enough to have iTunes simply point to a location that isn’t technically part of my current profile. I don’t have a desperate need for the files to be moved to the dnl profile.
    So…I am guessing there has to be some other file (or registry setting?) that knows where best to point to? Can this modified?
    I would be appreciative of any assistance.
    Thanks!

    Hi Daniel, welcome to Apple Discussions.
    The default location for the iTunes library folder is <Profile><Music>iTunes with the media folder at *<Profile>\<Music>\iTunes\iTunes Media*. For XP the <Music> folder is My Documents\My Music.
    When iTunes starts up it looks for a set of library files in the last location it used. If that location is also the default location and it can't find the library files it assumes it has just been installed and creates a new set.
    Changing the location of the *iTunes Media* folder in preferences does not change which set of library files it opens, nor will it automatically detect all the media in that location.
    Ideally you should restore the folder iTunes and all its subfolders from your backup into *C:\Documents and Settings\dnl\My Documents\My Music* and start iTunes. All should work perfectly and, as far as iTunes is concerned, you will be using the same library as you used to. Any iDevices should sync without problems.
    If you media was not is the usual locations or you are unable to restore the entire iTunes folder then things become more complicated. Post back if you still have trouble and I will try to go into more detail.
    tt2

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • Viewing file names in vlc in ipad

    Hi .. I'm not sure if the topic made sense.. Here is what Im trying to do ..
    Say if I'm copying bunch of episodes from a series or movies and copy to vlc via itunes, when i try to open vlc and pick any episode, it only shows me first few letters of the file. Its quite common that all the files starts with same name..(eg. Naruto_Episode or Friends_Season_ )
    Is there any way to view file name and then select it accordingly ? OR is there any other software which is out there I can use for this purpose
    I spent some amount of time in renaming every files before i copied them to iPad.I dont want to do that everytime ..
    Any suggestions / Thoughts ?
    Thanks in Advance

    Completely agree! 
    What were the developers thinking when they hid info as basic as file name from users once imported.  Even mom/pop videos like a hockey high lights vid might have 15-20 vid clips coming in at random times and different sources.
    To make users suffer with this crippled GUI just has to be one of those decisions you cynically think were made for $$$$ reasons...
    ie cripple a useful cheaper tool like iMovie so users with even modest projects has to buy/learn the more expensive tool.  
    Thanks apple!

  • Getting MP3 comments tag to show in iTunes

    Hi
    It seems when writing an MP3 Comment tag that iTunes needs the language to be specified with the correct three character code, or else left unused.
    However Windows which I am also trying to support requires the language of the comment to be specified moreover the comment won't be visible
    unless the specified language matches with the language Windows  is running in. The solution for that is to define the language of the comment as xxx.
    That means a messy solution is needed of writing two comments frames. Why I am asking here is to find out if iTunes accepts any three character codes for unspecified languge and if it could support xxx so that developers would not have to choose whether to support Windows or iTunes.

    I can drag it to a playlist,
    If it gets added to this playlist, it is in iTunes library.
    Select it in iTunes, right click - Show in Finder to see where it is on your HD.
    If it is not in the location shown in iTunes prefs > Advanced. make sure *Copy files to iTunes media folder when adding to library* is ticked.
    Spotlight shows it residing in my Music Library,
    What do you mean you *Music library*? There is no folder named *Music library*.

  • Looking for OSX (1) or Third Party (2) Solution to tag Audio Files

    Hey all,
    I'm new here. I've signed up, because I'm looking for a way to Tag Audio Files. I've been doing Audio Diary over the years. Now instead of converting the Audio to Text, I'm looking for a way to identify Audio entries by adding Tags to them. I'm a little reluctant to use third party. you never now how long they survive. and tagging the files will be quite some work.
    so my question to you is: 1) Is there a way to tag and locate audio Files using the OS X (primary) or third Party (secondary?)
    thx
    Jazz
    ps: I know you can use the Command-I to add Spotlight Comments, but I've had some Issues that Spotlight sometimes does not locate the Files by the added Comment. further on I read about these problems in several Forums too.

    Hey Jazz. you can start by locating the files by doing a Find search - NOT Spotlight - and using the filetype. That will locate all the .mp3 or .ogg or whatever filetype they are and round them up for you.
    Once you do that, and you know how to quickly find them all, you can then get a script to batch process those files. You can use the Automator application to do that, so your next best bet would be to start dabbling with it, and see if there's any scripts available. (Im SURE there are.. there has to be..)
    I think you'll have success on the OSX Technologies threads.. the Automator and scripting stuff is there.

  • Tags showing files in backup disks

    Hi,
    I have an issue using tags in finder. If I select in finder to show files with a tag, it also shows me the files backed up or present in the disk where I'm doing the backups, so I have all the files duplicated in the tag view (one file in the internal disk, and the other in the bacukp disk). It's very annoying, because you have to be very careful when opening a file (f.i. if you open a spreadsheet from the bacukp files, the changes you made on it are lost when a new backup is done).
    Are there any way to exclude files from any tags while showing tags?
    Thanks in advance.

    Only way I know of is to disconnect your backup drive when you aren't actively using it, doing a backup.

  • Do I need to have iWork on my iOS device in order to view files that are stored in iCloud Drive?

    I was hoping that iCloud Drive would allow us to view files on our iPhones or iPads without having Pages, Numbers, or even Word, Excel, etc... When I did the update to iOS 8 I found that there was no separate app for iCloud Drive, thus no way to simply view files stored on iCloud Drive.  I understand not being able to edit the files without having iWork or Office programs installed.  Does anyone know if we will have this capability or if I'm just missing it?  If this option isn't going to be provided to us, I'll be forced to continue to use Dropbox to view files on iOS devices (even though we can't view iWork files on iOS Dropbox anymore...)

    To elaborate on my question, this is what I was expecting.  The iPad and iPhone in this picture looks as though there is a place on iOS where you can see all of the files that are located in iCloud Drive.  You can also see that each file has an associated tag (the colored dots) which we were able to start using on Mavericks.  I understand that the Mac you see in the picture has iCloud Drive as a native(ish) drive on the computer which will be available with Yosemite, but I don't understand where on the iPhone/iPad these shots were taken from, assuming it's iOS 8.0
    On the up side, I just received my iPhone 6 today to find that iPhone6 and 6+ users are given Pages, Numbers, and Keynote free for their iOS devices.

  • Meta tagging audio files in os x

    hi, I have just moved from MS to Apple. In MS I used to input important meta tags for mp3files (my own) via "info". When I chose info on OS X my only option is to use the field for Spotlight commentaries. But since I want to fill inn composer, year and so forth this seems to be to little.

    once your mp3 are in the itunes LIBRARY then you choose command + i to enter your own information. Once this is done go to advanced and convert the id3 tag to version 2.4
    You can also select a multiple number of files to do some of the information ; just experiment with it. Oh BTW if you are successful and id3 tag your files remember to copy these over to your older mp3 files where ever you have them stored and most of the information after you id3 tag them will go with the copy.

  • Can I write an Applescript to tag audio files?

    Can I write an AppleScript to tag audio files? I do not want to involve iTunes in the process; I just want to add tags to an audio file on the desktop (eventually in batch).
    Perfect scenario:
    I drag an MP3 file (or multiple MP3 files) over the AppleScript, and a dialog box appears which lets me enter fields like Name, Artist, Year, Album, Track Number (x of y), Genre, etc., and once I've filled them in and clicked OK, it goes and writes them into each of the files.
    Without me having to drag them into iTunes to do it.

    I would search http://darwinports.com/ for a termnial app that is able to edit id3-tags
    Then perhaps a AppleScript-Studio Interface for it and there you go.

Maybe you are looking for

  • Material posting

    Hi, While doing goods movement in MB1C the system show the following error"Maintain tolerance limits for tolerance key VP (CoCode ZWEL) Message no. M8215. Regards, Renuga.A

  • Compensation Managment : Reports

    Hello   Is is There a Report That compares the data between the IT 1050 Survey Results and The salary of an employee The IT 0008 Basic Pay.   Thanks.   Maria Uzcategui

  • Dreamweaver support not available

    I have Dreamweaver suite CS3 and after a computer crash I cannot get it activated.  Adobe does not offer phone support and I've been on their site for hours and cannot find a solution

  • Very Slow IPod Updates

    I just moved my music to an external HDD and am now updating. It is taking forever -- about 1/2 hour for 24 songs. Surely this should not be happening? My notebook is a Pentium 1.6GHz; my external drive is Iomega 80GB. My IPod is new 30GB color scree

  • The update 5.0.1 was meant to help the battery woes.... Well it hasn't!....

    Battery issue hasnt been solved by the update, battery life is still crappy on my iPod Touch 4th Generation...... 5.0.1 !! Needs to be solved!