congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
MP4VideoDemuxer.getHeight
Code IndexAdd Tabnine to your IDE (free)

How to use
getHeight
method
in
us.ihmc.codecs.demuxer.MP4VideoDemuxer

Best Java code snippets using us.ihmc.codecs.demuxer.MP4VideoDemuxer.getHeight (Showing top 8 results out of 315)

origin: us.ihmc/IHMCVideoCodecs

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JLabel label = new JLabel();
label.setPreferredSize(new Dimension(demuxer.getWidth(), demuxer.getHeight()));
frame.getContentPane().add(label);
frame.pack();
origin: us.ihmc/ihmc-video-codecs

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JLabel label = new JLabel();
label.setPreferredSize(new Dimension(demuxer.getWidth(), demuxer.getHeight()));
frame.getContentPane().add(label);
frame.pack();
origin: us.ihmc/IHMCRobotDataVisualizer

public VideoDataPlayer(String name, File dataDirectory, LogProperties logProperties) throws IOException
{
 this.name = name;
 this.interlaced = logProperties.getInterlaced(name);
 this.hasTimebase = logProperties.hasTimebase();
 if (!hasTimebase)
 {
   System.err.println("Video data is using timestamps instead of frame numbers. Falling back to seeking based on timestamp.");
 }
 videoFile = new File(dataDirectory, logProperties.getVideoFile(name));
 if (!videoFile.exists())
 {
   throw new IOException("Cannot find video: " + videoFile);
 }
 File timestampFile = new File(dataDirectory, logProperties.getTimestampFile(name));
 parseTimestampData(timestampFile);
 demuxer = new MP4VideoDemuxer(videoFile);
 viewer = new HideableMediaFrame(name, demuxer.getWidth(), demuxer.getHeight());
}
origin: us.ihmc/RobotDataCommunication

public VideoDataPlayer(String name, File dataDirectory, LogProperties logProperties) throws IOException
{
 this.name = name;
 this.interlaced = logProperties.getInterlaced(name);
 this.hasTimebase = logProperties.hasTimebase();
 if (!hasTimebase)
 {
   System.err.println("Video data is using timestamps instead of frame numbers. Falling back to seeking based on timestamp.");
 }
 videoFile = new File(dataDirectory, logProperties.getVideoFile(name));
 if (!videoFile.exists())
 {
   throw new IOException("Cannot find video: " + videoFile);
 }
 File timestampFile = new File(dataDirectory, logProperties.getTimestampFile(name));
 parseTimestampData(timestampFile);
 demuxer = new MP4VideoDemuxer(videoFile);
 viewer = new HideableMediaFrame(name, demuxer.getWidth(), demuxer.getHeight());
}
origin: us.ihmc/ihmc-robot-data-visualizer

public VideoDataPlayer(Camera camera, File dataDirectory, boolean hasTimeBase) throws IOException
{
 this.name = camera.getNameAsString();
 this.interlaced = camera.getInterlaced();
 this.hasTimebase = hasTimeBase;
 if (!hasTimebase)
 {
   System.err.println("Video data is using timestamps instead of frame numbers. Falling back to seeking based on timestamp.");
 }
 videoFile = new File(dataDirectory, camera.getVideoFileAsString());
 if (!videoFile.exists())
 {
   throw new IOException("Cannot find video: " + videoFile);
 }
 File timestampFile = new File(dataDirectory, camera.getTimestampFileAsString());
 parseTimestampData(timestampFile);
 demuxer = new MP4VideoDemuxer(videoFile);
 viewer = new HideableMediaFrame(camera.getNameAsString(), demuxer.getWidth(), demuxer.getHeight());
}
origin: us.ihmc/IHMCRobotDataLogger

builder = new MP4MJPEGMovieBuilder(target, demuxer.getWidth(), demuxer.getHeight(), frameRate, 1);
origin: us.ihmc/ihmc-robot-data-visualizer

builder = new MP4MJPEGMovieBuilder(target, demuxer.getWidth(), demuxer.getHeight(), frameRate, 1);
origin: us.ihmc/RobotDataCommunication

builder = new MP4MJPEGMovieBuilder(target, demuxer.getWidth(), demuxer.getHeight(), frameRate, 1);
us.ihmc.codecs.demuxerMP4VideoDemuxergetHeight

Popular methods of MP4VideoDemuxer

  • <init>
    Create a new demuxer
  • getNextFrame
    Return the next frame in the video
  • getWidth
  • delete
    Delete native resources held by the demuxer
  • getTimescale
  • seekToFrame
    Seek to frame. Next call to nextFrame will return frameNo
  • seekToPTS
    Seek to PTS. Next call to nextFrame will return frame at given PTS
  • getCurrentFrame
  • getCurrentPTS
  • getNextPacket
  • decodeLeadingFrames
  • getPreviousKeyFrame
  • decodeLeadingFrames,
  • getPreviousKeyFrame,
  • seek

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • putExtra (Intent)
  • getSharedPreferences (Context)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now