Windows/power-shell-basic
폴더에 있는 파일 변환하기 ffmpeg (ogg->mp3)
워니주니구니
2020. 12. 2. 15:32
728x90
SMALL
- 개요
Windows Power Shell에서 ffmpeg을 이용해서 ogg를 mp3로 변환하는 스크립트
- 스크립트
$files = Get-ChildItem -Path -Filter *.ogg -Recurse
foreach ($f in $files) {
""
$f.fullname
& "\ffmpeg.exe" -i "$($f.Fullname)" "$($f.Directory)$($f.baseName).mp3"
}
728x90
LIST