Java class for extracting LTC SMPTE timecode from an audio signal?
Is anyone aware of an existing Java library for decoding a SMPTE signal? I'm familiar with libltcsmpte and Javier Jaimovitch's Matl开发者_C百科ab code, which both do what I want, except that they're not coded in Java. I'm trying to save myself the trouble of rewriting their code. Does anyone know if this has been done already?
Many thanks,
D.
I know this doesn't answer your question directly, but if you already have familiarity with libltcsmpte and accessing native code isn't a deployment issue for you, perhaps consider using JNA for direct library access. There is additional performance overhead above a normal JNI call, but it might get you something working more quickly than building it yourself (assuming no other Java library exists for this).
精彩评论