Is there a platform independent way (Java?) to read an audio CD's TOC? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T14:23:13Zhttp://stackoverflow.com/feeds/question/74693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/74693/is-there-a-platform-independent-way-java-to-read-an-audio-cds-toc0Is there a platform independent way (Java?) to read an audio CD's TOC?pmr2008-09-16T17:15:22Z2008-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#748040Answer by Steve g for Is there a platform independent way (Java?) to read an audio CD's TOC?Steve g2008-09-16T17:27:34Z2008-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#2372972Answer by wnoise for Is there a platform independent way (Java?) to read an audio CD's TOC?wnoise2008-10-26T01:01:29Z2008-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>