Hello!
I see in the documentation that there are instructions for streaming on-demand media using OSX/iOS.
However, when I try to implement them in my OSX app, it cannot find the functions used in the example here.
I look in the MediaService.h header and see a preprocessor directive only allowing you to use the functions for iOS:
#if TARGET_OS_IPHONE
-(MediaPublisher *)publishStream:(NSString *)name tube:(NSString *)tube
options:(MediaPublishOptions *)options responder:(id <IMediaStreamerDelegate>)delegate;
-(MediaPlayer *)playbackStream:(NSString *)name tube:(NSString *)tube
options:(MediaPlaybackOptions *)options responder:(id <IMediaStreamerDelegate>)delegate;
#endif
Is there a way to stream on demand media in an OSX app?
Thanks,
Steve