diff --git a/Audio-stuff.md b/Audio-stuff.md index d0781be..719c025 100644 --- a/Audio-stuff.md +++ b/Audio-stuff.md @@ -4,4 +4,6 @@ Requires [ffmpeg](https://ffmpeg.org/download.html) in %PATH% ```powershell ls -Recurse *.flac | % -Parallel { ffmpeg -i $_.FullName -hide_banner -loglevel warning -y -c:a libopus -b:a 96K -af aresample=resampler=soxr -ar 48000 -map_metadata 0 -map_metadata 0:s:0 -id3v2_version 3 -vn ($_.Directory.FullName + "\" + $_.BaseName + ".opus")} -``` \ No newline at end of file +``` + +You will have to manually remove the original files. \ No newline at end of file