deploying mp2 player

This commit is contained in:
minjaesong
2023-01-15 16:42:09 +09:00
parent 6cb45f6d50
commit af03ab23aa
8 changed files with 226 additions and 969 deletions

View File

@@ -25,8 +25,8 @@ const COL_HL_EXT = {
"bat": 215,
"wav": 31,
"adpcm": 31,
"pcm": 33,
"mp3": 34,
"pcm": 32,
"mp3": 33,
"mp2": 34,
"mov": 213,
"ipf1": 190,
@@ -39,6 +39,7 @@ const EXEC_FUNS = {
"wav": (f) => _G.shell.execute(`playwav ${f} /i`),
"adpcm": (f) => _G.shell.execute(`playwav ${f} /i`),
"mp3": (f) => _G.shell.execute(`playmp3 ${f} /i`),
"mp2": (f) => _G.shell.execute(`playmp2 ${f} /i`),
"mov": (f) => _G.shell.execute(`playmov ${f} /i`),
"pcm": (f) => _G.shell.execute(`playpcm ${f} /i`),
"ipf1": (f) => _G.shell.execute(`decodeipf ${f} /i`),