Tagged Questions

M4A stands for MPEG 4 Audio, it is a filename extension used to represent audio files.

learn more… | top users | synonyms

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 ...
5
votes
4answers
1k views

How can I query chapter metadata from a m4a file?

I need to write some code that will let me query a m4a file and extract the chapter information out. Including: chapter name chapter start time chapter artwork I did some quick searching and it ...
5
votes
6answers
7k views

How do I programmatically convert mp3 to an itunes-playable aac/m4a file?

I've been looking for a way to convert an mp3 to aac programmatically or via the command line with no luck. Ideally, I'd have a snippet of code that I could call from my rails app that converts an ...
4
votes
1answer
256 views

How can I export an mp3 file from an iOS device's iPod library?

In my iOS application I'm trying to export an mp3 file from the iPod library to the app's documents directory on the device. Currently I'm trying to use AVAssetExportSession but it's not working for ...
4
votes
4answers
8k views

Server-side AAC audio with Android

As I understand it, Android will only play AAC format audio if it's encoded as MPEG-4 or 3GPP. I'm able to play AAC audio encoded as M4A when it's local to the app, but it fails when obtaining it ...
4
votes
2answers
3k views

Looking for open-source library for editing AAC metadata (M4A files)

I'm looking for an open-source library for editing AAC metadata in M4A files (as appearing in iTunes). Specifically, I need to be able to add an album art tag. It should be something similar to ...
3
votes
1answer
962 views

How to read tags out of m4a files in .NET?

I've got some heavily modified code that ultimately came from the Windows Media SDK that works great for reading tags out of MP3 and WMV files. Somewhere along the line, Windows Media Player added ...
3
votes
2answers
854 views

How to get bitrate of audio file in cocoa

I need to get bitrate information from audio files, for some reason AudioFileGetProperty function with kAudioFilePropertyBitRate constant always returns 0 for me. The same with ...
3
votes
3answers
2k views

What is the easiest way to wrap a raw .aac file into a .m4a container

This question is overflow from the following question: http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aacm4a-file Anyway, I learned how to ...
2
votes
1answer
964 views

what is AudioStreamBasicDescription for m4a file format

I have tried with more AudioStreamBasicDescription for m4a file format. Still I am getting some issues with that. Please anyone tell me the exact AudioStreamBasicDescription for m4a file format.
2
votes
0answers
320 views

WPF MediaElement: SpeedRatio not working for .m4a files?

I'm working with a simple mediaplayer based on this msdn example where the user can control volume, playback speed (SpeedRatio) and seek (Position) using 3 sliders. Everything works correctly when I ...
2
votes
1answer
507 views

How do you read/write/update m4u and mp3 file meta data using cocoa/objective c?

Are there some particular library files available on OS/X that are relevant, I am just not sure where to start.
2
votes
1answer
1k views

Playback skipping/seeking in an MP4 file

I'm trying to figure out the proper technique for performing skipping ahead or seeking within an mp4 (or m4a) audio file while playing it using the AudioFileStream and AudioQueue APIs on the iPhone. ...
1
vote
0answers
29 views

Record audio compatible to play on windows

I need to record audio file in such a format which can be played on windows system also. I am using SpeakHere example's class AudioRecorder to record the audio but file recorded by this doesn't play ...
1
vote
3answers
114 views

How to play a .mp3 or .m4a audio on a webpage and show the embedded album art at the same time? (using Javascript, HTML5, or Flash)

There are ways to play a .m4a audio on a webpage using jPlayer or SoundManager2, but it seems that they will not show the cover art (automatically for each song). Is there a way to automatically play ...
1
vote
2answers
162 views

Getting raw sample data of m4a file to draw waveform

I'm using AudioToolbox to access m4a audio files with following code: UInt32 packetsToRead = 1; //Does it makes difference? void *buffer = malloc(maxPacketSize * packetsToRead); for (UInt64 ...
1
vote
1answer
1k views

Using exportAsynchronouslyWithCompletionHandler

I try to export an audio file from the iPod-Library. I want to create with this iPod-Library file an new file. In the AV Foundation Programming Guide in chapter Reading and Writing Assets there is a ...
1
vote
1answer
435 views

Safari won't play <audio> if .ogg file is first in the list?

I have an audio object with two sources, in M4A and OGG formats. The code is as follows: <audio id="audio1" controls="controls" preload="none"> <source src="music.m4a" /> <source ...
1
vote
2answers
1k views

How can I get AAC encoding with ExtAudioFile on iOS to work?

I need to convert a WAVE file into an AAC encoded M4A file on iOS. I'm aware that AAC encoding is not supported on older devices or in the simulator. I'm testing that before I run the code. But I ...
1
vote
1answer
289 views

How to resolve “Hardware In Use” issue (error code: 'hwiu')?

I have created an iPhone app with recording with AudioUnit, Conversion, Audio Editing and Merging parts. I done everything except Conversion. This app will work only in iOS 4 or higher. I tried to ...
1
vote
2answers
145 views

