Log in

View Full Version : Audio Oddity In MuxMan


EpheMeroN
9th October 2007, 18:40
I am re-authoring a dvd in MuxMan v0.15R that has two audio tracks.

Audio Track #1 is main movie's original Japanese 5.1 AC3.

Audio Track #2 is English alternative director commentary 2.0 AC3.

Even though I'm putting the JAP 5.1 AC3 as Track #1, after authoring the dvd it's playing the DC 2.0 AC3 as default track.

Why is this happening, and how can I fix it?

Here's the log from MuxMan:
MuxMan version 0.15R
Opened script file C:\Documents and Settings\Family\Desktop\test3.mxp
Accepted video C:\Documents and Settings\Family\Desktop\versus-temp\test.m2v size = 3892072784
Accepted audio C:\Documents and Settings\Family\Desktop\versus-temp\jap-5.1.ac3
Accepted audio C:\Documents and Settings\Family\Desktop\versus-temp\dc-2.0.ac3
Opened sub 1 file C:\Documents and Settings\Family\Desktop\versus-temp\Subpictures_22-wi.sup.
Opened sub 2 file C:\Documents and Settings\Family\Desktop\versus-temp\Subpictures_23-lb.sup.

17:34:42 Begin multiplex VTS01.
Title Segment List
Segment_1
Encoded stream 20 is script stream 1.
Encoded stream 21 is script stream 2.
Maximum audio duration 432286 fields.
Starting scene Segment_1_scn1 at 00:00:00:00
SeqEnd at E7FC514C.
Bytes remaining in buffer = 0.
Bitrate - avg: 5069421, min: 621970 (lba 2231218), max: 8947639 (lba 971018).
Shortest GOP has 2 fields, longest GOP has 30 fields.
Fields: 432285, VOBU: 13973, Sectors: 2231472.

17:47:43 Begin multiplex VMG.
17:47:43 End multiplex.

r0lZ
9th October 2007, 19:09
Maybe it's because your player is configured to play English by default.
You can force a specific track with a SetSTN command.

EpheMeroN
9th October 2007, 19:40
Maybe it's because your player is configured to play English by default.
You can force a specific track with a SetSTN command.

I believe you were right! I was testing playback via MPC and it was defaulting to the English track. I played the same newly authored dvd in VLC and it played the proper Japanese audio track.

Does this only happen with software players? Or can USA standalones also be pre-configured to choose English tracks first regardless of order?

Where in the .mxp file in MuxMan can I force the Japanese track to be played? Would it be just below my other SetSTN command to auto-start the English subs?

Name=VTS01_TTL01
Uop=0
Item=PGC
{
Name=VTS01_TTL01_PGC1
Menu ID=Title Entry
Uop=00000000
Next PGC=
Prev PGC=
GoUp PGC=
PG Playback Mode=Sequential Playback
Repeat Times=0
PGC Still Time=0
Palette=DefaultPalette
Item=Pre Commands
{
SetSTN subpicture=1:ON
}

r0lZ
9th October 2007, 19:51
All players should have a setting menu to select the preferred menu, audio and subpic languages.

Yes, you can force the audio track the same way than the subpic.
However, note that the same audio (and subpic) will be automatically forced each time you play the title, regardless of the change the user has made previously, either directly with the remote or via the language menu of the DVD.

EpheMeroN
9th October 2007, 19:56
However, note that the same audio (and subpic) will be automatically forced each time you play the title, regardless of the change the user has made previously, either directly with the remote or via the language menu of the DVD.

So even after the movie is playing, by using that SetSTN command to force the Japanese audio track, I won't be able to switch it over to the English commentary using the dvd remote?

r0lZ
9th October 2007, 20:51
Yes, you can change the audio and subpic tracks during the playback of the title. But if you play the title from the beginning again, your old choice will be lost, as the SetSTN command, executed just before the beginning of the playback, will be executed again.

EpheMeroN
9th October 2007, 22:00
Yes, you can change the audio and subpic tracks during the playback of the title. But if you play the title from the beginning again, your old choice will be lost, as the SetSTN command, executed just before the beginning of the playback, will be executed again.

Gotcha! What is the syntax for forcing an audio track using an SetSTN command btw? SetSTN audiotrack=1:ON ?

r0lZ
9th October 2007, 22:25
Yes, or something like that. (Honestly, I don't use Muxman to define the commands. I prefer PgcEdit!) ;)
Anyway, you dn't need the "ON" flag, as an audio track is always on.
And don't forget that the tracks are numbered from 0, so the first track is track #0.
So, I guess the correct suntax is simply:
SetSTN audiotrack=0

r0lZ
9th October 2007, 22:33
Sorry, I have verified with the GUI, and Muxman uses a 1 based numbering, and "audio" instead of "audiotrack". The correct syntax is therefore:
SetSTN audio=1

EpheMeroN
9th October 2007, 23:41
Sorry, I have verified with the GUI, and Muxman uses a 1 based numbering, and "audio" instead of "audiotrack". The correct syntax is therefore:
SetSTN audio=1

Thanks r0lZ!! That worked out perfectly.