DpdoPackSACD — outil de création SACD ISO
Aperçu
DpdoPackSACD assemble plusieurs fichiers DSF/DFF en une image SACD ISO standard. Compatible avec les lecteurs, lecteurs virtuels et la gravure — idéal pour l'archivage et la distribution SACD.
Utilisation de base
DpdoPackSACD [OPTIONS] <files...>
DpdoPackSACD *.dsf
Options de métadonnées
| Paramètre | Description | Exemple |
|---|---|---|
--album "TITLE" | Titre de l'album | --album "Symphony No. 9" |
--artist "NAME" | Artiste | --artist "Ludwig van Beethoven" |
--cover FILE | Pochette | --cover cover.jpg |
--genre "GENRE" | Genre | --genre "Classical" |
--year YYYY | Année | --year 2024 |
--label "NAME" | Label | --label "Deutsche Grammophon" |
--composer "NAME" | Compositeur | --composer "Beethoven" |
--conductor "NAME" | Chef | --conductor "Herbert von Karajan" |
--barcode "CODE" | Code-barres EAN/UPC | --barcode "028947757823" |
--isrc N:CODE | ISRC (par piste) | --isrc 1:DEF059003211 |
--catalog "ID" | N° catalogue | --catalog "477 523-4" |
DpdoPackSACD \
--album "The Wall" --artist "Pink Floyd" --genre "Progressive Rock" \
--year 1979 --label "Harvest / EMI" --cover cover.jpg \
01_in_the_flesh.dsf 02_the_thin_ice.dsf ...
Import CUE
DpdoPackSACD --album "My Album" --artist "Artist" --cue tracks.cue *.dsf
Pochette
JPEG / PNG, min. 600×600 px, 1:1.
Dpdo DSD Disc
DpdoPackSACD --album "DSD Collection" --dsd-disc *.dsf
Basé sur DVD-R/RW (4,7/8,5 Go), spécifications DSD supérieures au SACD standard.
Référence des paramètres
| Paramètre | Description | Défaut |
|---|---|---|
--album | Titre | — |
--artist | Artiste | — |
--cover | Pochette | — |
--genre | Genre | — |
--year | Année | — |
--label | Label | — |
--composer | Compositeur | — |
--conductor | Chef | — |
--barcode | Code-barres | — |
--isrc N:CODE | ISRC (par piste) | — |
--catalog | N° catalogue | — |
--cue | Feuille CUE | — |
--dsd-disc | Mode Dpdo DSD Disc | OFF |
-o | Chemin ISO de sortie | auto |
--track-title N:TEXT | Titre piste N | — |
--pause N | Pause entre pistes | 150 |
--no-encode | DSD brut multicanal | OFF |
DpdoPackSACD --album "My Album" -o my_sacd_2024.iso *.dsf
Flux de travail
# Étape 1 : PCM → DSF
DpdoEngine -i 01.wav 01.dsf --oversampling 128 --order 7 --artist "Artist" --album "Album" --title "Track 1"
DpdoEngine -i 02.wav 02.dsf --oversampling 128 --order 7 --artist "Artist" --album "Album" --title "Track 2"
# Étape 2 : SACD ISO
DpdoPackSACD \
--album "Album" --artist "Artist" --genre "Genre" --year 2024 \
--cover cover.jpg -o "Album.sacd.iso" 01.dsf 02.dsf
#!/bin/bash
for dir in /music/dsd/*/; do
album=$(basename "$dir")
DpdoPackSACD \
--album "$album" --artist "$ARTIST" --cover "$dir/cover.jpg" \
-o "/isos/${album}.iso" "$dir"/*.dsf
done