Update 'Audio stuff'
parent
acf10ec57e
commit
17b3d3b6fd
1 changed files with 7 additions and 0 deletions
7
Audio-stuff.md
Normal file
7
Audio-stuff.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Convert FLACs (or other lossless format) to good lossy for space savings
|
||||
|
||||
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")}
|
||||
```
|
Loading…
Reference in a new issue