12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace fis.media.Library.Media.Players
- {
- internal class RtmpPlayer : AbstractPlayer
- {
- public RtmpPlayer(string id) : base(id)
- {
- }
- public override void Start()
- {
- throw new NotImplementedException();
- }
- public override void Stop()
- {
- throw new NotImplementedException();
- }
- protected override void Update()
- {
- throw new NotImplementedException();
- }
- private void BuildChannels()
- {
- }
- }
- }
|