mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-15 00:44:05 +09:00
deploying mp2 player
This commit is contained in:
@@ -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`),
|
||||
|
||||
Reference in New Issue
Block a user