S_O
4th February 2003, 20:44
I want to create a simple SVCD with 2 tracks (in 2 files) with one still menu where I can select one of the tracks. When the track ends it should go back to the menu. I never used VCDImager (always Nero), I want to know how to do that. I created a xml using VCDEasy and the guides in the links section of VCDImager and created that:<?xml version="1.0"?>
<!DOCTYPE videocd PUBLIC "-//GNU//DTD VideoCD//EN" "http://www.gnu.org/software/vcdimager/videocd.dtd">
<!-- Made with VCDEasy v1.1.4 - http://www.vcdeasy.org -->
<!-- See http://www.vcdimager.org/guides/general_xml_structure.html to have details -->
<videocd xmlns="http://www.gnu.org/software/vcdimager/1.0/" class="svcd" version="1.0">
<option name="update scan offsets" value="true"/>
<option name="relaxed aps" value="false"/>
<info>
<album-id>VIDEO</album-id>
<volume-count>1</volume-count>
<volume-number>1</volume-number>
<restriction>0</restriction>
</info>
<pvd>
<volume-id>VIDEO</volume-id>
<system-id>CD-RTOS CD-BRIDGE</system-id>
<application-id></application-id>
<preparer-id/>
<publisher-id>S_O</publisher-id>
</pvd>
<filesystem>
</filesystem>
<segment-items>
<segment-item src="D:\tt\menu.mpg" id="segment-menu"/>
</segment-items>
<sequence-items>
<sequence-item src="D:\tt\video1.mpg" id="sequence-video1">
</sequence-item>
<sequence-item src="D:\tt\video2.mpg" id="sequence-video2">
</sequence-item>
</sequence-items>
<pbc>
<selection id="menu"> <!-- Sequence-0001-01 - 0:00:00.000 - menu.mpg -->
<bsn>1</bsn>
<loop jump-timing="immediate">1</loop>
<play-item ref="segment-menu"/>
<select ref="video1"/>
<select ref="video2"/>
</selection>
<playlist id="video1">
<next ref="menu"/>
<wait>0</wait>
<play-item ref="sequence-video1"/>
</playlist>
<playlist id="video2">
<next ref="menu"/>
<wait>0</wait>
<play-item ref="sequence-video2"/>
</playlist>
</pbc>
</videocd>The I craeted bin/cue and mounted them in a virtual CD drive (with daemon tools). When read the disc with PowerDVD and it neraly crashes because there is a endless loop of the still menu image (the image is encoded with TMPGEnc, resolution 480x576). When one track ended it returns back to the menu.
What I want know is:
1.) How can I stop the menu of being endless-looped?
2.) How can I create something in the menu I can select?
3.) How can I disable Next/Prev in the tracks?
<!DOCTYPE videocd PUBLIC "-//GNU//DTD VideoCD//EN" "http://www.gnu.org/software/vcdimager/videocd.dtd">
<!-- Made with VCDEasy v1.1.4 - http://www.vcdeasy.org -->
<!-- See http://www.vcdimager.org/guides/general_xml_structure.html to have details -->
<videocd xmlns="http://www.gnu.org/software/vcdimager/1.0/" class="svcd" version="1.0">
<option name="update scan offsets" value="true"/>
<option name="relaxed aps" value="false"/>
<info>
<album-id>VIDEO</album-id>
<volume-count>1</volume-count>
<volume-number>1</volume-number>
<restriction>0</restriction>
</info>
<pvd>
<volume-id>VIDEO</volume-id>
<system-id>CD-RTOS CD-BRIDGE</system-id>
<application-id></application-id>
<preparer-id/>
<publisher-id>S_O</publisher-id>
</pvd>
<filesystem>
</filesystem>
<segment-items>
<segment-item src="D:\tt\menu.mpg" id="segment-menu"/>
</segment-items>
<sequence-items>
<sequence-item src="D:\tt\video1.mpg" id="sequence-video1">
</sequence-item>
<sequence-item src="D:\tt\video2.mpg" id="sequence-video2">
</sequence-item>
</sequence-items>
<pbc>
<selection id="menu"> <!-- Sequence-0001-01 - 0:00:00.000 - menu.mpg -->
<bsn>1</bsn>
<loop jump-timing="immediate">1</loop>
<play-item ref="segment-menu"/>
<select ref="video1"/>
<select ref="video2"/>
</selection>
<playlist id="video1">
<next ref="menu"/>
<wait>0</wait>
<play-item ref="sequence-video1"/>
</playlist>
<playlist id="video2">
<next ref="menu"/>
<wait>0</wait>
<play-item ref="sequence-video2"/>
</playlist>
</pbc>
</videocd>The I craeted bin/cue and mounted them in a virtual CD drive (with daemon tools). When read the disc with PowerDVD and it neraly crashes because there is a endless loop of the still menu image (the image is encoded with TMPGEnc, resolution 480x576). When one track ended it returns back to the menu.
What I want know is:
1.) How can I stop the menu of being endless-looped?
2.) How can I create something in the menu I can select?
3.) How can I disable Next/Prev in the tracks?