Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
fix FFmpeg Web Video streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed Nov 23, 2012
1 parent c8b72e4 commit b34bce7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/net/pms/encoders/FFMpegWebVideo.java
Expand Up @@ -105,6 +105,10 @@ public ProcessWrapper launchTranscode(

cmdList.add(executable());

// XXX squashed bug - without this, ffmpeg hangs waiting for a confirmation
// that it can write to a file that already exists i.e. the named pipe
cmdList.add("-y");

cmdList.add("-loglevel");
cmdList.add("warning");

Expand Down

0 comments on commit b34bce7

Please sign in to comment.