0

I am trying to use JCodec to make a screen-recording software in Java. I am having trouble finding where AWTSequenceEncoder is located, or if it even exists in JCodec still. I am using JCodec 2.5.0 for javase. Java 8. Does anyone know if this class (AWTSequenceEncoder) still exists in the library or do i have to use a copy-pasted version of the file from JCodec's github?

thanks! gavin

1 Answers1

0

Here's a minimal rewrite of your question:

Is AWTSequenceEncoder still present in jcodec? If so, where can it be found?

Yes, AWTSequenceEncoder is still present in "jcodec". It is part of the package org.jcodec.javase.api.awt.AWTSequenceEncoder, and can be found in the github repo here:

The README has various examples, including this (I copied only one line here):

AWTSequenceEncoder encoder = new AWTSequenceEncoder(out, Rational.R(25, 1));
Kaan
  • 5,434
  • 3
  • 19
  • 41