| Author |
Message |
Z Junior Member

Joined: 22 Jul 2007 Posts: 69
|
Posted: Wed Sep 24, 2008 7:43 pm Post subject: Need help adding a movie trailer. |
|
|
Hi.
I have V For Vendetta. Disc 2 (the bonus disc) has a theatrical trailer on it. Elsewhere, I found a second trailer for the movie that's slightly different from the first one and I'd like to add it too, to play right after the first trailer when that option is selected off the menu.
I've been trying the simple, straightforward "Copy PGC/Append copied PGC" method, but I've encountered some problems:
Problem 1
The audio track for Trailer #1 is in track 1 whereas,
The audio track for Trailer #2 is in track 5.
So, picking one track or the other for the PGC, makes the other play silently.
Problem 2
Trailer #1's video format is Wide (16:9) Conversion to 4:3 "letterbox" checked
Trailer #2's video format is Normal (4:3)
So, obviously they can't co-exist together appended in the same PGC.
I tried creating a new VTS (VTS #3) and have that contain Trailer #2 and have the program jump or call that VTS right after Trailer #1 finishes playing. Alas, I haven't been able to put the correct programming commands (in Pre Commands or Post Commands) to accomplish this.
Can you help me out, toaddub?
Here are two Test Exports to look at. The first is the original way Disc 2 looks. The second is with my created VTS #3 but without any programming commands added. The scenes are cut to 10 seconds. If you need them longer, let me know.
http://rapidshare.com/files/148077141/V_FOR_VENDETTA_D2_original.rar
http://rapidshare.com/files/148080916/V_FOR_VENDETTA_D2_with_2nd_trailer.rar |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Thu Sep 25, 2008 3:45 pm Post subject: |
|
|
Hi Z
You are quite far with the project, it would be a shame not to finish it and learn on the way.
You have new VTS with Title PGC in it.
To go from one VTS to other, you have to go through VMG manager.
Create new PGC in VMG menu and create new Title in VMG Title which will be your #3VTS Title.
Than in post command of your #1Trailer go to newly created PGC in VMG menu domain, in that PGC- Pre Command- go to your new title in VMG title domain.
That is it.
To get back to your main menu from #2Trailer in #3VTS you will have to go back to VMG menu PGC and from there to the menu.
There should be one PGC there which point to the menu already.
You can always create new one and go from there.
One more thing. In #3VTS Title PGC Pre Command set audio to track #5
otherwise it will default to 0.
You did OK because you cannot have 4:3 and 16:9 in one VTS. Not
allowed.
This is general instruction, because I do not have Remake on this machine to check your file. |
|
| Back to top |
|
 |
Z Junior Member

Joined: 22 Jul 2007 Posts: 69
|
Posted: Thu Sep 25, 2008 6:45 pm Post subject: |
|
|
Thanks for the reply and help, Senior.
I see what you're talking about to have to go through the Video Manager at the top of the tree and I do know of the command to "Add Title(s)". I've already tried adding another VMG Title to the list ("VMG title 11") before in my attempts to get this to work, but I haven't been able to put in the correct programming commands.
I thought I could make some better sense out of these programming commands, but they aren't really that clear as to how to actually code them. I know programming languages like BASIC and batch file commands, but these commands in DVD authoring seem much more complicated to me. I tried many commands that I thought would work like "jump" or "call" or whatnot, but they haven't worked as I thought they would to do the simple task I'm seeking to do.
Why is it so hard to simply tell the program to run Trailer #2 after it finishes playing through Trailer #1, then return to the menu that launched the "Theatrical Trailer" menu choice in the first place? It seems like it should be a very simple command to introduce into the code.
Do you know the commands I have to put in to do what I seek to do? If so, can you type them out for me and also tell me where they need to go?

VMG Titles
 
VTS2 Pre Commands __ VTS2 Post Commands
 
VTS3 Pre Commands __ VTS3 Post Commands
Last edited by Z on Thu Sep 25, 2008 7:48 pm; edited 2 times in total |
|
| Back to top |
|
 |
toaddub Moderator

Joined: 12 Sep 2004 Posts: 1994
|
Posted: Thu Sep 25, 2008 7:23 pm Post subject: |
|
|
Let's just start from the beginning.
- For the Trailer #2, I would first demux the video and audio stream with Pgcdemux and mux it back with MuxMan. This would move the audio stream id 0x85 to be 0x80 and be on the first track position. This will eliminate the need to use the SetSTN command.
- Import the MuxMan trailer #2 as project 2.
- Copy the VTS from project 2 and add it to project 1 (the original). This will be VTS 3.
- In project 1, go to VMG Titles pane and 'Add Title(s)' for VTS 3. This will be VMG Title 11.
- Duplicate VMG PGC 2. A VMG PGC 3 is created.
- In VMG PGC 3, change the Jump command to jump to VMG Title 11. This is used as a bridge to jump from VTS 2 to VTS 3.
- Now in VTS2/Program Chains/PGC1, copy all post commands and paste them into VTS3/Program Chains/PGC1/Post Commands pane.
- Copy the pre-command in VTS2 Root menu and replace it over VTS3 Root Menu. If you don't do this, by default, MuxMan creates a command to play the same title again if you press Root menu on the remote. By replacing the command from VTS2, you're ensured that the Root menu button behaves the same as the Title menu button as the command suggests.
- Finally to connect the link between VTS2 and VTS3, in VTS2/Program Chains/PGC1, change the last post command to "Call VMG PGC 3 (resume cell 1)".
And you're done! |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Thu Sep 25, 2008 7:23 pm Post subject: |
|
|
Command in Remake are pretty straight forward, you do not have to know Basic or any other language. DVD commands are language of there own.
Once to command window open, you can use JUMP/CALL than select
VMG PGC your#. This will be in post of Trailer2
Once there use JUMP/CALL VMG Title Your #. This will be in Pre of your created PGC in VMG.
You can go here to see what each command will do and where it can be used.
http://www.dvd-replica.com/DVD/nop.php
It is not that hard and once you know, you will really appreciate power of Remake.
I will look at your file tonigth to see.
P.S.
I guess toaddub dit it for you.
Last edited by Senior on Thu Sep 25, 2008 7:41 pm; edited 1 time in total |
|
| Back to top |
|
 |
toaddub Moderator

Joined: 12 Sep 2004 Posts: 1994
|
Posted: Thu Sep 25, 2008 7:27 pm Post subject: |
|
|
Thanks, Senior, for the assistance. Much appreciated. Sometimes I was just too busy to respond in time.
btw, DVD commands are a lot easier than Basic. There's not much to learn. Once you know the DVD structure and its common terminology, the commands are a piece of cake. |
|
| Back to top |
|
 |
Z Junior Member

Joined: 22 Jul 2007 Posts: 69
|
Posted: Thu Sep 25, 2008 7:35 pm Post subject: |
|
|
Thanks for the assistance toaddub and Senior. Your help here is invaluable!!!
I edited my post above and added some screen captures of the VMG Titles, Pre Commands and Post Commands for the VTSs that contain Trailer #1 and Trailer #2.
So, toaddub, I should go your route to demux/mux the DVD and change the audio track from 5 to 0 and all the rest of the instructions you so generously typed there for me. Correct?
Or is Senior's suggestion better or easier or whatnot, the way I should go? What do you think?
Also, thanks Senior for the link to explain the DVD commands. I'll save that for reference.
Thanks too, toaddub for saying that DVD commands are easier than BASIC commands. I really would like to become an expert understanding the DVD coding commands. It really is fun and satisfying to alter the way the DVDs function in the final compilation. |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Thu Sep 25, 2008 7:47 pm Post subject: |
|
|
| toaddub wrote: | Thanks, Senior, for the assistance. Much appreciated. :) Sometimes I was just too busy to respond in time.
btw, DVD commands are a lot easier than Basic. There's not much to learn. Once you know the DVD structure and its common terminology, the commands are a piece of cake. |
I do not want to beat you to anything. I know, you know more than me, but if I can help I do. |
|
| Back to top |
|
 |
