Package org.gstreamer.interfaces

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

Related Classes of org.gstreamer.interfaces.VideoOrientation

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.