Esempio n. 1
0
 public static LiveChannelSetRecordedContentRequestBuilder SetRecordedContent(string entryId, EntryServerNodeType mediaServerIndex, DataCenterContentResource resource, float duration, string recordedEntryId = null, int flavorParamsId = Int32.MinValue)
 {
     return(new LiveChannelSetRecordedContentRequestBuilder(entryId, mediaServerIndex, resource, duration, recordedEntryId, flavorParamsId));
 }
Esempio n. 2
0
 public LiveChannelSetRecordedContentRequestBuilder(string entryId, EntryServerNodeType mediaServerIndex, DataCenterContentResource resource, float duration, string recordedEntryId, int flavorParamsId)
     : this()
 {
     this.EntryId          = entryId;
     this.MediaServerIndex = mediaServerIndex;
     this.Resource         = resource;
     this.Duration         = duration;
     this.RecordedEntryId  = recordedEntryId;
     this.FlavorParamsId   = flavorParamsId;
 }
Esempio n. 3
0
 public static LiveChannelAppendRecordingRequestBuilder AppendRecording(string entryId, string assetId, EntryServerNodeType mediaServerIndex, DataCenterContentResource resource, float duration, bool isLastChunk = false)
 {
     return(new LiveChannelAppendRecordingRequestBuilder(entryId, assetId, mediaServerIndex, resource, duration, isLastChunk));
 }
Esempio n. 4
0
 public LiveChannelAppendRecordingRequestBuilder(string entryId, string assetId, EntryServerNodeType mediaServerIndex, DataCenterContentResource resource, float duration, bool isLastChunk)
     : this()
 {
     this.EntryId          = entryId;
     this.AssetId          = assetId;
     this.MediaServerIndex = mediaServerIndex;
     this.Resource         = resource;
     this.Duration         = duration;
     this.IsLastChunk      = isLastChunk;
 }