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
2 answers

Write a simple python script to convert all .wav files in a specific folder to .mp3 using lame

I'd like to write a simple script to convert a few dozen .wav files I have in a folder to v0 mp3. It doesn't need to be complicated, just enough to do the job and help me learn a little bit of python in the process ;) I've gathered that I'll need to…
Jay
  • 29
  • 1
  • 2
1
vote
1 answer

Is there a way to play an MP3 or aac .pls file with Quartz Composer?

I would like to play a radio stream in Quartz Composer. This would be the first step in developing a new kind of radio player with (i hope) interesting visuals to accompany the audio. Given a URL like…
golliher
  • 1,377
  • 3
  • 12
  • 31
1
vote
0 answers

Converting video into audio error appiers while using moviepy in python

I wanted to make a code that converts video into audio by a button in python and that is my code: from tkinter import * from tkinter.filedialog import askdirectory from tkinter.filedialog import askopenfile from moviepy.editor import * def…
1
vote
0 answers

Can html5 access a MP3 file's ByteArray

Is possible, with HTML5, to get access to a MP3 file's ByteArray and play a kind of "data generated sound"?
matodoro
  • 31
  • 1
1
vote
2 answers

How to get a custom MP3 tag via Python?

I am working on an algorithm that uses AcousticBrainz API. Part of the process is assigning an audio file with a specific UUID that refers to a file in a database. The tag is added via Picard and is present among other tags when checking e.g. via…
fasola
  • 47
  • 3
1
vote
1 answer

Trying to use LAME on mp3- getting MPEG-2.5 is supported by Layer3 only

When using the LAME interface through a node application (I am writing a JavaScript program running on node, with LAME installed), I am now getting this error on a semi-regular basis: "MPEG-2.5 is supported by Layer3 only" I am using LAME to convert…
Kim Gentes
  • 1,496
  • 1
  • 18
  • 38
1
vote
1 answer

Retrieve album art/image from a web service

I have looked at the following question: Could someone provide a C# example using itemsearch from Amazon Web Services It's out of date and not too useful. What I want is to retrieve an image from a web service for the album art given artist, song…
Dylan
  • 1,919
  • 3
  • 27
  • 51
1
vote
1 answer

No Visual w/MP3 Colorbox Linking?

I am scratching my head with - why nothing is appearing FOR : [Mp3 'Original Rock' Audio Samples:] AUDIO SAMPLE NUMBER 1 (First Link) The First Audio Sample Link "1" should link to this page (in the ColorBox):…
Varazi
  • 583
  • 2
  • 10
  • 27
1
vote
0 answers

Play mp3 from code does not trigger QuickTime. Bug in iOS 4.3

There is a bug in iOS4.3 then prevents the quick time player from launching when you play a mp3 or m4v file programmatically. Can anyone advise on how to resolve this?
Jason
  • 1,059
  • 1
  • 13
  • 32
1
vote
0 answers

IMFByteStream become unusable after the IMFMediaSource is shutdown(MF_E_BYTESTREAM_NOT_SEEKABLE).Playing mp3 playlist using Microsoft Media Foundation

this is my first question here. I apologize in advance if I make some mistakes. I'm writing a software that call a customer number (audio/voiced) when a button is pressed with as little delay as possible. It's for Windows, using C++ on MS Visual…
Bjorka
  • 11
  • 4
1
vote
0 answers

Android saving audio/mp3 file to external storage

I have question about saving audio/mp3 file to external storage after saving the file it show in external storage but when I open any android music player the file not showing there I try to change the folder to "/storage/emulated/0/Music/" still…
BARMOD
  • 21
  • 3
1
vote
2 answers

.net Core console app Azure Cognitive Services MP3

i'm trying to use Azure Cognitive Services Speech to Text and i am hitting a roadblock in .net Core i have native support for a WAV file using the audioConfig.FromWafFileInput(); which is great. however i need to also support MP3's I have found…
TunedBy
  • 73
  • 1
  • 7
1
vote
1 answer

How to get file size of a remote mp3 using jQuery?

I'm looking for a way to read a MP3 that's hosted remotely. I found something (How to get file size from url using jquery) that can read it without downloading: var req; req = $.ajax({ type: "HEAD", url: $("#url").val(), success: function () { …
Gregory Schultz
  • 864
  • 7
  • 24
1
vote
1 answer

MP3 Duration Java

Having an awful time trying to get the accurate time for a set of MP3s. I have these following properties that are generated using the MP3SPI 1.9.5 library. // mp3.crc=true // mp3.copyright=true // mp3.padding=false // …
Andy
  • 1,421
  • 1
  • 16
  • 22
1
vote
2 answers

Ocaml libraries for mp3 editing?

In OCaml, is there any library to manipulate mp3 files editing (for ex. splitting, blank detection)? Yes, I see things should have been much easier in other languages.
zell
  • 9,830
  • 10
  • 62
  • 115
1 2 3
99
100