Tagged Questions

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.

learn more… | top users | synonyms

51
votes
5answers
30k views

View/edit ID3 data for MP3 files

What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?
40
votes
9answers
43k views

Play Audio from a Stream using C#

Is there a way in C# to play audio (e.g. MP3) direcly from a Stream (I mean the real .NET class) that for instance was returend from a WebRequest without saving the data temporarily to the disk? ...
34
votes
10answers
7k views

Version control for binaries

What version control systems would be useful or have extra features to support projects that are mainly binary files like mp3, wav, or proprietary application-specific file types?
30
votes
10answers
13k views

Accessing mp3 Meta-Data with Python

What is the best way to retrieve mp3 metadata in python? I've seen a couple frameworks out there, but I'm unsure as to which would be the best to use.... Any ideas?
21
votes
5answers
36k views

Streaming Audio from A URL in Android using MediaPlayer?

I've been trying to stream mp3's over http using Android's built in MediaPlayer class. The documentation would suggest to me that this should be as easy as : MediaPlayer mp = new MediaPlayer(); ...
19
votes
3answers
5k views

MP3 Decoding on Android

We're implementing a program for Android phones that plays audio streamed from the internet. Here's approximately what we do: Download a custom encrypted format. Decrypt to get chunks of regular ...
19
votes
6answers
14k views

Play audio with python

How can i play audio (it would be like a 1sec sound) from a python script? It would be best if it was platform independent, but first of it needs to work on a mac. I know i could just execute the ...
18
votes
8answers
4k views

Crop MP3 to first 30 seconds

Original Question I want to be able to generate a new (fully valid) MP3 file from an existing MP3 file to be used as a preview -- try-before-you-buy style. The new file should only contain the first ...
15
votes
6answers
5k views

Any good recommendations for MP3/Sound libraries for java?

I am writing my masters thesis which is closely related to processing sound files (mp3 and alternative formats such as ogg, aac, ...) and sound in Java. Because Java has so much open source support, I ...
13
votes
1answer
74 views

php mp3 string error

i have a mp3 class to read mp3s for my site. (i cannot install the module since its a shared hosting). i upload the mp3 and then the system read it using my class and insert into my mysql the file ...
13
votes
8answers
15k views

How to play MP3 files in C?

I'm looking for the easiet way to play an MP3 file in C. Either a library I could use and just call the function on the filename, or alternatively something someone's already written that will just ...
12
votes
3answers
8k views

Why doesn't Firefox support mp3 file format in <audio>

Is there a particular reason why Firefox does not support playback of mp3 files in <audio> elements, only ogg format? Is it a licensing issue? Are there any plans made for possible future ...
12
votes
4answers
2k views

Python library for playing fixed-frequency sound

I have a mosquito problem in my house. This wouldn't usually concern a programmers' community; However, I've seen some devices that claim to deter these nasty creatures by playing a 17Khz tone. I ...
10
votes
5answers
650 views

AAC/MP3 Licensing

If I use the audio decoding libraries included in iPhoneOS (ex. AVAudioPlayer). Do I still have to pay for a license from Thomson, or VIA Licensing to legally decode AAC or MP3 files in my app? Edit: ...
10
votes
5answers
10k views

Android - Playing mp3 from byte[]

I have my mp3 in byte[] (downloaded from service) and I would like to play it on my device similar to how you play files: MediaPlayer mp = new MediaPlayer(); mp.setDataSource(PATH_TO_FILE); ...
10
votes
5answers
2k views

abstracting the conversion between id3 tags, m4a tags, flac tags

I'm looking for a resource in python or bash that will make it easy to take, for example, mp3 file X and m4a file Y and say "copy X's tags to Y". Python's "mutagen" module is great for manupulating ...
10
votes
5answers
2k views

Python library to modify MP3 audio without transcoding

I am looking for some general advice about the mp3 format before I start a small project to make sure I am not on a wild-goose chase. My understanding of the internals of the mp3 format is minimal. ...
9
votes
3answers
6k views

