Changeset 154
- Timestamp:
- 02/16/07 20:31:13 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/org/thestaticvoid/iriverter/MPlayerInfo.java
r153 r154 27 27 28 28 public class MPlayerInfo { 29 public static final String MPLAYER_BIN = System.getProperty("os.name").indexOf("Windows") > 0 ? "mplayer.exe" : "mplayer";30 public static final String MENCODER_BIN = System.getProperty("os.name").indexOf("Windows") > 0 ? "mencoder.exe" : "mencoder";29 public static final String MPLAYER_BIN = System.getProperty("os.name").indexOf("Windows") >= 0 ? "mplayer.exe" : "mplayer"; 30 public static final String MENCODER_BIN = System.getProperty("os.name").indexOf("Windows") >= 0 ? "mencoder.exe" : "mencoder"; 31 31 32 32 private Process proc;
