Questions tagged [mp3]

MPEG-1 or MPEG-2 Audio Layer III, more commonly referred to as MP3, is a patented digital audio encoding format using a form of lossy data compression. It is a common audio format for consumer audio storage, as well as a de facto standard of digital audio compression for the transfer and playback of music on digital audio players.

The use in MP3 of a lossy compression algorithm is designed to greatly reduce the amount of data required to represent the audio recording and still sound like a faithful reproduction of the original uncompressed audio for most listeners. For example: An MP3 file that is created using the setting of 128 kbit/s will result in a file that is about 11 times smaller than the CD file created from the original audio source. An MP3 file can also be constructed at higher or lower bit rates, with higher or lower resulting quality.

The compression works by reducing accuracy of certain parts of sound that are considered to be beyond the auditory resolution ability of most people. This method is commonly referred to as perceptual coding. It uses psychoacoustic models to discard or reduce precision of components less audible to human hearing, and then records the remaining information in an efficient manner.

Further information and deeper analysis: MP3 on wikipedia

4559 questions
2
votes
3 answers

What's the easiest way to extract the JPG data from an MP3 header in java?

I wrote a JSP that hands my Flash front-end an XML file that describes the contents of my mp3 folder, but am stuck trying to parse the individual file headers for the album art that is embedded therein. Can anyone recommend a good library that has…
Yevgeny Simkin
  • 27,946
  • 39
  • 137
  • 236
2
votes
2 answers

java api for comparing MP3 contents?

I am new to this and I don't know what to do? I want to compare two MP3 files and check whether they are same or different. I want to check it by its content. please help me. I searched everywhere but not getting anything.
Vinay
  • 21
  • 2
2
votes
2 answers

windows mp3 decode library c c++

I've spent all day on this and its driving me nuts Does someone know a simple way to decode an mp3 to a simple 16 bit pcm (wave) file? i need something i can ship with my commercial program so i prefer a .lib I found libmpg123.dll but i can't figure…
steveh
  • 1,352
  • 2
  • 27
  • 41
2
votes
0 answers

Android application - reading all mp3 tags

As I see at MediaMetadataRetriever API, there are constants for the common tags. In my app I want to read all the mp3 tags. In order to do this I use jid3lib. When I tried to read tags without any connection to android (MP3 files on my computer), I…
galvan
  • 7,400
  • 7
  • 38
  • 55
2
votes
3 answers

Windows Phone 8 can play WAV file but not MP3

On Windows Phone 8, I am able to play WAV files with the below code, but not MP3 files. Is there anything special I have to do? My requirement is to play MP3s one after per user's choice, one after another. I play them all one after another on the…
techtinkerer
  • 1,280
  • 2
  • 15
  • 26
2
votes
2 answers

How to get audio file info (album, artist, image, ...) Android?

i want to know if i can get mp3 file info like album name, artist, image stored in the mp3 file and more? if there an way to do this please help. by the way: i founded a Java library called Entagged but i can't use it.
Master Fakhrey
  • 157
  • 1
  • 9
2
votes
0 answers

sox mp3 to wav. output wav file is empty

I am trying to convert mp3 file to wav file using sox. But output file is always empty. I have tried the commands found on following…
Ibrahim
  • 267
  • 1
  • 6
  • 18
2
votes
0 answers

Broken live mp3 stream from Icecast using mediaelement.js

I'm using mediaelement.js to live stream our radio station in mp3 format from Icecast. All is fine, except for odd reports that the stream won't play in certain browsers. I've verified that it won't play in Safari 5.1.7/Windows (but who uses that…
2
votes
2 answers

Parse MP3 file in .NET v4.0

How can I parse an MP3 file to get its all attributes? Also how to edit and the attributes of the MP3 file? Is there any class available in .NET v4.0?
Sauron
  • 16,668
  • 41
  • 122
  • 174
2
votes
3 answers

Good mp3 player for music website to sell songs?

I am building a website for someone who is starting a music studio. They want an mp3 player on there so people can hear some music. They also want the songs to have a download and buy link. I usually stay away from any flash stuff, but I think a…
thatryan
  • 1,551
  • 6
  • 21
  • 39
2
votes
2 answers

MP3 File Visualization

Good day. I aim to develop a software that can visualize the data portion of an mp3 file. I've done a good amount of internet research but I haven't found any good source. Before, I managed to create a software that can visualize uncompressed…
Razgriz
  • 7,179
  • 17
  • 78
  • 150
2
votes
1 answer

Flex/air mobile - Display All mp3 Song From the SD card with id3 info and poster image

I am trying to fetch all mp3 songs from SD card . I want only the .mp3 files to be displayed and not any of the folders/ sub folders. I need every mp3 song that exists in SD card and how to get ID3 info from loaded mp3 songs. Your feedback is highly…
Tushar Kadam
  • 173
  • 1
  • 1
  • 9
2
votes
2 answers

What is a good tool for programmatically playing multiple audio files at the same time in C#

I need something that will allow my program to play several audio files (.wav and/or .mp3) at the same time. It would be ideal if I could simply pass a file path to some method, and it will play that file without me having to worry about any of the…
Jackson Dean Goodwin
  • 617
  • 3
  • 11
  • 20
2
votes
4 answers

How to play audio file from raw/assets folder on the native/default media player?

I know i can play an mp3 file in the media player like that: Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); File file = new File(YOUR_SONG_URI); intent.setDataAndType(Uri.fromFile(file), "audio/*"); …
caiocpricci2
  • 7,714
  • 10
  • 56
  • 88
2
votes
1 answer

Windows Batch Lame Encode syntax

I need to get working properly a tiny Windows batch file (convert.cmd) that changes bitrate of all MP3 files in a specified folder. I need to pass 2 parameters to the batch file: the path to the folder with MP3 files bitrate I want to change them…
monstro
  • 6,254
  • 10
  • 65
  • 111