Abe Pazos

Results 279 comments of Abe Pazos
trafficstars

A possible issue with doing it in two steps is that it would be compressed twice, loosing quality. But if the first pass uses a lossless video format then it...

Thank you for the detailed report. `.frame` is used to open a dialog. I worked on an update but it's not finished and didn't take the source with me. Will...

The following code works: ``` import javax.swing.JOptionPane; String r=JOptionPane.showInputDialog(null, "What?", "Hmm..", JOptionPane.QUESTION_MESSAGE); text(r, 9, 9); ``` Therefore I think I could replace ``` JOptionPane.showMessageDialog(parent.frame, ``` with ``` JOptionPane.showMessageDialog(null, ``` I...

Hii :) I'm very sorry about taking forever... I work on it like twice a year XD I just pushed this new branch: https://github.com/hamoid/video_export_processing/tree/kotlinGradle with some instructions. I quickly tested...

:-) I just added a jar to test, in case someone for some strange reason doesn't want to build it themselves XD

The reason is probably that it does not manage to save 30 frames per second. If frames arrive a bit slower, at the end you don't have enough frames but...

But the first step would be to diagnose the issue, by printing the times when draw is called and how many actual frames per second it is saving. If the...

Apparently ffmpeg does not allow specifying frame timestamps, so I should try doing this as I suggested above. See this discussion: https://ffmpeg.org/pipermail/ffmpeg-user/2012-December/011828.html Although... that's from 2012. Here some flags to...

@aldobranti Hi, it's hard to say without seeing the code. If you don't care about doing it real time, you could extract all frames to jpg using ffmpeg, and then...

Hi Brett! Oops. I think it did make into a release, but at some point I made a mistake. I have two computers and I think I pushed an older...