feat: add transform

This commit is contained in:
monoid 2022-07-21 01:35:43 +09:00
parent d6a3311a3d
commit bb2a2d136c
1 changed files with 12 additions and 0 deletions

12
transform.ts Normal file
View File

@ -0,0 +1,12 @@
import $ from "https://deno.land/x/dax@0.7.1/mod.ts";
import { expandGlob } from "https://deno.land/std@0.148.0/fs/mod.ts";
import { relative, parse, resolve } from "https://deno.land/std@0.148.0/path/mod.ts";
for await (const file of expandGlob("*.wav")){
const from = relative(Deno.cwd(),file.path);
const parsed = parse(from);
const to = resolve(parsed.dir,parsed.name+".flac")
console.log(from, to);
await $`ffmpeg -i ${from} ${to}`
}