Skip to content
Advertisement

I’m running a process in Java and am getting stuck when I wait for it to finish

I have a Java program that is supposed to make copies of segments of a video and then stitch them back together, using ffmpeg. My “snip” method, the one that makes the segment files, has a problem, it gets stuck when I call “process.waitfor()”. When I take it out, the videos load partly, but cannot be accessed until I close the program. When I try to delete them, while the program is running, it says that they cannot be deleted because they are in use. Could anyone lead me in the right direction? Here is the method:

JavaScript

Advertisement

Answer

Programs often produce log or error output which has to go somewhere. By default Java sets up “pipes” for these, which allow you to read the produced output from Java. The downside is, pipes have a limited capacity, and if you don’t read from them, the external program will eventually get blocked when it tries to write more output.

If you’re not interested in capturing the log output, you can for example let ffmpeg inherit the Java application’s I/O streams:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement