Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

at eli/rtmprec 13 lines 385 B view raw
1package media 2 3import "stream.place/streamplace/pkg/spmetrics" 4 5func (mm *MediaManager) IncrementViewerCount(user string, protocol string) { 6 mm.bus.IncrementViewerCount(user, "local") 7 spmetrics.ViewerInc(user, protocol) 8} 9 10func (mm *MediaManager) DecrementViewerCount(user string, protocol string) { 11 mm.bus.DecrementViewerCount(user, "local") 12 spmetrics.ViewerDec(user, protocol) 13}