Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am thinking of creating a project for controlling my integrated webcam in java.
I have tried searching and found that we need to use JMF for this kinda stuff.
But i couldn't find any good tuts or books which explains JMF from scratch.
I've actually had more success using Xuggler than FMJ or JMF. Here is a demo program for displaying from a webcam:
https://github.com/artclarke/xuggle-xuggler/blob/master/src/com/xuggle/mediatool/demos/DisplayWebcamVideo.java
The following link explains JMF with nice examples:
http://grack.com/downloads/school/enel619.10/report/java_media_framework.html
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I studied some tutorials in domino designer 9 now I want to make java agent but I didn't find any tutorials, Can any one give me good tutorials to learn java agent please?
I don't know that you'll find a clear, concise step-by-step tutorial. I've found some generic code samples, and there are samples for specific tasks (you know, like "How do I send a message?") What I did to learn was to take a small task, perhaps one already written in LotusScript and make it in Java. Open a database. Open a view. Create a document. Delete a document.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to use the JAVA OCR : http://sourceforge.net/p/javaocr/
I can't find the api documentation and the demo. In the download file, I have only the jars.
Can somebody help me?
Thanks
You can find demo code at OCRScannerDemo for old api, for new api new api demo
About api javadoc you can generate it with maven.
To get source code : git clone http://git.code.sf.net/p/javaocr/source javaocr-source
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm writing an IDE in Java and I'm looking for a library that will highlight the code for me. I've found plenty for javascript, but that wont do me any good. I'd love to write my own but I don't have the foggiest idea where to start. Are there any Java libraries out there?
Take a look at jsyntaxpane; it may be the easiest starting point rather than starting from scratch.
I've used this library and it does the job pretty well: RSyntaxTextArea
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am trying to learn how to connect my Java code to an MySQL database. I am looking for some good video tutorials (if none exists, I'd be interested in non-video tutorials). Thanks in advance, this will really help me!
Start with sun tutorial. IMHO its the best.
java2s will help you
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking to parse mp4 for my .net application. I couldn't find any mp4 parser in .net.
Found mp4parser which is in java.
Please let me know is there any C# version available? if no, is it possible to use mp4parser with .net?
I would suggest utilizing FFMPEG to accomplish your task. More information on using ffmpeg with C# can be found at :
http://it.toolbox.com/blogs/rymoore/using-c-ffmpeg-11334
Sourceforge has an example project integrating ffmpeg into a c# application.
http://sourceforge.net/projects/sharpffmpeg/files/
Here ais a stackoverflow discussion relating to c# and ffmpeg. You may also find this useful.
Solid FFmpeg wrapper for C#/.NET