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
1
vote
1 answer

i want to play multiple mp3 in order jquery

I want to create a script in javascript/jquery that play's/speaks the letters of a certain word in the background. when i call the function playWord(); It spells out the letters of a word in a div. For example, the word 'help'. It should spell: 'h' …
Oritm
  • 2,113
  • 2
  • 25
  • 40
1
vote
2 answers

algorithm for encoding wav to mp3

I want to create a program to convert some music files from wav to mp3. WAV should be raw bitstream and reading it shouldn't be much of a problem, but I don't even know where to start with learning how to encode that raw stream into mp3. I've…
Raven
  • 4,783
  • 8
  • 44
  • 75
1
vote
6 answers

.mp3 Filetype Upload

I'm working on a PHP upload script which allows .mp3 file uploads amongst others. I've created an array which specifies permitted filetypes, including mp3s, and set a maximum upload limit of 500MB: // define a constant for the maximum upload…
Slip
1
vote
3 answers

Server logs / Webalizer, 206 partial content for audio and video files – how do I calculate the number of downloads?

I need to calculate the number of video and audio file downloads from our media server. Our media server only hosts audio/video files (mp3 and mp4) and we parse our IIS log files monthly using Stone Steps Webalizer. When I look at the Webalizer…
1
vote
1 answer

How to parse MP3 files on Windows 2008R2?

Does anyone know a good way for my .net app to decode MP3 files to PCM on Win2k8R2? A few caveats: - it should run in a 64bit process (no WoW) - should be free or open source (no Bass.net) Thanks
dcrobbins
  • 525
  • 4
  • 8
1
vote
2 answers

play mp3 sound buffers on linux

I want to be able to play an mp3 audio sound buffer on Linux which I am receiving on a specific port. This a continuous live stream. I have looked at pulseaudio, portaudio, mpg123 amongst many others but can't seem to know what to do. The mp3 sound…
Ali
  • 67
  • 1
  • 10
1
vote
1 answer

How to handle java.security.AccessControlException

I'm trying to launch my applet locally and this is the exception I get: I don't know why this is happening the mp3 is already located on the jar file, why can't I access it? SEVERE: null java.security.AccessControlException: access denied…
JavaSa
  • 5,813
  • 16
  • 71
  • 121
1
vote
1 answer

how to add music library in my android application like facebook and twitter

I want to add or play mp3 files from music library in my application... I am able to fetch all mp3 files in a listview but I want features of the music gallery which lists out the songs accroding to the albums,playlist,artist. This is my code for…
Kutbi
  • 1,154
  • 2
  • 18
  • 32
1
vote
1 answer

C# change bass of a mp3 or wav song

Is there a public song editing class for C#, I just want to be able to change the bass of a song quickly. Any information will be helpful.
Drake
  • 3,851
  • 8
  • 39
  • 48
1
vote
0 answers

Is there a way to get the progress of an mp3 download on the ipad?

We are developing a Javascript web app for the Ipad that requires sounds to be preloaded before it loads. We don't know what sounds the user needs until they click on an exercise and then they need multiple sounds to be preloaded before the exercise…
Tim
  • 2,235
  • 4
  • 23
  • 28
1
vote
1 answer

Audio with data URI fails in Chrome

I have the following html. This runs in Firefox, but in chrome the element isn't playable. Why?
1
vote
1 answer

MP3 not playing in FBML

Our application is dead, I'm using FBML mp3 tag for audio loading The app is used for more than 100k users and it worked properly, but suddenly, the player can't get…
MGE
  • 803
  • 2
  • 12
  • 22
1
vote
1 answer

Flutter AudioPlayer "spam" same asset sound

I need an AudioPlayer in Flutter that, even if one sound is currently playing, if I play another one, the previous one cancels and the new one goes. This works if I do this: audioPlayer.setReleaseMode(ReleaseMode.stop); The problem is, if I play the…
1
vote
1 answer

Determine current BPM of Icecast stream

I'm trying to detect the BPM of an Icecast MP3 stream using Liquidsoap, but I'm having trouble getting it to work. My Dockerfile: FROM savonet/liquidsoap:8101608 # Copy the script into the image COPY script.liq /usr/src/app/script.liq # Set the…
Jannik
  • 635
  • 1
  • 6
  • 14
1
vote
1 answer

How to get number of channels from mp3

The problem does not seem to be difficult, but I spent a lot of time, tried several libraries and did not find a solution. for example github.com/hajimehoshi/go-mp3 dosen't contain necessary func. file, err := os.Open("example.mp3") if err…
ragarac3
  • 51
  • 2