Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
advance [2013/09/14 10:04]
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"​ =====
Line 305: Line 329:
 Set audio volume level. Set audio volume level.
  
-The available options are: "​ORIGINAL",​ "​VOL2",​ "​VOL5",​ "​VOL10",​ "​VOL20"​ and "​VOLNORM"​(only available when using Mencoder as decoding tool, set in common.conf:​ DECODED_BY="​MENCODER"​ above).+The available options are: "​ORIGINAL",​ "​VOL2",​ "​VOL5",​ "​VOL10",​ "​VOL20"​ and "​VOLNORM". 
 + 
 +The default "​ORIGINAL"​ indicates keep volume unchanged. "VOLx"(x is 2, 5, etc.) indicates increase xdB. And, "​VOLNORM"​ is only available when using Mencoder as decoding tool, set in common.conf:​ DECODED_BY="​MENCODER"​ above, indicates "​Maximizes the volume without distorting the sound."​(from "man mencoder"​). 
  
 <​code>​splittime="​-1"</​code>​ <​code>​splittime="​-1"</​code>​
Line 313: Line 339:
  
 The default "​-1"​ indicates don't split the video. The default "​-1"​ indicates don't split the video.
 +
 +===== Reset Configuration Directory =====
 +
 +Sometimes, if you want reset configuration directory, you can use the two ways below.
 +
 +1, You can delete the entire "​conf"​ directory under "​tce(TinyCore Extension)"​ directory. Then reboot the MobileMate, the original configuration directory will appear.
 +
 +2, The original configuration directory has been compressed into "/​opt/​mobilemate/​conf.tar.gz",​ you can delete the "​conf"​ directory and uncompress "​conf.tar.gz"​ into "​tce"​ directory to reset configuration directory.
 +
 +And, if you need only reset default video configuration file "​v2vdefault.conf"​ or audio configuration file "​x2adefault.conf",​ you can copy "​v2vdefault.conf.orig"​ as "​v2vdefault.conf"​ or copy "​x2adefault.conf.orig"​ as "​x2adefault.conf"​.
advance.1379124297.txt.gz · Last modified: 2013/09/14 10:04 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号