Le son 5.1 ( son 6 canaux )
par Dirk Pitt.
B.3. AC3 5.1 vers OGG Vorbis 5.1
Là le problème est le suivant, je n'arrive pas à encoder du OGG Vorbis 5.1 avec BeSweet. La solution est d'utiliser OggEnc de Michael Smith. Il supporte en entrée toute sorte de fichiers WAVs. Je vais passer rapidement sur les étapes que nous avons déja vu au B.2.
a) conversion AC3 5.1 vers 6 fichiers WAVs 16 bits mono
BeSweet.exe -core( -input "F:\Work\Audio.ac3" -output "F:\Work\16B-" -6ch )
b) boost des 6 fichiers WAVs 16 bits mono
SEB-CBoost.exe -in "F:\Work16B-C.wav" -out "D:\Work\B-16B-C.wav" -coef "1.5"
SEB-CBoost.exe -in "F:\Work16B-FL.wav" -out "D:\Work\B-16B-FL.wav" -coef "1.5"
SEB-CBoost.exe -in "F:\Work16B-FR.wav" -out "D:\Work\B-16B-FR.wav" -coef "1.5"
SEB-CBoost.exe -in "F:\Work16B-LFE.wav" -out "D:\Work\B-16B-LFE.wav" -coef "1.5"
SEB-CBoost.exe -in "F:\Work16B-SL.wav" -out "D:\Work\B-16B-SL.wav" -coef "1.5"
SEB-CBoost.exe -in "F:\Work16B-SR.wav" -out "D:\Work\B-16B-SR.wav" -coef "1.5"
ou en une seule commande
for %a in (16B*.wav) do Start /WAIT /LOW SEB-CBoost.exe -in "%~dpnxa" -out "%~dpaB-%~nxa" -coef "1.5"
c) conversion 6 fichiers WAVs 16 bits mono vers 1 fichier WAV 16 bits 5.1
Cette étape supplémentaire est nécessaire pour fournir à OggEnc un fichier WAV 16 bits 5.1 en entrée. Il faut encore utiliser BeSweet et un fichier MUX. Mais attention, l'ordre des canaux pour le OGG Vorbis n'est pas le même. Le fichier MUX est :
BeSweet.exe -core( -input "F:\Work\16TOVORBIS.MUX" -output "F:\Work\B-Audio.wav" -6chwav )
d) conversion WAV 5.1 vers OGG Vorbis 5.1
OggEnc2.exe --quality 0.2 --output=F:\Work\B-Audio.ogg F:\Work\B-Audio.wav
Pages de l'article
- Introduction
- A. Lire du 5.1
- A.1. Lire du HE-AAC 5.1
- A.2. Lire du Vorbis ( OGG ) 5.1
- B. Ré-Encoder du 5.1
- B.1. AC3 5.1 vers HE-AAC 5.1 ( sans boost )
- B.2. AC3 5.1 vers HE-AAC 5.1 ( avec boost )
- B.3. AC3 5.1 vers OGG Vorbis 5.1
- B.4. DTS 5.1 vers HE-AAC 5.1
- B.5. DTS 5.1 vers OGG Vorbis 5.1
- B.6. HE-AAC 5.1 vers OGG Vorbis 5.1
- B.7. OGG Vorbis 5.1 vers HE-AAC 5.1
- B.8. AC3 5.1 vers AACPlus V2 ( avec l'encodeur enc_aacplus.dll de WimAMP )
- B.9. Synthèse
- B.10. Ré-encodage à travers DirectShow
- Conclusion