Is there a platform independent way (Java?) to read an audio CD's TOC? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:23:13Z http://stackoverflow.com/feeds/question/74693 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/74693/is-there-a-platform-independent-way-java-to-read-an-audio-cds-toc 0 Is there a platform independent way (Java?) to read an audio CD's TOC? pmr 2008-09-16T17:15:22Z 2008-11-03T13:26:06Z <p>I would like to avoid using native libaries if at all possible. Surely there is a better way to solve this issue for Linux, Windows and Mac OS X.</p> http://stackoverflow.com/questions/74693/is-there-a-platform-independent-way-java-to-read-an-audio-cds-toc/74804#74804 0 Answer by Steve g for Is there a platform independent way (Java?) to read an audio CD's TOC? Steve g 2008-09-16T17:27:34Z 2008-09-16T17:27:34Z <p>You can use the Java Sound API. I believe this is part of java 5. This may allow you to do what you want to do.</p> <p><a href="http://java.sun.com/products/java-media/sound/" rel="nofollow">http://java.sun.com/products/java-media/sound/</a> </p> <p>here are some examples:</p> <p><a href="http://www.jsresources.org/examples/" rel="nofollow">http://www.jsresources.org/examples/</a></p> http://stackoverflow.com/questions/74693/is-there-a-platform-independent-way-java-to-read-an-audio-cds-toc/237297#237297 2 Answer by wnoise for Is there a platform independent way (Java?) to read an audio CD's TOC? wnoise 2008-10-26T01:01:29Z 2008-10-26T01:01:29Z <p>Sorry, you're out of luck. You'll need JNI, and it'll be obnoxiously different for different platforms. The base java libraries cover tasks and hardware that are pretty much universal. CD drives weren't and aren't considered so.</p>