Structers/Base.ts

  1. import { StreamingPlatforms } from "../types";
  2. /**
  3. * @class
  4. * @classdesc Base Class for Streamer Class
  5. */
  6. export class Base {
  7. /**
  8. * RTMP Connection URL
  9. * @type {String}
  10. * @readonly
  11. */
  12. readonly RTMPServer: string;
  13. /**
  14. * @description Detected Platform from RTMP Url
  15. * @type {StreamingPlatforms}
  16. * @readonly
  17. */
  18. readonly platform: StreamingPlatforms;
  19. /**
  20. * @param {String} rtmpURL RTMP Connection URL
  21. */
  22. constructor(rtmpURL: string)
  23. {
  24. if(rtmpURL.split("://")[0].toLowerCase() == 'rtmp' || rtmpURL.split("://")[0].toLowerCase() == 'rtmps')
  25. this.RTMPServer = rtmpURL;
  26. else
  27. throw new Error(`Only RTMP(s) Connections are Supported.`);
  28. //Detect platform
  29. if(rtmpURL.split(".").includes("youtube"))
  30. this.platform = "youtube";
  31. else if(rtmpURL.split(".").includes("live-video"))
  32. this.platform = "twitch";
  33. else
  34. this.platform = "unknown";
  35. }
  36. }
    JAVASCRIPT
    Copied!