Play a song with QTMovie
Play a song with QTMovie
- Subject: Play a song with QTMovie
- From: "Dani ." <email@hidden>
- Date: Tue, 26 Jun 2007 10:59:12 +0200
Hi! I've been reading every message about how to play a song with
cocoa, and finally I can't find anything that works. I've made a
simple code, and I want to know what I am doing wrong. Thanks
#import <Foundation/Foundation.h>
#import <QTKit/QTMovie.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSString *src = @"/Users/bittercold/Desktop/deadbolt.aiff";
QTMovie *song = [[QTMovie alloc] initWithFile:src error: NULL];
[song play];
[pool release];
return 0;
}
--
thedecline.net
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden