vote up 0 vote down star

I am thinking i might want to port a lib to read a DVD filesystem. I am not talking about movies but datadisc. Theres existing code for me to do raw reads from the disc. I need code that request this data and allow me to browse files on the disc. What lib can i use for this?

-edit- NOTE: I am using an OSless hardware. Ppl seem to miss that but Alnitak caught it and gave me a great answer :)

flag

41% accept rate
We didn't "miss" it -- you didn't say it. – Charles Duffy Apr 11 at 21:12
...which is to say -- you explicitly asked for a library, but didn't explain why. Folks often end up "going down rabbit holes" doing things the hard way when an easy way is available; explaining why you need to do it the hard way means getting better answers. – Charles Duffy Apr 11 at 21:14
Charles Duffy: I see. I assumed the hardware tag was all i needed to say. Also the answers that said use the os didnt answer my question – acidzombie24 Apr 12 at 1:13

3 Answers

vote up 2 vote down check

You need libudf which is part of GNU libcdio.

link|flag
vote up 0 vote down

Why not just use the same I/O libs you'd use to read files from a hard disk?

link|flag
vote up 0 vote down

If you want to browse files, why not let your operating system do the heavy lifting? Given that a modern OS will already have everything it needs to mount filesystems from DVDs -- and that there will be numerous people already using and debugging this code, as opposed to a smaller and more focused userbase for a userspace library such as libdvdread -- it seems silly not to leverage them.

link|flag
you beat me by 7 seconds! :) – Kip Apr 11 at 14:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.