ffmpeg mp3 conversion failed

using ffmpeg to convert from flv to mp3 gives the following result ] ffmpeg-0.6.1 >> ffmpeg -i name.flv name.mp3 FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers built on Feb 14 ...
9
votes
2answers
7k views

How to encode a WAV to a mp3 on a Android device

I'm simplified my question and offered a bounty: What options are there for compressing raw PCM audio data to a mp3 on a Android device. My original post: I'm creating a synthesiser on my Android ...
9
votes
6answers
3k views

Looking for a way to encode mp3 on iPhone

I'm looking for a way to encode an mp3 file on the iPhone. I'm writing an app that records an audio clip with the microphone and uploads it to a server. The iPhone SDK has APIs to write out .caf and ...
9
votes
4answers
4k views

Streaming MP3s from Amazon S3

Is there a way to stream MP3s stored on Amazon S3 via a Flash widget embedded in a website, or some other method?
8
votes
2answers
258 views

Using cat to join mp3 files. What is this black sorcery?

A friend of mine just used plain-old cat to concatenate two mp3 files,... cat file1.mp3 file2.mp3 > out.mp3 ...and the resulting file is perfectly reproducible, playing one song and then the ...
8
votes
1answer
706 views

What's this “Album artist” tag iTunes uses? Any way to set it using java?

iTunes uses an ID3 tag called "Album Artist", and for one album to be actually grouped as an album in iTunes, both the Album Name and Album Artist must be the same. As far as I'm concerned, Album ...
8
votes
2answers
747 views

C# ID3 library that supports custom fields

Currently i'm using TagLib Sharp as suggested in one of the posts @stackoverflow for reading id3-Tag out of mp3, flac, ogg and similar multimedia files .. now i just realized, that id3v2 (maybe even ...
8
votes
4answers
4k views

How to read and write ID3 tags to an MP3 in C#?

Is there a library for reading and writing ID3 tags to an MP3 in C#? I've actually seen a couple when searching, anybody using any that can be recommended?
8
votes
3answers
7k views

How do I concatenate files in Python?

I have multiple (between 40 and 50) MP3 files that I'd like to concatenate into one file. What's the best way to do this in Python? Use fileinput module to loop through each line of each file and ...
8
votes
3answers
7k views

How to stream mp3 using pure Java

Is it possible to stream mp3s using pure Java? If so, what are the best resources to implement this. If not, are any other music formats streamable using Java only?
8
votes
6answers
4k views

How do you embed album art into an MP3 using Python?

I've been using mutagen for reading and writing MP3 tags, but I want to be able to embed album art directly into the file.
8
votes
5answers
3k views

Playing mp3 with delphi

Which component to use to play mp3 files from streams/files and also to know the lenght in seconds of that mp3 stream?
7
votes
2answers
344 views

Play Mp3 sound clip on mouseclick using jplayer?

Actually this the first time I'm gonna use jplayer plugin, so all I need is to play a sound clip (2 sec) when I click on a div, and I don't know how to use jplayer! I also need to load the sound clip ...
7
votes
2answers
727 views

How to Stop UIWebView from playing mp3?

I am loading a MP3 file into UIWebView control on iPad Application, I have a UIButton called done the user expected to dismiss the UIWebView from loading the music or whatever document, I load the mp3 ...
7
votes
2answers
501 views

Writing a Python Music Streamer

I would like to implement a server in Python that streams music in MP3 format over HTTP. I would like it to broadcast the music such that a client can connect to the stream and start listening to ...
7
votes
4answers
237 views

Suggested Opensource CMS for managing files by metadata?

I've been wanting to create a resources database for an organisation storing predominantly audio files (lectures) and PDFS. I'm pretty familiar with Wordpress, however I'm looking for another CMS ...
7
votes
7answers
3k views

Detect duplicate MP3 files with different bitrates and/or different ID3 tags?