how to open an audio data in python

i've searched a lot, but could not find anything useful.. I have a m4a file, and i want to open it...what should i do? i've tried the obvious >>> q = open('file.m4a').read() >>> ...
1
vote
1answer
1k views

How to record voice in .m4a format

Already I have created an iPhone application to record. It will record in .caf file. But I want to record in .m4a format. Please help me to do this. Thanks.
1
vote
1answer
260 views

iPhone - How to convert aiff audio files into aac?

I'm developing an iphone app that records audio, right now it records aiff files, I need to convert these files to aac... any idea how to do this?
0
votes
2answers
67 views

Converting AAC audio format to M4A

I am in need of a library which could convert an AAC audio stream to M4A. We are facing problems while playing AAC on a HTC Desire with android 2.3.3, we get this error: ...
0
votes
0answers
48 views

Packing RAW AAC into m4a container?

I have an Android app using FAAC to convert raw PCM into raw AAC, but now I don't know how it can be packed into m4a container. I've searched on the net and found a lot of info, but none of them ...
0
votes
0answers
121 views

What is the name of Gstreamer plugin used to decode .m4a audio file? [closed]

I working on a client server model based on Gstreamer but I am not able to find out any plugin which will decode that .m4a audio.If anyone know PLEASE specify it here.
0
votes
1answer
98 views

Best python solution to play ALL kinds of audio on Windows (and Linux)?

I'm trying to write some scripts to play some of my music collection with python. Finding python modules that will play ogg and mp3 is not a problem. However, I'm having repeated failures with ...
0
votes
1answer
44 views

How to split audio encoding across multiple application launches?

My app needs to encode a large amount of audio data to an M4A file. I am currently using AVAssetWriter, which works fine, except that it takes a few minutes to encode all the data. Instead of asking ...
0
votes
2answers
191 views

HTML5 Audio m4a

Is it possible to play m4a music files using html5 audio? If that is not possible do you know of any flash player that can play m4a outside JWPlayer, I need a free one.
0
votes
0answers
419 views

Upload m4a to Facebook Profile

I would like to enable users to upload m4a files created by my iPhone App to their Facebook Profile. Is this possible at all? Any pointers on which APIs to use (e.g. Facebook Graphics API? Attachment ...
0
votes
1answer
159 views

How to export a wav file to m4a with 22kHz with AVAssetExportSession?

I have a 22kHz wave file and want a 22kHz m4a file. AVAssetExportSession with the preset AVAssetExportPresetAppleM4A automatically converts my wav to 44kHZ. I've tried different presets and nil to ...
0
votes
1answer
119 views

All Round Music Solution Player for website

I have just spent a while installing a popup player that utilises a xml playlist only to find that it doesnt play .m4a files ;( Really need to find a solution for my website i guess what i am asking ...
0
votes
2answers
456 views

How to convert WAV file to M4A?

Is there any way to convert my recorded .WAV file to .M4A file in iOS? And also I have to convert .M4A file to .WAV file. I tried with Audio Queue Services, but I am not able to do.
0
votes
1answer
216 views

The codec could not be accessed. (-66672)

I am trying to convert caf file to m4a file using AudioUnit. I have implemented the code to convert. When I tried to run the application, I am getting following error message; couldn't set ...
0
votes
2answers
428 views

Unable to play m4a file iPhone Device(Using iTunes affiliate search api)

I am trying to play m4a(http://a1.phobos.apple.com/us/r1000/020/Music/ad/41/da/mzm.fkekhvue.aac.p.m4a) file from iTunes affiliates using AvAudioPlayer but can not able to play it. I think there is ...
0
votes
2answers
4k views

flash audio player for m4a (AAC) audio file embedded in html

I'm looking for a (free) flash player that I can embed in my site and use to play a .m4a (.mp4 with AAC audio) file that will be obtained using a URL (i.e. it's not local to the server hosting the web ...
0
votes
1answer
361 views

Play M4A Files on Website

how can I play m4a audio files on my website? None of the regular mp3 players are working. Thanks
0
votes
3answers
257 views

What's in a name? .aac V .m4a? aac->Works on website quicktime. m4a->works on iPad

What is the difference between an .aac file and an .m4a file? If I just change the file extension of an audio file recorded and then converted into "AAC" between .aac/.m4a it drastically affects how ...
0
votes
1answer
335 views

upload an m4a file in flex, saving it as a blob in oracle, and retrieving metadata info from it

I currently have a FileUpload.mxml component that uploads a .m4a to an oracle database, retrieves metadata from the file and saves the metadata info in the database. to acheive this I use ...
0
votes
2answers
480 views

XCode crashes when adding .m4a file to resources

I created my own small .m4a file with GarageBand, for use in my app on the iPhone. Everytime I try to Add existing file, XCode crashes when I select the .m4a file. The file itself will play nicely in ...