Add stuff

This commit is contained in:
Jean-Claude 2023-10-29 19:54:17 +01:00
parent ba18481dd7
commit 772585810d
Signed by: jeanclaude
GPG Key ID: 8A300F57CBB9F63E
1 changed files with 20 additions and 0 deletions

20
audio.md Normal file
View File

@ -0,0 +1,20 @@
# Audio
## File Information
- Basic info: `file <fileName>`
- More info: `ffprobe -hide_banner <fileName>`
- Even more info: `ffprobe -show_streams <fileName>`
- Clean info: `soxi <fileName>`
## Conversion
- flac to wav:
- Using flac `flac --decode [<file.flac>]`
- Using sox `sox <file.flac> <file.wav>`
## Burn CD
1. Prepare file: `sox <file.flac> -c 2 -r 44100 -b 16 <file.wav>`
- If clip warning, decrease volume by adding `-v 0.99` before the input file
- Decrease till warning is gone
2. Check if burn would succeed `cdrecord -dummy -v dev=/dev/sr0 -dao -useinfo -pad [file.wav]`
- Make sure the files are ordered correctly
- Remove `-dummy` for actual burn