Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
Apple Computing Products:
Running Windows on your Mac
couldntGetRequiredComponent in Quicktime For Java
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="crenouli" data-source="post: 22445"><p>I have to make a free software for children. It includes a webcam. I wanted to use « Quicktime for Java » but I have an error ‘couldntGetRequiredComponent’,</p><p></p><p>The only reason I found was on the forum "http://www.monkeybreadsoftware.de/realbasic/pluginhelp/quicktimesequencegrabber-qtgrabbermbs.shtml" :</p><p>“you have as a possible solution in case you really have recording hardware, that the QuickTime installation is without Authoring Support. The default QuickTime Installation installs only software needed for playing movies and displaying picture, but not to record them. You may need to do a custom installation to have the Authoring Support files installed.”.</p><p></p><p>My source code is :</p><p> QTSession.open();</p><p> myQTCanvas = new QTCanvas(QTCanvas.kPerformanceResize, 0.5F, 0.5F);</p><p> myQTCanvas.setMaximumSize(new Dimension(640, 480));</p><p> add("Center", myQTCanvas);</p><p> addNotify();</p><p> Insets insets = getInsets();</p><p> setBounds(0, 0, (insets.left + insets.right + kWidth), </p><p> (insets.top + insets.bottom + kHeight));</p><p> myGrabber = new SequenceGrabber();</p><p> SGVideoChannel myVideo =new SGVideoChannel(myGrabber);</p><p> myVideo.settingsDialog();</p><p> myVideo.setBounds(new QDRect(kWidth, kHeight));</p><p> myVideo.setUsage(seqGrabPreview | seqGrabRecord | seqGrabPlayDuringRecord); </p><p> mySGDrawer = new SGDrawer(myVideo);</p><p> myQTCanvas.setClient(mySGDrawer, true);</p><p> myGrabber.prepare(true,false);</p><p> myGrabber.startPreview();</p><p></p><p>Do you have a better code or do you know how to correct this error. Thanks for reply.</p></blockquote><p></p>
[QUOTE="crenouli, post: 22445"] I have to make a free software for children. It includes a webcam. I wanted to use « Quicktime for Java » but I have an error ‘couldntGetRequiredComponent’, The only reason I found was on the forum "http://www.monkeybreadsoftware.de/realbasic/pluginhelp/quicktimesequencegrabber-qtgrabbermbs.shtml" : “you have as a possible solution in case you really have recording hardware, that the QuickTime installation is without Authoring Support. The default QuickTime Installation installs only software needed for playing movies and displaying picture, but not to record them. You may need to do a custom installation to have the Authoring Support files installed.”. My source code is : QTSession.open(); myQTCanvas = new QTCanvas(QTCanvas.kPerformanceResize, 0.5F, 0.5F); myQTCanvas.setMaximumSize(new Dimension(640, 480)); add("Center", myQTCanvas); addNotify(); Insets insets = getInsets(); setBounds(0, 0, (insets.left + insets.right + kWidth), (insets.top + insets.bottom + kHeight)); myGrabber = new SequenceGrabber(); SGVideoChannel myVideo =new SGVideoChannel(myGrabber); myVideo.settingsDialog(); myVideo.setBounds(new QDRect(kWidth, kHeight)); myVideo.setUsage(seqGrabPreview | seqGrabRecord | seqGrabPlayDuringRecord); mySGDrawer = new SGDrawer(myVideo); myQTCanvas.setClient(mySGDrawer, true); myGrabber.prepare(true,false); myGrabber.startPreview(); Do you have a better code or do you know how to correct this error. Thanks for reply. [/QUOTE]
Verification
Name this item 🌈
Post reply
Forums
Apple Computing Products:
Running Windows on your Mac
couldntGetRequiredComponent in Quicktime For Java
Top