|
View:
New views
6 Messages
—
Rating Filter:
Alert me
|
|
|
Spumux questionYou know how in the “spu” tag in a spumux XML control file, you can
specify “image="..."”, “highlight="..."” and “select="..."” tags? I’m curious to know, has anyone successfully created a menu using the “image=” tag? I ask because I’ve been staring at the relevant part of the source code for days, and I just can’t see how it could possibly work correctly. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
|
|
Re: Spumux questionOn Wed, 28 Jan 2009 11:33:01 +1300
Lawrence D'Oliveiro <ldo@...> wrote: > You know how in the “spu” tag in a spumux XML control file, you can > specify “image="..."”, “highlight="..."” and “select="..."” tags? I’m > curious to know, has anyone successfully created a menu using the > “image=” tag? > > I ask because I’ve been staring at the relevant part of the source code > for days, and I just can’t see how it could possibly work correctly. I always presumed that was for subtitles only. -Bill -- Sattre Press Tales of War http://sattre-press.com/ by Lord Dunsany info@... http://sattre-press.com/tow.html ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
|
|
Re: Spumux questionBill McClain wrote:
> > Lawrence D'Oliveiro <ldo@...> wrote: > >> You know how in the “spu” tag in a spumux XML control file, you can >> specify “image="..."”, “highlight="..."” and “select="..."” tags? I’m >> curious to know, has anyone successfully created a menu using the >> “image=” tag? > > I always presumed that was for subtitles only. Nevertheless, there is code, such as it is, in spumux for using it in menu buttons. I'm coming to the conclusion that that code doesn't make any sense at all. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
|
|
Re: Spumux questionLawrence D'Oliveiro a écrit :
> Bill McClain wrote: > > >> Lawrence D'Oliveiro <ldo@...> wrote: >> >>> You know how in the “spu” tag in a spumux XML control file, you can >>> specify “image="..."”, “highlight="..."” and “select="..."” tags? I’m >>> curious to know, has anyone successfully created a menu using the >>> “image=” tag? >> I always presumed that was for subtitles only. > > Nevertheless, there is code, such as it is, in spumux for using it in > menu buttons. > > I'm coming to the conclusion that that code doesn't make any sense at all. > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > _______________________________________________ > Dvdauthor-users mailing list > Dvdauthor-users@... > https://lists.sourceforge.net/lists/listinfo/dvdauthor-users Hello, Here is an example : <subpictures> <stream> <spu force="yes" start="00:00:00.00" image="picN0000.png" select="picS0000.png" highlight="picH0000.png" transparent="000000" > <button name="1" x0="86" y0="244" x1="246" y1="290" /> </spu> </stream> </subpictures> The 3 png files represent the "button" in his 3 differents states (normal, highlighted, selected). You spumux your "menu" movie with this xml file and you get a menu with a button. For more details, try the dvdmenu tool. ( http://dvdtools.sourceforge.net/ ) savi. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
|
|
Re: Spumux questionsavignien@... wrote:
> Here is an example : > <subpictures> > <stream> > <spu force="yes" start="00:00:00.00" image="picN0000.png" > select="picS0000.png" highlight="picH0000.png" transparent="000000" > > <button name="1" x0="86" y0="244" x1="246" y1="290" /> > </spu> > </stream> > </subpictures> Are you sure you've got that to work? Are you able to supply sample PNG files to demonstrate? > For more details, try the dvdmenu tool. ( http://dvdtools.sourceforge.net/ ) My QMake (version 2.01a) reports the following errors: uic: File generated with too old version of Qt Designer uic: File generated with too old version of Qt Designer uic: File generated with too old version of Qt Designer uic: File generated with too old version of Qt Designer ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
|
|
Re: Spumux questionLawrence D'Oliveiro a écrit :
> savignien@... wrote: > >> Here is an example : >> <subpictures> >> <stream> >> <spu force="yes" start="00:00:00.00" image="picN0000.png" >> select="picS0000.png" highlight="picH0000.png" transparent="000000" > >> <button name="1" x0="86" y0="244" x1="246" y1="290" /> >> </spu> >> </stream> >> </subpictures> > > Are you sure you've got that to work? Are you able to supply sample PNG > files to demonstrate? button. > >> For more details, try the dvdmenu tool. ( http://dvdtools.sourceforge.net/ ) > > My QMake (version 2.01a) reports the following errors: > > uic: File generated with too old version of Qt Designer > uic: File generated with too old version of Qt Designer > uic: File generated with too old version of Qt Designer > uic: File generated with too old version of Qt Designer > the cvs tree if you want to try it (it kind of works). The other solution is to compile it with qt3. I suppose that qt3 is still installed on most linux boxes. On my gentoo here are the commands I use to compile : $ cd dvdtools/dvdmenu $ export QTDIR=/usr/qt/3 $ /usr/qt/3/bin/qmake dvdmenu.pro $ make $ ./dvdmenu As stated is the homepage of dvdtools, the temporary files generated by dvdmenu are not removed, so you will be able to examine them. Sincerely, savi. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Dvdauthor-users mailing list Dvdauthor-users@... https://lists.sourceforge.net/lists/listinfo/dvdauthor-users |
| Free embeddable forum powered by Nabble | Forum Help |