How could I detect (preferably with Python) duplicate MP3 files that can be encoded with different bitrates (but they are the same song) and ID3 tags that can be incorrect? I know I can do an MD5 ...
7
votes
5answers
4k views

Quick and acceptable MP3 streaming solution

I have to do a job overnight to enable a very simple interface for users listening to a radio channel over the internet. I am wondering what is the best soluition for streaming. I thought of ...
7
votes
4answers
3k views

Playing small sounds in Java game

For the computer game I'm making, I obviously want to play sound. So far, I've been using AudioClip to play WAV files. While this approach works fine, the WAV files tend to be gigantic. A few seconds ...
7
votes
6answers
10k views

I need an ID3 tag reader library for Java - preferably a fast one

I'd like to know a good ID3 tag reader library for Java. Would be good if it was easy to use or had very good documentation, but my main criteria is speed - I want to be able to read ID3 tags from ...
6
votes
2answers
130 views

Record streaming radio to MP3

Background My father has an old radio program that he loves. It is a series of recordings done 30-40 years ago, but now he has found out that they are sent now and then as a historical retrospects. ...
6
votes
3answers
127 views

Generate an MP3 file with a 15Khz tone

I'm playing around with high-pitched sounds. I'd like to generate an MP3 file with a 1 second 15Khz burst. Is there a simple way to do this from C or Python? I don't want to use MATLAB. Thanks!
6
votes
4answers
1k views

AVFoundation iOS 5

My apps runing on the appstore are using mp3 and video files that don't work since iOS5 update. I've installed xcode 4.2 and... When I test in the iPhone 5 Simulator or device I get the following ...
6
votes
4answers
426 views

jquery mp3player - works as standalone, not in website

I used the jPlayerscript to create a mp3-player for a website that I am making. Tested and styled it in a standalone page where it works perfectly: http://www.basenharald.nl/3d/demo-02.htm However ...
6
votes
1answer
122 views

Buy Music Intent

I know there probably isn't a standard intent for "buy song", but does anyone know if there is one for a specific android music store such as Amazon MP3 or 7 Digital? On the iPhone Apple provides an ...
6
votes
3answers
580 views

How to get MP3 file Bitrate ? (Delphi)

how can i get bitrate of a MP3 File ?
6
votes
3answers
594 views

Algorithm to remove vocal from sound track

I want to remove vocals from mp3 sound tracks. I searched google, and tried few softwares but none of them are convincing. I am planning to read the mp3 file, get a waveform and remove the waveform ...
6
votes
4answers
3k views

Pure C# open source PCM to Mp3 convertor?

Microsoft Silverlight 4 is in beta. It supports PCM audio output. It would be madness to stream PCM over internet (for ex in P2P chart webApp) so we need Pure C# open source PCM to Mp3 convertor. No ...
6
votes
4answers
9k views

How to play MP3 sound from buffer (ByteArray/Stream) in ActionScript 3?

So.. I have a buffer with MP3 data (If I would save this buffer and call it buffer.mp3 it would play, but in this situation I should not save it to file system). I have to play it, but I can not, what ...
6
votes
4answers
966 views

Automatically trimming a mp3 in PHP

Are there any ways to automatically trim an MP3 uploaded to a website to 30 seconds (or some other length) in PHP? If not, is there any good 3rd party services that could be integrated (transparently ...
6
votes
4answers
2k views

Ripping a CD to mp3 in C# - third party component or api out there?

We're working on a project that requires the ripping of audio tracks from CDs to MP3s (ideally also retrieving the track information from CDDB or similar). More background information: Various music ...
6
votes
4answers
620 views

Sorting music

So over the years, I've bought music off iTunes, Urge, and Rhapsody and all these files are lying mixed with my non-DRM'd MP3 files that I've ripped off my CDs. Now some of these files have licenses ...
6
votes
7answers
4k views

Accessing audio/video metadata with .NET

What is the best way to get and set the meta data for mp3, mp4, avi files etc. with .NET?

1 2 3 4 5 26