Does GetMovieAudioVolumeLevels() support more than two channels of audio? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T05:23:52Zhttp://stackoverflow.com/feeds/question/381914http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/381914/does-getmovieaudiovolumelevels-support-more-than-two-channels-of-audio0Does GetMovieAudioVolumeLevels() support more than two channels of audio?Lucien2008-12-19T19:15:31Z2009-08-20T22:00:01Z
<p>I have some code that uses GetMovieAudioVolumeLevels() to get levels of a QuickTime movie during playback.</p>
<p>I have an 8 audio channel QuickTime movie, but using the GetMovieAudioVolumeLevels() call it only ever returns 2 channels. I am using kQTAudioMeter_DeviceMix, and right now I'm assuming because my MacPro can only actually playback 2 channels of audio (left and right) QuickTime is mixing the 8 channels down to 2 channels. </p>
<p>Does anyone have any more experience with this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/381914/does-getmovieaudiovolumelevels-support-more-than-two-channels-of-audio/427032#4270321Answer by A. Rex for Does GetMovieAudioVolumeLevels() support more than two channels of audio?A. Rex2009-01-09T04:04:27Z2009-01-09T04:04:27Z<p>It appears that "<a href="http://developer.apple.com/documentation/QuickTime/RM/MovieBasics/MTOpenPlayMovies/3openplaymovies_output/chapter_1000_section_6.html" rel="nofollow" title="Setting an Audio Context">channels are automatically mixed-down as needed (when playing multichannel sound through a stereo output, for example).</a>"</p>
<p>Does <a href="http://developer.apple.com/documentation/QuickTime/Reference/QTRef_SequenceGrabber/Reference/reference.html#//apple_ref/c/func/SGGetChannelVolume" rel="nofollow" title="Sequence Grabber Reference for QuickTime">SGGetChannelVolume</a> do what you need?</p>