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ètreDescriptionExemple
--album "TITLE"Titre de l'album--album "Symphony No. 9"
--artist "NAME"Artiste--artist "Ludwig van Beethoven"
--cover FILEPochette--cover cover.jpg
--genre "GENRE"Genre--genre "Classical"
--year YYYYAnné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:CODEISRC (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ètreDescriptionDéfaut
--albumTitre
--artistArtiste
--coverPochette
--genreGenre
--yearAnnée
--labelLabel
--composerCompositeur
--conductorChef
--barcodeCode-barres
--isrc N:CODEISRC (par piste)
--catalogN° catalogue
--cueFeuille CUE
--dsd-discMode Dpdo DSD DiscOFF
-oChemin ISO de sortieauto
--track-title N:TEXTTitre piste N
--pause NPause entre pistes150
--no-encodeDSD brut multicanalOFF
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