libPd XCode声音问题

时间:2013-01-30 02:10:40

标签: xcode audio puredata

大家好,             我用纯数据制作了一个补丁来加载和播放样本,然后用libpd加载到xcode中。这一切都运行正常,但是当我运行xcode项目时,我只能通过耳机的右声道获得声音。

我会附上一张照片来显示我的补丁,你可以看到dac在每个入口都有一根电缆,这就是为什么我不明白它是如何在两个声道中播放声音的。

请注意我只是将其附在左上角样本中以进行测试。

提前致谢!

http://i46.tinypic.com/3531gmb.png

@ andyvn22:这就是你所追求的吗?对不起,我是XCode的新手,所以我不太确定!

-(void)viewDidLoad {
[super viewDidLoad];
dispatcher = [[PdDispatcher alloc] init];
[PdBase setDelegate:dispatcher];
patch = [PdBase openFile:@"Patch.pd"
                    path:[[NSBundle mainBundle] resourcePath]];
if (!patch) {
    NSLog(@"Failed to open patch!");
}
}



-(void)viewDidUnload {
    [super viewDidUnload];
    [PdBase closeFile:patch];
    [PdBase setDelegate:nil];
}
// Omitting the remaining view controller methods...

#pragma mark - button callbacks



-(IBAction)playc1:(id)sender {
    [PdBase sendBangToReceiver: @"c1"];

1 个答案:

答案 0 :(得分:0)

尝试使用PdAudioController的{​​{1}}方法将频道设置为2。