congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
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

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • JFileChooser (javax.swing)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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