Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
advance [2013/09/14 13:12]
littlebat
advance [2014/07/29 17:00] (current)
littlebat [Explaination of common.conf] updated for mobilemate-0.1b1
Line 13: Line 13:
 <​file>​ <​file>​
 PATH="/​opt/​mobilemate/​bin:/​opt/​custom/​bin:​$PATH"​ PATH="/​opt/​mobilemate/​bin:/​opt/​custom/​bin:​$PATH"​
 +TRIVAL="​NO"​
 +DEBUG="​NO"​
 +CONVOKFLAG="​CONVOK"​
 DECODED_BY="​LIBAV"​ DECODED_BY="​LIBAV"​
-guiconfirm="​NO"​+GUICONFIRM="​NO"​
 MAXHISTORY="​3"​ MAXHISTORY="​3"​
 WORKDIR="/​opt/​mobilemate"​ WORKDIR="/​opt/​mobilemate"​
 TASKBASE="​${WORKDIR}/​task"​ TASKBASE="​${WORKDIR}/​task"​
 +TASKBAKBASE="​${WORKDIR}/​task.bak"​
 +TASKBACKUP="​NO"​
 TMPBASE="/​tmp/​mobilemate"​ TMPBASE="/​tmp/​mobilemate"​
 TMPCONFBASE="​${TMPBASE}/​conf"​ TMPCONFBASE="​${TMPBASE}/​conf"​
-threads="​-1"​+THREADS="​-1"​
 STARTTIME="​0"​ STARTTIME="​0"​
 ENDTIME="​0"​ ENDTIME="​0"​
Line 31: Line 36:
 LIBAVSEEK="​FAST"​ LIBAVSEEK="​FAST"​
 ASYNC="​1"​ ASYNC="​1"​
-logfile="​${WORKDIR}/​log/​mobilemate.log" +LOGBASE="​${WORKDIR}/​log"​ 
-v2voptionslistfile="​${WORKDIR}/​conf/​v2voptions.list"​ +V2VOPTIONSLISTFILE="​${WORKDIR}/​conf/​v2voptions.list"​ 
-x2aoptionslistfile="​${WORKDIR}/​conf/​x2aoptions.list"​ +X2AOPTIONSLISTFILE="​${WORKDIR}/​conf/​x2aoptions.list"​ 
-v2vruleslistfile="​${WORKDIR}/​conf/​v2vrules.list"​ +V2VRULESLISTFILE="​${WORKDIR}/​conf/​v2vrules.list"​ 
-x2aruleslistfile="​${WORKDIR}/​conf/​x2arules.list+X2ARULESLISTFILE="​${WORKDIR}/​conf/​x2arules.list"​
-v2vworkconfigfile="​${WORKDIR}/​conf/​v2vwork.conf"​ +
-x2aworkconfigfile="​${WORKDIR}/​conf/​x2awork.conf"+
 </​file>​ </​file>​
  
Line 43: Line 46:
 <​code>​PATH="/​opt/​mobilemate/​bin:/​opt/​custom/​bin:​$PATH"</​code>​ <​code>​PATH="/​opt/​mobilemate/​bin:/​opt/​custom/​bin:​$PATH"</​code>​
 Set the executable PATH environment for Mobilemate. Set the executable PATH environment for Mobilemate.
 +
 +<​code>​TRIVAL="​NO"</​code>​
 +Set if display "​Mencoder"​ or "​Libav"​ output on console when converting. This output will not write into log file regardless of this option.
 +
 +The available options are: "​NO",​ "​YES"​.
 +
 +The default option is "​NO"​.
 +
 +<​code>​DEBUG="​NO"</​code>​
 +Set if display debug information on console and output to log file.
 +
 +The available options are: "​NO",​ "​YES"​.
 +
 +The default option is "​NO"​.
 +
 +<​code>​CONVOKFLAG="​CONVOK"</​code>​
 +The file converting success flag constant string. Don't change it.
  
 <​code>​DECODED_BY="​LIBAV"</​code>​ <​code>​DECODED_BY="​LIBAV"</​code>​
Line 66: Line 86:
  
 <​code>​WORKDIR="/​opt/​mobilemate"</​code>​ <​code>​WORKDIR="/​opt/​mobilemate"</​code>​
-The Mobilemate ​tools root directory. Don't change it.+The Mobilemate ​tool root directory. Don't change it.
  
 <​code>​TASKBASE="​${WORKDIR}/​task"</​code>​ <​code>​TASKBASE="​${WORKDIR}/​task"</​code>​
 The Mobilemate task directory. Don't change it. The Mobilemate task directory. Don't change it.
 +
 +<​code>​TASKBAKBASE="​${WORKDIR}/​task.bak"</​code>​
 +The Mobilemate task backup directory.
 +
 +<​code>​TASKBACKUP="​NO"</​code>​
 +Set if backup task files.
 +
 +The available options are: "​NO",​ "​YES"​.
 +
 +The default option is "​NO"​.
  
 <​code>​TMPBASE="/​tmp/​mobilemate"</​code>​ <​code>​TMPBASE="/​tmp/​mobilemate"</​code>​
Line 199: Line 229:
 And ASYNC=""​ indicates don't use "​-async"​ option. And ASYNC=""​ indicates don't use "​-async"​ option.
  
-<​code>​logfile="​${WORKDIR}/​log/​mobilemate.log"</​code>​ +<​code>​LOGBASE="​${WORKDIR}/​log"</​code>​ 
-Set the log file.+Set the log file directory.
  
 <​code>​v2voptionslistfile="​${WORKDIR}/​conf/​v2voptions.list"</​code>​ <​code>​v2voptionslistfile="​${WORKDIR}/​conf/​v2voptions.list"</​code>​
Line 213: Line 243:
 <​code>​x2aruleslistfile="​${WORKDIR}/​conf/​x2arules.list"</​code>​ <​code>​x2aruleslistfile="​${WORKDIR}/​conf/​x2arules.list"</​code>​
 The rules list file of converting to audio. Don't change it. The rules list file of converting to audio. Don't change it.
- 
-<​code>​v2vworkconfigfile="​${WORKDIR}/​conf/​v2vwork.conf"</​code>​ 
-Cancelled. 
- 
-<​code>​x2aworkconfigfile="​${WORKDIR}/​conf/​x2awork.conf"</​code>​ 
-Cancelled 
  
 ===== Explaination of "​v2vdefault.conf"​ ===== ===== Explaination of "​v2vdefault.conf"​ =====
advance.1379135559.txt.gz · Last modified: 2013/09/14 13:12 by littlebat
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0

蜀ICP备2021012931号-1 川公网安备51092202000377号