aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2021-08-11 16:41:36 +0100
committergarret <garret@airmail.cc>2021-08-11 16:41:36 +0100
commitdd4adb78d8c8553ea99cf5ef4dcaf2e1a39d5552 (patch)
tree31edb100355edaced0bf80ec45f057d47c074654
parent10fb2f1eedcfdb333bb206809780286804fe82da (diff)
downloadaegisub-scripts-dd4adb78d8c8553ea99cf5ef4dcaf2e1a39d5552.tar.gz
aegisub-scripts-dd4adb78d8c8553ea99cf5ef4dcaf2e1a39d5552.tar.bz2
aegisub-scripts-dd4adb78d8c8553ea99cf5ef4dcaf2e1a39d5552.zip
use lfs
as opposed to os.execute(mkdir) lol
-rw-r--r--audio-clipper.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/audio-clipper.lua b/audio-clipper.lua
index 228bfc4..645feb4 100644
--- a/audio-clipper.lua
+++ b/audio-clipper.lua
@@ -52,12 +52,13 @@ function get_format(copy, format, custom)
end
function make_out_path(out_path)
+ local lfs = require "aegisub.lfs"
if out_path == "" then
err("Need an output path!")
end
- os.execute('mkdir "'..out_path..'"') -- if it doesn't exist, it makes it, and if it does, it errors.
- return out_path -- either way, the path now exists. (probably)
-end -- I imagine there's a mkdir thing in lua that's better, but this works fine, so unless it breaks, i'll keep it like this.
+ lfs.mkdir(out_path)
+ return out_path
+end
function extract_audio(in_path, start_time, end_time, out_path, name, extension, copy)
if copy == true then