Package de.bitzeche.video.transcoding.zencoder

Examples of de.bitzeche.video.transcoding.zencoder.ZencoderClient


          "We need an API key to run these tests");
    }
  }

  public IZencoderClient createClient(ZencoderAPIVersion apiVersion) {
    ZencoderClient zencoderClient = new ZencoderClient(API_KEY, apiVersion);
    HttpClient client = new HttpClient(new SimpleHttpConnectionManager());
    ApacheHttpClientHandler apacheHttpClientHandler = new ApacheHttpClientHandler(
        client, new DefaultApacheHttpClientConfig());
    ApacheHttpClient httpClient = new ApacheHttpClient(
        apacheHttpClientHandler);
    zencoderClient.setHttpClient(httpClient);

    return zencoderClient;
  }
View Full Code Here

TOP

Related Classes of de.bitzeche.video.transcoding.zencoder.ZencoderClient

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.