toaddub Moderator

Joined: 12 Sep 2004 Posts: 1994
|
Posted: Thu Sep 25, 2008 7:50 pm Post subject: |
|
|
| Both of us say the same thing, except the demux/mux part. Just follow mine as I already laid out the steps. Shouldn't be hard to follow. |
|
| Back to top |
|
 |
toaddub Moderator

Joined: 12 Sep 2004 Posts: 1994
|
Posted: Thu Sep 25, 2008 7:55 pm Post subject: |
|
|
| Senior wrote: | | toaddub wrote: | Thanks, Senior, for the assistance. Much appreciated. Sometimes I was just too busy to respond in time.
btw, DVD commands are a lot easier than Basic. There's not much to learn. Once you know the DVD structure and its common terminology, the commands are a piece of cake. |
I do not want to beat you to anything. I know, you know more than me, but if I can help I do. | Don't think of it that way. A student can always beat the teacher. I'm sure you're better than me in other areas. Really, I welcome the help. At least I know that all my efforts have been paid off. Next time, I can just sit back and let someone take over. hehe |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Thu Sep 25, 2008 8:00 pm Post subject: |
|
|
| Z wrote: | | Thanks too, toaddub for saying that DVD commands are easier than BASIC commands. I really would like to become an expert understanding the DVD coding commands. It really is fun and satisfying to alter the way the DVDs function in the final compilation. |
If you want to really learn DVD structure. Go to that site, they have a book in pdf file "Unofficial DVD Specifications".
It is very good in explaining whole thing
http://www.dvd-replica.com/DVD/orderdvd.php
I am not going to comment on your pictures, because toaddub is here, but it is not much you have to do there. |
|
| Back to top |
|
 |
