OS for DVD players

Discussions on more advanced topics such as monolithic vs micro-kernels, transactional memory models, and paging vs segmentation should go here. Use this forum to expand and improve the wiki!
Post Reply
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

OS for DVD players

Post by GAT »

A DVD player has the suitable hardware for more use than just DVD's.
Would it be possible to actually code the menu systems in a way to make an operating system?
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
User avatar
xenos
Member
Member
Posts: 1118
Joined: Thu Aug 11, 2005 11:00 pm
Libera.chat IRC: xenos1984
Location: Tartu, Estonia
Contact:

Re: OS for DVD players

Post by xenos »

I guess that depends on what's inside. Most consumer electronics devices contain some kind of CPU / application processor and some piece of software. If that software is stored in a re-writable memory, there is at least a small chance that it can be replaced with custom software. However, it is usually very hard to actually write such software, and even harder to place it on the device. The main problem is that there is only little or no documentation about the hardware internals.

If you are very lucky, someone has already disassembled your DVD player model and figured out which chips are in there, maybe there are even datasheets available for those chips.

Just out of curiosity: Which DVD player model do you have? Have you ever disassembled it and figured out what's inside?
Programmers' Hardware Database // GitHub user: xenos1984; OS project: NOS
User avatar
VolTeK
Member
Member
Posts: 815
Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation

Re: OS for DVD players

Post by VolTeK »

VCR os.. :lol: Storing homework on a VHS tape
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

Re: OS for DVD players

Post by GAT »

I was more thinking along the lines of how the menus on DVD's work. You could set it up to use the up/down/left/right arrows to move a cursor instead of selecting menu items. If you wrote it into the DVD disc then it could run on any DVD player.
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
User avatar
xenos
Member
Member
Posts: 1118
Joined: Thu Aug 11, 2005 11:00 pm
Libera.chat IRC: xenos1984
Location: Tartu, Estonia
Contact:

Re: OS for DVD players

Post by xenos »

Maybe this could help you:

http://dvdauthor.sourceforge.net/doc/r1741.html

The syntax for the menu and title selection is indeed a very simple "programming language", so at least you can create some rather arbitrary (although still very limited) menu structure. But I wouldn't call at an OS.
Programmers' Hardware Database // GitHub user: xenos1984; OS project: NOS
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Re: OS for DVD players

Post by Brynet-Inc »

Most DVD players have a SoC that can handle the DVD menu instruction bytecode, a general purpose core that runs the firmware with the GUI and handles user input.. audio/video decoding probably takes place on a hardware accelerator.

Some players do support firmware updates.. so assuming you can figure out the firmware update format and the GP core architecture, then sure, maybe.

You'll need to reverse engineer just about everything, no documentation is likely to exist.
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
User avatar
Coty
Member
Member
Posts: 286
Joined: Thu Feb 12, 2009 5:12 pm

Re: OS for DVD players

Post by Coty »

GhostXoPCorp wrote:VCR os.. :lol: Storing homework on a VHS tape
That's actually somewhat practicle :D Of course, assuming that they're not entirely hardware controlled... Be cool to turn one into a terminal and save data to tape though...
My hero, is Mel.
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

Re: OS for DVD players

Post by GAT »

You could rewire the RCA in/out ports on the VCR to a serial or parallel cable and then use it to read/write raw data to VCR tapes.
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
OSwhatever
Member
Member
Posts: 595
Joined: Mon Jul 05, 2010 4:15 pm

Re: OS for DVD players

Post by OSwhatever »

I don't know about DVD players but in setup top boxes and satellite tuners, for paid TV for example MIPS processors have been often chosen. They are often programmed in some high level language like Java and sometimes it is very noticeable as some of the products have very sluggish menus. However, Java done right with the correct CPU is usually fine.

On the OS side some Java OSes have been used, and I'm sure Linux is used as well. I think there is a large variety of OSes running on DVD players so I think it can be difficult to know them all. Does anybody have a real world example?
User avatar
Rusky
Member
Member
Posts: 792
Joined: Wed Jan 06, 2010 7:07 pm

Re: OS for DVD players

Post by Rusky »

Blu-ray disks can have Java programs with quite a lot more capability than DVD menus. Blu-ray players are probably also thus more susceptible to firmware update hacking. Both of those might be interesting.
User avatar
xenos
Member
Member
Posts: 1118
Joined: Thu Aug 11, 2005 11:00 pm
Libera.chat IRC: xenos1984
Location: Tartu, Estonia
Contact:

Re: OS for DVD players

Post by xenos »

OSwhatever wrote:I don't know about DVD players but in setup top boxes and satellite tuners, for paid TV for example MIPS processors have been often chosen. They are often programmed in some high level language like Java and sometimes it is very noticeable as some of the products have very sluggish menus. However, Java done right with the correct CPU is usually fine.
I have a satellite receiver with a BCM7405 MIPS CPU running Linux. On top of that there is a software named Enigma2 which is written mostly in Python with a bit C++ and which generates most of the menus. One can easily add plugins written in Python and there are lots of them on the web. It's really fun to play with this box :)
Programmers' Hardware Database // GitHub user: xenos1984; OS project: NOS
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

Re: OS for DVD players

Post by GAT »

Does anyone know what language DVD menus are written in? My guess is XML or the like.
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

Re: OS for DVD players

Post by GAT »

Found it!
IS VM DVD command set.
Learning....
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
Post Reply