Does GetMovieAudioVolumeLevels() support more than two channels of audio? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T05:23:52Z http://stackoverflow.com/feeds/question/381914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/381914/does-getmovieaudiovolumelevels-support-more-than-two-channels-of-audio 0 Does GetMovieAudioVolumeLevels() support more than two channels of audio? Lucien 2008-12-19T19:15:31Z 2009-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#427032 1 Answer by A. Rex for Does GetMovieAudioVolumeLevels() support more than two channels of audio? A. Rex 2009-01-09T04:04:27Z 2009-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>