Z Junior Member

Joined: 22 Jul 2007 Posts: 69
|
Posted: Thu Sep 25, 2008 9:19 pm Post subject: |
|
|
| toaddub wrote: | Let's just start from the beginning.
For the Trailer #2, I would first demux the video and audio stream with PgcDemux and mux it back with MuxMan. This would move the audio stream id 0x85 to be 0x80 and be on the first track position. This will eliminate the need to use the SetSTN command. |
PgcDemux created these files:
AudioFile_85.ac3 _______ 3,265,916 bytes
Celltimes.txt __________________ 0 bytes
LogFile.txt ________________ 1,203 bytes Question 1
But how do I use the newly created "AudioFile_85.ac3" file in MuxMan? I'm stuck. I never used MuxMan for anything other than taking a still frame from a menu I exported and modified and turn it back into a DVD folder that I could then import in DvdRemake. What do I do in MuxMan to remux the audio of Trailer #2? Could you step-by-step it for me?

Question 2
Also, what settings should I have selected in PgcDemux? The default ones that are there when we start the program? That's what I left them at when I demuxxed the file out.
Question 3
On a different topic... I once hit "Play" within DvDRemake and actually heard the audio as the video was playing. How do I do that again? I did it the first time inadvertently and now when I hit the "Play" button (if it's there), the item only plays silently. Is there a toggle to turn the sound on/off when the "Play" button is clicked? |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Thu Sep 25, 2008 11:54 pm Post subject: |
|
|
In PgcDemux, check video also.
Once done, open Muxman an import video and audio file. For audio file import what you want to play first as Audio1, if you have more streams then click on audio to get#2 and import next and so on.
If you have subtitles do the same as with audio streams.Than compile.
To your third question.
Sometime player will look for first audio available, so even if it is in stream #5 and other streams are empty than it will play the stream. Otherwise default is always first stream (Stream 0).
But if you have them in same VTS, than it could be a problem.
That why it is better to issue command to play what you want.
If you play in Remake, you most likely check stream #5 in audio pop up window, than it will play.
Remake does not play audio unless you highlight the stream, or you are in Debug mode.
My question to you.
You said that you used Muxman to do .bmp file into video. I tried that once and video was awful. Colours all over the place.
What version of Muxman do you have and did you check anything extra? |
|
| Back to top |
|
 |
Senior Member

Joined: 31 Aug 2006 Posts: 119
|
Posted: Fri Sep 26, 2008 1:28 am Post subject: |
|
|
Hi Z
You better use Muxman and replace VTS3 with that file, like toaddub say.
I do not know how you managed that, but on your existing file you have in VTS3 title audio Track0-Stream5.
I could not get it to play no matter what I tried.
After Muxman everything is OK. |
|
| Back to top |
|
 |
Z Junior Member

Joined: 22 Jul 2007 Posts: 69
|
Posted: Fri Sep 26, 2008 1:45 am Post subject: |
|
|
| Senior wrote: | To your third question.
Sometime player will look for first audio available, so even if it is in stream #5 and other streams are empty than it will play the stream. Otherwise default is always first stream (Stream 0).
But if you have them in same VTS, than it could be a problem.
That why it is better to issue command to play what you want.
If you play in Remake, you most likely check stream #5 in audio pop up window, than it will play.
Remake does not play audio unless you highlight the stream, or you are in Debug mode. |
It worked! I clicked on the Audio tab in any PGC, clicked on the audio track, then pressed the "Play" button and sure enough, it played WITH the audio as well! Hooray! Thank you for that.
| Senior wrote: | My question to you.
You said that you used Muxman to do .bmp file into video. I tried that once and video was awful. Colours all over the place. |
I think you get the messed up colors if your bitmap was not a 24-bit .bmp. What I do is this. I use an image editor and open the exported .bmp file from DvdRemake. I then save it in 24-bit right over itself. I'm asked if I want to overwrite the existing file and I say "YES". I then re-open that same file, which now is in 24-bit instead of say, 32-bit. I do the needed editing to the menu screen, then save it again. Then as you already know this part, you just go into MuxMan and do the creation of the new menu folder that has all the required DVD files that MuxMan creates that will be imported by DvdRemake. |
|
| Back to top |
|
 |
CDR-Zone.COM Advertisement Bot
 
|
Posted: Post subject: Advertisement: |
|
|
|
|
|
| Back to top |
|
 |
|
Powered by phpBB © 2001, 2005 phpBB Group
|