mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-17 06:05:50 -06:00
37 lines
663 B
Objective-C
37 lines
663 B
Objective-C
//
|
|
// CSVaughnliveStreamService.h
|
|
// CSVaughnliveStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 5/31/15.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "CSStreamServiceProtocol.h"
|
|
#import "CSStreamServiceBase.h"
|
|
|
|
#define INGEST_URL @"rtmp://live.vaughnlive.tv:443/live/"
|
|
|
|
|
|
@interface CSVaughnliveStreamService : CSStreamServiceBase <CSStreamServiceProtocol>
|
|
{
|
|
NSString *_ingestURL;
|
|
}
|
|
|
|
|
|
@property (assign) NSString *streamKey;
|
|
|
|
|
|
|
|
-(NSViewController *)getConfigurationView;
|
|
-(NSString *)getServiceDestination;
|
|
+(NSString *)label;
|
|
+(NSString *)serviceDescription;
|
|
+(NSImage *)serviceImage;
|
|
-(NSString *)getServiceFormat;
|
|
-(void)prepareForStreamStart;
|
|
|
|
|
|
|
|
|
|
|
|
@end
|