Update README
parent
fcc04e466f
commit
2c328d0736
|
@ -2,7 +2,11 @@
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="src" path="src"/>
|
<classpathentry kind="src" path="src"/>
|
||||||
<classpathentry kind="src" path="res"/>
|
<classpathentry kind="src" path="res"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/javaFlacEncoder"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/javaFlacEncoder"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Apache Commons IO"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Apache Commons IO"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/JColor"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/JColor"/>
|
||||||
|
|
|
@ -69,4 +69,4 @@ java -jar RR6AudioExtractor.java print <color> <text>
|
||||||
- *XMA Encoding Tool* by Microsoft
|
- *XMA Encoding Tool* by Microsoft
|
||||||
- For converting files to and from XMA format.
|
- For converting files to and from XMA format.
|
||||||
|
|
||||||

|

|
|
@ -18,3 +18,10 @@ Interface Functions:
|
||||||
- Create new pack file
|
- Create new pack file
|
||||||
- Write audio files into pack file with padding
|
- Write audio files into pack file with padding
|
||||||
- [x] Print
|
- [x] Print
|
||||||
|
|
||||||
|
|
||||||
|
WAV format:
|
||||||
|
|
||||||
|
0x00 x2st
|
||||||
|
0x04 chunk size 48 bytes 28 00 00 00
|
||||||
|
0x08
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
@ -29,7 +29,7 @@ public class AudioExtractor {
|
||||||
* Activate alternate behavior for command line terminal.
|
* Activate alternate behavior for command line terminal.
|
||||||
* Specifically prints things in a narrower width, and overwrites previous lines to add color.
|
* Specifically prints things in a narrower width, and overwrites previous lines to add color.
|
||||||
*/
|
*/
|
||||||
private final static boolean CMD_MODE = true;
|
private final static boolean CMD_MODE = false;
|
||||||
|
|
||||||
public static void test(String[] args) {
|
public static void test(String[] args) {
|
||||||
|
|
||||||
|
|
|
@ -188,16 +188,16 @@ public class Logo {
|
||||||
spaced = true;
|
spaced = true;
|
||||||
break;
|
break;
|
||||||
case '9':
|
case '9':
|
||||||
logo[0] += " ██████████████████████ ";
|
logo[0] += " ██████████████████████ ";
|
||||||
logo[1] += "████████████████████████ ";
|
logo[1] += "████████████████████████ ";
|
||||||
logo[2] += "████████ ████████ ";
|
logo[2] += "████████ ████████ ";
|
||||||
logo[3] += "████████ ████████ ";
|
logo[3] += "████████ ████████ ";
|
||||||
logo[4] += " ███████████████████████ ";
|
logo[4] += " ███████████████████████ ";
|
||||||
logo[5] += " █████████████████████ ";
|
logo[5] += " █████████████████████ ";
|
||||||
logo[6] += " ████████ ";
|
logo[6] += " ████████ ";
|
||||||
logo[7] += " ████████ ";
|
logo[7] += " ████████ ";
|
||||||
logo[8] += " ████████ ";
|
logo[8] += " ████████ ";
|
||||||
logo[9] += " ████████ ";
|
logo[9] += " ████████ ";
|
||||||
spaced = true;
|
spaced = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue