Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
618 views
in Technique[技术] by (71.8m points)

ffmpeg executed from Java's processbuilder does not return under windows 7

I was trying to build up a ProcessBuilder calling the ffmpeg binary. My problem is that calling it, it returns perfectly under MacOs, Ubuntu and WindowsXp, but under Windows7 the waitFor() never returns.

Has anyone similar experience under windows 7? Any help would be appreciated!

My command:

ProcessBuilder pb = new ProcessBuilder( );

pb.command( "C:\Windows\System32\cmd.exe", "/c", "c:\ffmpeg\bin\ffmpeg.exe", "-version" ); 

Tried these ones too:

pb.command( "c:\ffmpeg\bin\ffmpeg.exe", "-version" ); 
pb.command( "C:\Windows\System32\cmd.exe", "/c", "start c:\ffmpeg\bin\ffmpeg.exe -version" ); 

Result is the same. :(

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Looks like your process writes something in its out and/or err streams. Their buffer overflow and process blocks. You should read out and err streams of your process to avoid this.

See "When Runtime.exec() won't" for more information


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...