RtmpPlayer.cs 675 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace fis.media.Library.Media.Players
  7. {
  8. internal class RtmpPlayer : AbstractPlayer
  9. {
  10. public RtmpPlayer(string id) : base(id)
  11. {
  12. }
  13. public override void Start()
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public override void Stop()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. protected override void Update()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. private void BuildChannels()
  26. {
  27. }
  28. }
  29. }