Tagged Questions
The nssound tag has no wiki summary.
4
votes
3answers
625 views
How to fade an NSSound object
I've written a cheap & cheerful sound board in for my Mac, and I play the various sounds with NSSound like this:
-(void)play:(NSSound *)soundEffect:(BOOL)stopIfPlaying {
BOOL wasPlaying = ...
2
votes
3answers
1k views
NSSound undeclared on iPhone?
sound = [[NSSound alloc] initWithContentsOfFile:@"staticbeam09.wav" byReference:YES];
Code referenced from Apple docs. Getting an error when I put this in viewDidLoad. If I put
NSSound *sound;
in ...
1
vote
1answer
59 views
NSSound crashing when trying to load a system sound
Occasionally my Cocoa app crashes while trying to load a system sound. I've not been able to reproduce this myself, but a few users have sent me crash reports.
The stack trace is always the same (see ...
1
vote
0answers
130 views
NSSound strange bug
This code plays the sound:
NSSound *sound = [[NSSound alloc] initWithContentsOfFile:@"/Users/alex/test.ogg"
byReference:NO];
[sound play];
This code ...
1
vote
2answers
2k views
What's the SIMPLEST way to play a sound clip in an iPhone app?
I want to be able to play a sound clip in an iPhone OS app. I've seen info on both NSSound as well as AVFoundation as being means for getting sound clips played on an iPhone OS device, but I'm still ...
0
votes
0answers
19 views
getting an exception 4.3 on an NSSound object
I load a sound like so:
sound = [[NSSound alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"alert" ofType:@"mp3"] byReference:NO];
Also I have "all exceptions" break point ...
0
votes
3answers
46 views
NSSound isPlaying returning null on Mac
In my AppDelegate I have this method which will run when the play button is clicked:
- (IBAction)actionPlayTrack:(id)sender {
NSSound *currentSong = [[NSSound alloc] ...
0
votes
1answer
108 views
How repeat sound of local notification until any button of alert view is not pressed?
I have an alarm clock in which i have set a local notification on user set data. Now when local notification generate then an alert view appear and a sound also played. But sound play for 2 seconds ...
0
votes
1answer
53 views
How insert music file from music folder of device in our application?
I want to insert all music or sound file form music folder of device. Now problem is that how use files of music folder in our application? How select from our application and set it as sound file of ...
0
votes
0answers
55 views
How change vibration and ringtone when user change it in iphone? [closed]
I have needed some task like add vibration and ringtones in my application from iPhone gallery. I have create a table view in which i have add a cell for vibration with switch button. And in next cell ...
0
votes
1answer
48 views
NSSound audible clicks on loop
I have an NSSound that is looping, and every time it loops there is an audible 'click' sound when it replays.
I'm using these methods:
[sound play];
[sound setLoops:YES];
Is there any way to get ...
0
votes
1answer
137 views
NSSound not working properly
I am using Cocoa on Mac 10.6. I am trying to have a metronome click out the time but when I run the code only the first two sounds are played then it is quiet till the end when a sound plays again. ...
0
votes
2answers
511 views
How do I get NSSound to play a sound in a user-defined class?
This question is from an Objective-C newbie, so please bear with me. I'm trying to make sounds in my classes and have been successful using NSBeep() but not NSSound. Here is an example. Notice that ...
0
votes
0answers
135 views
NSSound's play method is slow at first use?
In my mac app, I have a loop that plays two NSSounds. It seemed slow to start, so I put in NSLogs just before and after my call to the play method. Here is the console output:
2011-02-08 ...
0
votes
2answers
172 views
Objective C : Misunderstanding with the didFinishPLaying delegate method
I want to get familiar with the Objective C/Interface Builder programming on mac OSX. I'm usually working with sounds, so I'm trying to code a simple audio player, using the NSSound class.
I already ...
0
votes
3answers
540 views
NSSound-like framework that works, but doesn't require dealing with a steep learning curve
I've pretty much finished work on a white noise feature for one of my applications using NSSound to play a loop of 10 second AAC-encoded pre-recorded white noise.
[sound setLoops: YES]
should be ...
0
votes
2answers
1k views
How to play a mp3 file from within the Resources folder of my application?
I am making an app that will play sound on events but I can't figure out how to access files from the ressources folder of the Application.
Here is what I'm doing :
NSSound *player = [[NSSound ...