mp3

How to play MP3's from socket connections in Flash AS3?

How to play mp3's from socket connections in Flash AS3? I have some simple programm which is listening to some port (TCP). I connect to it using as3 sockets and it starts sending me mp3 data How to play that data? ...

How to reUse URLRequest to send data to TCP socket in Flash, Actionscript?

How to use URLRequest to send data to TCP socket in Flash, Actionscript? So I have TCP server which is listening to some port and on every connection is sending sounds MP3 data to requestor I've done URLRequest and Sound class plays my sound. How to send data to that socket not opening new socket connection (using URLRequest or someth...

Using DirectShow library to edit and save an mp3 file

I want to read an mp3 file, crop section of it, fade in & out and finally save it as a new mp3 file. I found a library called DirectShow that apparently can do this, but I can figure out how to do it. Has anyone done something like this? ...

How does Windows Media Player recognize mp3 players.

I want to create a program that sync mp3s with my mp3 player. I want it to recognize my player when I connect it to USB. Somehow WMP does such thing. I wonder how? ...

Where to get pure C++ Lame MP3 encoder - PCM to MP3 example?

So all I need is a simple function that sets it up (eating incoming PCM RATE (for example: rate near to 44100) It's channels (for example: 2) and -bits (for example: 16) and desirable 128 kb\s rate) and another one that takes PCM data and encodes it into pure MP3 frames. I know it looks like a silly homework task but I assure you - it i...

what's the current mp3 royalties/licensing situation

So i see a lot of software that has mp3 encoding and/or decoding and I'm pretty sure that they don't pay the royalties to Thomson as required here: http://mp3licensing.com/royalty/software.html So I'm wondering, is there a loophole that i don't know about? Is there a library that doesn't require any royalties/licensing fees? ...

MP3 codec for WAV files

Wav files support different encodings, including mp3. Is there a C/C++ library that would produce mp3-encoded wav files from uncompressed wav? If not, what would be the best place to start to implement one? ...

mp3 downsampling / compression in java

Well, i was looking forward to modify the bit rate of a mp3 file in java. I want to downsample(change its bit rate) the mp3 file from 256/384 kbps to say 64/128 kbps.. (I guess this is the only way one can achieve mp3 compression..or is there any other way.?) I searched for LameOnJ but that website is temperoraly down and so im not a...

How can I set a ringtone for an individual contact on Android ?

How can I set a ringtone for an individual contact on Android ? I have found a way to set the default ringtone that applies to all contacts without an individual ringtone. But that is not what i'm trying to accomplish. I want the application to have a button "Apply ringtone to contact". When i click, I start an activityForResult displa...

Delphi: Error when starting MCI

I use the TMediaPlayer component for playing music. It works fine with most of my tracks. But it doesn't work with some tracks. When I want to play them, the following error message is shown: Which is German but roughly means that: In the project pMusicPlayer.exe an exception of the class EMCIDeviceError occurred. Message: "Error wh...

What open source C/C++ audio compression options are there besides LAME MP3?

Are there any C/C++ open source audio encoder besides LAME MP3? It doesn't need to be exactly mp3 format, I need a "compressed digital audio file". I do not want to use Lame because it is too big while no programmer can answer a simple question on it (share simple but easily downloadable and readable project containing only needed 2 sim...

Is there any free g729 or g711 converter?

Hi all. I need converter to convert G729 or G711 files to wav,wma,mp3 or any other format witch can play for example Windows Media Player. ...

How to install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder, LAME MP3 encoder for Winxp. php version 5.3.0

Hello All Members I am newbie in php.Can any body tell me how i install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder in Windows XP and php version should be 5.3.0 or Wamp server release July 11 2009/Xamp Server release 2009/12/23. I make search on google and i find tutorial but that tutorial work with previous version of php 5.2.8 . So if so...

Read part of a file in PHP

I would like to read the last 1 megabyte of a MP3 file and calculate SHA1 checksum for just that part of the file. The reason that I would want this is that when I'm looking for duplicate MP3's, the header info (song title, album etc.) can differ even though it's the exakt same audio file, so I figured I would be better of to checksum a ...

MP3 Resampling in Linux

Hello folks. Tonight I am working on my music collection. I would like to resample a large selection of my MP3's to 192Kb/s for my Zune. I know the obvious way to do this is a recursive function using lame to encode MP3 at 192 - but lame doesn't maintain the ID3 tags! Does anyone know of another option that will retain ID3 info? Thank...

How can a silverlight app download and play an mp3 file from a URL?

I have a small Silverlight app which downloads all of the images and text it needs from a URL, like this: if (dataItem.Kind == DataItemKind.BitmapImage) { WebClient webClientBitmapImageLoader = new WebClient(); webClientBitmapImageLoader.OpenReadCompleted += new OpenReadCompletedEventHandler(webClientBitmapImageLoader_OpenReadCo...

How to play a MP3 file using NAudio

WaveStream waveStream = new Mp3FileReader(mp3FileToPlay); var waveOut = new WaveOut(); waveOut.Init(waveStream); waveOut.Play(); This throws an exception: WaveBadFormat calling waveOutOpen The encoding type is "MpegLayer3" as NAudio. How can I play a mp3 file with NAudio? ...

After playing a MediaElement, how can I play it again?

I have a variable MediaElement variable named TestAudio in my Silverlight app. When I click the button, it plays the audio correctly. But when I click the button again, it does not play the audio. How can I make the MediaElement play a second time? None of the tries below to put position back to 0 worked: private void Button_Click_P...

MP3 Decoding on Android

Hi. 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 MP3 data. Decode MP3 data to raw PCM data in a memory buffer. Pipe the raw PCM data to an AudioTrack Our target devices so far are Dro...

How can I alter the default behavior of a link to an mp3 file?

Hi everyone! I'd like to alter the default behavior of a link that points to an mp3 file. All major browsers always open and play this mp3 file in a new window, and I'd like instead that this file be offered as a download by the browser. ¿Any Idea? Thanks!! ...