tags:

views:

490

answers:

2
+2  Q: 

DVD menu coding

As a programmer I have no idea how one would go about programming menus for a DVD, I have heard that this is possible, and even seen basic games using DVD menus - although it may very well be a closed-system. Is it even possible and if so, what language, compilers etc exist for this?

+2  A: 

There are a couple of open source projects that can create DVDs plus menus. I recently used dvd-slideshow to create a simple dvd with menus etc. Another one is DVD Styler. All of these programs are basically a front-end for various command-line tools for encoding, menu creation etc. Since these are open source projects you can have a look at the source and check out how they accomplish this.

cschol
+1  A: 

The DVD menus that appear on a typical movie DVD are described in the DVD-Video standard: wikipedia.

If you are trying to create this type of menu, there are many programs that will create these. I have had luck with DVD Styler.

If you are creating an application that is distributed on a DVD, the choice of programming language is up to you. I suppose you could use some sort of OS auto-start feature to run an application that would bring up a menu for the user.

Kyle Renfro
I am not actually talking about an application housed on a DVD, I am talking about codein for the menu - as many games exist that run _as_ a DVD menu and as far as I am aware there is a turing complete language available to DVD authors
DAC