Advertisement
Guest User

DTXPlayer README for android

a guest
Jun 22nd, 2018
1,317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 KB | None | 0 0
  1. DTXFileConverter v0.3
  2.  
  3. * Overview
  4. Batch converting DTX score into a format readable by iOS/Android application "DTXPlayer".
  5.  
  6.  
  7. * Target OS
  8. Operation confirmed on Windows 10, Mac OS X 10.13(High Sierra).
  9.  
  10.  
  11. * Change log
  12. 2018/05/20 v0.3 Supported on Mac
  13. 2018/05/19 v0.2 Fixed link
  14. 2016/10/22 v0.1 Release
  15.  
  16.  
  17. * Description of file
  18.  
  19. - DTXFiles
  20. Folder that stores the DTX score of the conversion source.
  21.  
  22. - DTXFiles.android
  23. - DTXFiles.ios
  24. Folder where the converted DTX score is stored.
  25.  
  26. - DTXFileConverter.bat
  27. - DTXFileConverter_android.bat
  28. - DTXFileConverter_ios.bat
  29. Converter. (for Windows)
  30.  
  31. - DTXFileConverter.sh
  32. - DTXFileConverter_android.sh
  33. - DTXFileConverter_ios.sh
  34. Converter. (for Mac)
  35.  
  36. - work
  37. Conversion-time working folder.
  38.  
  39. - README en.txt
  40. This file.
  41.  
  42.  
  43. * What you need (@Windows)
  44. Please try to use the version that is as close as possible to.
  45. If you are using Mac, skip this step.
  46.  
  47. - FFmpeg
  48. https://ffmpeg.zeranoe.com/builds/
  49. Save and decompress "ffmpeg-20180518-16b4f97-win64-static.zip" from "Download Build".
  50. Move bin¥ffmpeg.exe into the work folder.
  51.  
  52. - ImageMagick
  53. http://www.imagemagick.org/script/download.php#windows
  54. Save "ImageMagick-7.0.7-33-Q16-x64-dll.exe" from "download", and install.
  55. !!! It does not work with ImageMagick-6.x series.
  56.  
  57. - nkf
  58. http://www.vector.co.jp/soft/win95/util/se295331.html
  59. Save and decompress "nkfwin.zip" from "Download here".
  60. Move vc2005¥win32(98,Me,NT,2000,XP,Vista,7)Windows-31J¥nkf32.exe into work folder.
  61.  
  62. - WAV to XA
  63. http://dtxmania.net/wiki.cgi?page=qa_xa
  64. Save and decompress "xa122.lzh" from "WAV to XA".
  65. Move xa.exe into the work folder.
  66.  
  67. - Nero AAC Codec
  68. http://www.free-codecs.com/nero_aac_codec_download.htm
  69. Save "NeroAACCodec -1.5.1.zip" from "Download", and decompress.
  70. Move win32¥neroAacEnc.exe into the work folder.
  71.  
  72. - LAME
  73. http://www.rarewares.org/mp3-lame-bundle.php
  74. Save "lame3.100-64.zip" from "Download (xxxkB)" and extract it.
  75. Move lame_enc.dll and lame.exe into the work folder.
  76.  
  77. - oggenc2
  78. http://www.rarewares.org/ogg-oggenc.php
  79. Save and decompress "oggenc2.88-1.3.5-x64.zip" from "x64 Only (xxx kB)".
  80. Move oggenc2.exe into the work folder.
  81.  
  82.  
  83. After this steps, the following execution file exists in the work folder.
  84. work
  85. ├─nkf32.exe
  86. ├─xa.exe
  87. ├─neroAacEnc.exe
  88. ├─lame_enc.dll
  89. ├─lame.exe
  90. ├─oggenc2.exe
  91. ...
  92.  
  93.  
  94. * What you need (@Mac)
  95. Please execute the following command at the Terminal.
  96. If you are using Windows, skip this step.
  97.  
  98. # install homebrew
  99. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  100.  
  101. # install packages
  102. brew install lame libvorbis vorbis-tools ffmpeg imagemagick nkf nodebrew
  103.  
  104. # setup nodebrew
  105. mkdir -p ~/.nodebrew/src
  106. nodebrew install-binary latest
  107. nodebrew list
  108. nodebrew use latest
  109. touch ~/.bash_profile
  110. echo 'export PATH=$PATH:$HOME/.nodebrew/current/bin' >> ~/.bash_profile
  111. source ~/.bash_profile
  112.  
  113. # install xa-dtx
  114. npm install -g xa-dtx
  115.  
  116.  
  117. * Conversion method
  118.  
  119. 1. Place the folder "DTXFileConverter" containing this README.txt in the appropriate place.
  120.  
  121. It must be placed in a path that does not contain double-byte characters / half-width spaces.
  122.  
  123.  
  124. 2. Store the DTX score you want to convert to DTXFileConverter¥DTXFiles.
  125.  
  126. DTXFiles
  127. ├─Title1
  128. │ ├─bgm.mp3
  129. │ ├─se.xa
  130. │ └─Title1.dtx
  131. ├─Title2
  132. │ └─Title2.dtx
  133. ...
  134.  
  135.  
  136. 3. (@Windows) Execute DTXFileConverter_android/ios.bat.
  137. (@Mac) Execute DTXFileConverter_android/ios.sh.
  138.  
  139. Multiple windows stand up and convert.
  140. When the conversion is completed, the DTX score converted to DTXFiles.android/ios is stored.
  141.  
  142.  
  143. 4. Transfer converted DTX score to application.
  144.  
  145. In the case of iOS, please use the iFunbox etc. to transfer the DTX score into the application.
  146.  
  147. DTXPlayer (application)
  148. ├─Title1
  149. │ ├─bgm.m4a
  150. │ ├─se.caf
  151. │ └─Title1.dtx
  152. ├─Title2
  153. │ └─Title2.dtx
  154. ...
  155.  
  156. In the case of Android, create a DTXPlayer folder directly under the SD card/Internal storage and transfer it into it.
  157.  
  158. SD card/Internal storage
  159. ├─DTXPlayer
  160. │ ├─Title1
  161. │ │ ├─bgm.mp3
  162. │ │ ├─se.ogg
  163. │ │ └─Title1.dtx
  164. │ ├─Title2
  165. │ │ └─Title2.dtx
  166. ...
  167.  
  168. It is also possible to create subfolders under the name "DTXFiles.xxx". (up to 1 level)
  169.  
  170. DTXPlayer
  171. ├─DTXFiles.Category1
  172. │ ├─Title1
  173. │ │ ├─bgm.m4a
  174. │ │ ├─se.caf
  175. │ │ └─Title1.dtx
  176. │ ├─Title2
  177. │ │ └─Title2.dtx
  178. ...
  179.  
  180.  
  181. * Playable format in DTXPlayer
  182. Even without using a converter, if you convert it to the format below you can play it.
  183.  
  184. BGM (iOS): AAC(m4a), MP3
  185. BGM (Andriod): MP3
  186. SE (iOS): CAF, WAV
  187. SE (Andorid): OGG, WAV
  188. Video: H.264 (mp4)
  189. Images: PNG, JPG
  190. Text: UTF-8/LF
  191. File name: Half size alphabets are lowercase letters only.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement