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

Converting MP3 to Binary

I'm just wondering...is it possible to use Java to convert a .mp3 file into a text file of straight up binary (just 1's and 0's)? I figure it would involve the usage of AudioInputStream and then some method to decode individual bytes, but can…
user766650
1
vote
2 answers

How to play mp3 in WPF Without using MediaElement?

I Want to play a song in the background of my WPF Application, but i prefer not using MediaElement Because it requires MediaPlayer 10 to run, and i can't have control on whether the user will have it or not. What are my options?
eric.itzhak
  • 15,752
  • 26
  • 89
  • 142
1
vote
1 answer

How to save MP3 file from the internet on Windows Phone 7?

I'm trying to download and save an .mp3 file from the internet, but got stuck with stream from the external link: private void saveSound() { IsolatedStorageFile iso = IsolatedStorageFile.GetUserStoreForApplication(); using (var…
Roman
  • 2,079
  • 4
  • 35
  • 53
1
vote
1 answer

Can I stream mp3 files in my iOS app? Or do I have to download the content locally?

I am designing an app that has the ability to play a large number of different mp3 files that are associated with some pdfs. I would rather just stream the mp3 files so I don't have to worry about allowing them to download them onto their device and…
Lizza
  • 2,769
  • 5
  • 39
  • 72
1
vote
1 answer

Protecting mp3 file path in flash player

I have flash player in my web site for playing the mp3 files.But if someone uses "viewsource" or any browser tools such as firebug, then they can find the parameter and then sort out the actual mp3 file url.I am using php in my back end. There…
jprism
  • 3,239
  • 3
  • 40
  • 56
1
vote
2 answers

how can i play the linked-to audio file in jPlayer, on click?

I've tried to resolve this by looking at the user guide for jPlayer and via answers to a similar question on Stackoverflow, but unfortunately my ability with javascript is such that I can't implement the suggested answer. I've successfully placed…
shngrdnr
  • 109
  • 2
  • 10
1
vote
2 answers

as3/php mp3 byte array transport and write

I've been banging my head off an issue for some time now. I'm working on a childrens game (flash as3) in which stories, poems, songs, etc are read to the child. There's a voice recording reading/singing the text, the text highlights as the words are…
gord0
  • 13
  • 1
  • 5
1
vote
1 answer

Converting mp3 bitrates using lame_enc.dll or similar

I need to programatically convert mp3's of any bitrate to a standard bitrate for streaming audio using c#. Currently a buffer is populated with mp3 data from disk and then send out to the "listeners" at what should be a constant speed (the…
johnDisplayClass
  • 269
  • 3
  • 11
1
vote
1 answer

How do I use Ajax in a Joomla! site for an Mplayer drop-down P3 instead of an iframe drop-down?

How do I use Ajax in a Joomla! site for an Mplayer drop-down P3 instead of an iframe drop-down? The goal is when someone's playing the MP3 player and browsing through the site the song stays playing and each time the page reloads it doesn't start…
IMS Studio
  • 305
  • 5
  • 16
1
vote
2 answers

resume a paused mp3 file in c# winforms using WMPLib.WindowsMediaPlayer

with WMPLib.WindowsMediaPlayer i am able to play and pause mp3 files but i am not able to resume from the paused point. Can anybody tell me how to resume the song thanks
user1164706
  • 11
  • 1
  • 3
1
vote
3 answers

Where to start for making a program to convert MP3 files to iphone audiobook (M4B) format?

I'm new to programming and want to find something that I can work on to help learn more about it. I want to do this is C++ if possible. What i want to do is start working on developing a program that has a user interface and will convert an mp3 into…
Per Larsen
  • 1,149
  • 3
  • 12
  • 25
1
vote
0 answers

encode mp3 dynamically with CBR 128 to play with red5

I am using ffmpeg to convert mp3 file with constant bit rate 128 and I need to play these mp3 files with red5 server. Some mp3 files have distortion issue streaming with red5. Please let me know what encoding method I should use to play mp3 with…
Harendra
  • 21
  • 4
1
vote
1 answer

Downloading mp3 with meta data/properties such as title, artists and etc

I have the following code. Everything works fine except that the downloded MP3 file does not have any property (metadata) such as Artist, title and etc when I play using the default music player. If tried to download the same mp3 file from the site…
RiyasMd
  • 35
  • 5
1
vote
2 answers

Play mp3 audio over http socket on iphone

I am trying to write an iPhone app that playback mp3 audio streamed by our audio server over http socket. I am just wondering if there is any easy solutions that play the mp3 directly over the socket without any local buffering and conversion? I…
Joe
  • 59
  • 8
1
vote
2 answers

Monitor active server connections using PHP

I want to be able to keep a track of active connections to my server. Specifically I want to keep a track of how long users spend streaming MP3 files so I can use this information to build statistics on how long users spend listening to individual…
Ollie Brooke
  • 64
  • 10