Examples of VideoOrientation


Examples of org.gstreamer.interfaces.VideoOrientation

    try {
      Thread.sleep(1000);
    } catch (Exception e) {
    }

    VideoOrientation vo = VideoOrientation.wrap(videosrc);
    System.out.println("VideoOrientation: " + vo.getHflip(true));
    vo.setHflip(false);
    System.out.println("VideoOrientation: " + vo.getHflip(true));

    org.gstreamer.interfaces.ColorBalance cb = org.gstreamer.interfaces.ColorBalance.wrap(videosrc);
    List<ColorBalanceChannel> cbcList = cb.getChannelList();
    for (ColorBalanceChannel cbc : cbcList) {
      System.out.println("ColorBalance channels: " + cbc.getName() + " "
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.