newer movprobe.js

This commit is contained in:
minjaesong
2024-08-15 02:46:09 +09:00
parent bc1635c578
commit ff32200b0a
4 changed files with 146 additions and 154 deletions

View File

@@ -306,6 +306,9 @@ shell.parse = function(input) {
}
/** @return fully resolved path, starting with '\' but not a drive letter */
shell.resolvePathInput = function(input) {
if (input === undefined) return undefined
// replace slashes
let pathstr0 = input.replaceAll('\\','/') // JS thinks '/' as a regex, so we're doing this to circumvent the issue
let pathstr = ''