Spumux question

View: New views
6 Messages — Rating Filter:   Alert me  

Spumux question

by Lawrence D'Oliveiro-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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.


------------------------------------------------------------------------------
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 question

by Bill McClain-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 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 question

by Lawrence D'Oliveiro-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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

Re: Spumux question

by savignien hercule :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Lawrence 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 question

by Lawrence D'Oliveiro-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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?

> 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 question

by savignien hercule :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Lawrence 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?
Yes, I'm sure. I use it a lot. I join the 3 png files that represent a
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
>
You're probably trying to compile it with Qt4. The Qt4 release of
dvdmenu is not ready yet. You can browse the dvdmenu-qt4 directory of
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

picH0000.png (2K) Download Attachment
picN0000.png (2K) Download Attachment
picS0000.png (2K) Download Attachment