Package com.limelight.nvstream

Examples of com.limelight.nvstream.StreamConfiguration


   */
  public static void createInstance(String host) {
    Limelight limelight = new Limelight(host);

    Preferences prefs = PreferencesManager.getPreferences();
    StreamConfiguration streamConfig = createConfiguration(prefs.getResolution(), prefs.getBitrate());

    limelight.startUp(streamConfig, prefs);
  }
View Full Code Here


   
    if (bitrate == null) {
      bitrate = streamRes.defaultBitrate;
    }

    StreamConfiguration streamConfig = createConfiguration(streamRes, bitrate);
   
    prefs.setResolution(streamRes);
    prefs.setBitrate(bitrate);
    prefs.setFullscreen(fullscreen);
   
View Full Code Here

    if (limelight.host == null) {
      limelight.discover(!action.equals("discover"));
    }
   
    if (action.equals("stream") || action.equals("fake")) {
      StreamConfiguration streamConfig = new StreamConfiguration(app, width, height, refresh, bitrate, sops, false);
     
      if (action.equals("fake"))
        limelight.startUpFake(streamConfig, video);
      else
        limelight.startUp(streamConfig, inputs, mapping, audio, tests, debug.intValue() <= Level.WARNING.intValue());
View Full Code Here

TOP

Related Classes of com.limelight.nvstream.StreamConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.