News

muvee Reveal - the latest incarnation of muvee's flagship product - has just been released on 11 June 2008! The behaviours of the 8 bundled styles are specified using muSE, in addition to all the styles developed for the now discontinued muvee autoProducer 6.1.

Monday, November 29, 2010

Saying "hello world!" on MacOSX ..

Here is a different "hello world!" by muSE on MacOSX :)


; Load the AppKit framework containing the NSSpeechSynthesizer class
[[NSBundle bundleWithPath: "/System/Library/Frameworks/AppKit.framework"]
load]

; Initialize the "hysterical" voice and say "Hello world!" with it.
(define hysterical
[[[NSSpeechSynthesizer alloc] initWithVoice: "com.apple.speech.synthesis.voice.Hysterical"]
autorelease])

[hysterical startSpeakingString: "Hello world!"]

No comments: