Update README

main
Nes370 2025-08-10 19:57:06 -07:00
parent fcc04e466f
commit 2c328d0736
6 changed files with 18 additions and 7 deletions

View File

@ -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"/>

View File

@ -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.
![Software Diagram](software diagram.png) ![Diagram](diagram.png)

View File

@ -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

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

@ -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) {