Categories
- Computer Science (62)
- C Language (16)
- Coding Discussions (29)
- Linux / Unix Shell (16)
- Others (4)
- Overview (3)
- Entertainment (4)
- GNU+Linux+FOSS (40)
- Humor (17)
- Writings (5)
- Computer Science (62)
Tags
api array bash boot C++ casual combinatorics counting C program fedora firefox gcc gimp google graphics grub id3 implementation defined behaviour internet ipod linux numerical octave poll prime number Programming R random number recursion shift operators skype undefined behavior video wallpaper wordpress workflowStackOverflow
Area51 Stackexchange Proposals to Follow
Top 10
- Floating point math operations in bash
- Choose login manager GDM or KDM in Fedora
- Recursive Solution to Towers of Hanoi
- Counting Rectangles in an n X m Checked Board
- Read multiple arguments in bash script
- Simpson's 1/3rd Rule
- C Language Constructors and Destructors with GCC
- Little and Big Endian conversion
- Fix dark video in Skype for Linux
- GCD of n integers
Recent Comments
Polls
Tag Archives: id3
Bash Script: Reading ID3v1 Tags
mp3 files contain track name, artist name, etc meta data about the music file itself. The meta data format used in mp3 files are called the ID3 tags. There are different versions of ID3 tags available. The objective is to … Continue reading
What are ID3 Tags all about?
When you play a music file in your favorite music player, or in your portable media player the track name, album, artist, lyrics gets displayed. You can search the songs with artists, album names. Even some of the tracks come with album art too, but there is no image file anywhere. The question generally arises, where does these information come from? The answer is straight forward; this metadata about the audio track is stored inside the audio file itself. The different audio files need different codecs. Different audio format files also have different such metadata systems. For example The Vorbis comments, APE tag, ID3 tags etc.
The most common and popular audio media (although not the best) is the mp3 . Mp3 audio format stores this metadata inside the music file, either at the beginning or at the end or at both locations. The music metadata system used with mp3 is called an ID3 Tag.
We will rip off the ID3 tag and check out what’s inside it in this article. We will discuss about ID3v1.x and ID3v2.x tags.
An ID3v1 Tag Parsing Library
A small ID3v1 tag parsing library. Continue reading
Synchronization Safe Integer
Synchronization safe integers are related to ID3v2 tags. ID3v2 tags has a dynamic structure where the length of the tag is variable and inside the tag, there can stay a lot of frames which again can be of dynamic sizes. … Continue reading






