Playing video from a capture device - Out of memory for video buffers?

Hello guys, I'm having problems playing video from a video capture device when not using JMStudio. When I use JMStudio, the video plays real time with no problems, but when I use code taken from a java book which is a simple Media Player, I get the following error:
"Error is Error: Out of memory for video buffers."
My capture device is working and I don't know why i get this error when trying to watch the video feed from a program other than JMStudio. I also tried different code that has worked in the past with the same exact capture device and I still get the same error. Please help, I have no clue at this point. The code for the simple media player is below, it's taken out of the book "Java: How to Program (4th edition)":
Thanks in advance, I am very greatful
Miguel
device info: vfw:Microsoft WDM Image Capture (Win32):0
When I type the locator, I am typing vfw://0, I also tried just vfw://
and I get the same error.
// Fig. 22.1: SimplePlayer.java
// Opens and plays a media file from
// local computer, public URL, or an RTP session
// Java core packages
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
// Java extension packages
import javax.swing.*;
import javax.media.*;
public class SimplePlayer extends JFrame {
     // Java media player
     private Player player;
// visual content component
private Component visualMedia;
// controls component for media
private Component mediaControl;
// main container
private Container container;
// media file and media locations
private File mediaFile;
private URL fileURL;
// constructor for SimplePlayer
public SimplePlayer()
super( "Simple Java Media Player" );
container = getContentPane();
// panel containing buttons
JPanel buttonPanel = new JPanel();
container.add( buttonPanel, BorderLayout.NORTH );
// opening file from directory button
JButton openFile = new JButton( "Open File" );
buttonPanel.add( openFile );
// register an ActionListener for openFile events
openFile.addActionListener(
// anonymous inner class to handle openFile events
new ActionListener() {
// open and create player for file
public void actionPerformed( ActionEvent event )
mediaFile = getFile();
if ( mediaFile != null ) {
// obtain URL from file
try {
fileURL = mediaFile.toURL();
// file path unresolvable
catch ( MalformedURLException badURL ) {
badURL.printStackTrace();
showErrorMessage( "Bad URL" );
makePlayer( fileURL.toString() );
} // end actionPerformed
} // end ActionListener
); // end call to method addActionListener
// URL opening button
JButton openURL = new JButton( "Open Locator" );
buttonPanel.add( openURL );
// register an ActionListener for openURL events
openURL.addActionListener(
// anonymous inner class to handle openURL events
new ActionListener() {
// open and create player for media locator
public void actionPerformed( ActionEvent event )
String addressName = getMediaLocation();
if ( addressName != null )
makePlayer( addressName );
} // end ActionListener
); // end call to method addActionListener
// turn on lightweight rendering on players to enable
// better compatibility with lightweight GUI components
Manager.setHint( Manager.LIGHTWEIGHT_RENDERER,
Boolean.TRUE );
} // end SimplePlayer constructor
// utility method for pop-up error messages
public void showErrorMessage( String error )
JOptionPane.showMessageDialog( this, error, "Error",
JOptionPane.ERROR_MESSAGE );
// get file from computer
public File getFile()
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(
JFileChooser.FILES_ONLY );
int result = fileChooser.showOpenDialog( this );
if ( result == JFileChooser.CANCEL_OPTION )
return null;
else
return fileChooser.getSelectedFile();
// get media location from user input
public String getMediaLocation()
String input = JOptionPane.showInputDialog(
this, "Enter URL" );
// if user presses OK with no input
if ( input != null && input.length() == 0 )
return null;
return input;
// create player using media's location
public void makePlayer( String mediaLocation )
// reset player and window if previous player exists
if ( player != null )
removePlayerComponents();
// location of media source
MediaLocator mediaLocator =
new MediaLocator( mediaLocation );
if ( mediaLocator == null ) {
showErrorMessage( "Error opening file" );
return;
// create a player from MediaLocator
try {
player = Manager.createPlayer( mediaLocator );
// register ControllerListener to handle Player events
player.addControllerListener(
new PlayerEventHandler() );
// call realize to enable rendering of player's media
player.realize();
// no player exists or format is unsupported
catch ( NoPlayerException noPlayerException ) {
noPlayerException.printStackTrace();
// file input error
catch ( IOException ioException ) {
ioException.printStackTrace();
} // end makePlayer method
// return player to system resources and
// reset media and controls
public void removePlayerComponents()
// remove previous video component if there is one
if ( visualMedia != null )
container.remove( visualMedia );
// remove previous media control if there is one
if ( mediaControl != null )
container.remove( mediaControl );
// stop player and return allocated resources
player.close();
// obtain visual media and player controls
public void getMediaComponents()
// get visual component from player
visualMedia = player.getVisualComponent();
// add visual component if present
if ( visualMedia != null )
container.add( visualMedia, BorderLayout.CENTER );
// get player control GUI
mediaControl = player.getControlPanelComponent();
// add controls component if present
if ( mediaControl != null )
container.add( mediaControl, BorderLayout.SOUTH );
} // end method getMediaComponents
// handler for player's ControllerEvents
private class PlayerEventHandler extends ControllerAdapter {
// prefetch media feed once player is realized
public void realizeComplete(
RealizeCompleteEvent realizeDoneEvent )
player.prefetch();
// player can start showing media after prefetching
public void prefetchComplete(
PrefetchCompleteEvent prefetchDoneEvent )
getMediaComponents();
// ensure valid layout of frame
validate();
// start playing media
player.start();
} // end prefetchComplete method
// if end of media, reset to beginning, stop play
public void endOfMedia( EndOfMediaEvent mediaEndEvent )
player.setMediaTime( new Time( 0 ) );
player.stop();
} // end PlayerEventHandler inner class
// execute application
public static void main( String args[] )
SimplePlayer testPlayer = new SimplePlayer();
testPlayer.setSize( 300, 300 );
testPlayer.setLocation( 300, 300 );
testPlayer.setDefaultCloseOperation( EXIT_ON_CLOSE );
testPlayer.setVisible( true );
} // end class SimplePlayer

somebody? anybody? I know there are some JMF professionals in here, any ideas?
I was reading the Sun documentation and it said something about increasing the JVM memory buffer or something? Well, i'm just clueless at this point.
Help a brotha out!

Similar Messages

  • Transmitting and playing from same capture device simultaneously?

    I am creating a videoconference software. For that I need to display the video from my system and at the same time need to transmit the video to a remote system.
    I have no idea how to do this. I have created a data source for the capturing device and using that for creating player and processor to play and transmit respectively.
    But the problem is the player is stoping when the video is getting transmitted.
    Can some one tell me how can I solve this problem.
    Thanking you in advance,
    R.Ravi Kiran

    Maybe cloning can do some
    Or manually drop data from datasource to each module

  • Create from Web Page and Out Of Memory

    My machine is Windows XP Prof, 3+ GB of memory, 10's of GB of free hard drive space.
    I create a PDFs from HTML pages located on my local drive. I am not making a PDF from HTML pages served by a Web Server. They are not located on some network device.
    With Acrobat 7 Professional, I was able to create a PDF from HTML pages without any problem using the Create From Web Page menu option. It might have been slow, but it would predictably create a PDF. The final PDF might be as large as 72 or 130 MB.
    I recently upgraded to Acrobat Pro Extended version 9. When I make some small PDFs (4-5 thousand pages) it seems to work okay. However, if I make the full PDF (about 10-15 thousand pages), Acrobat produces an out of memory error.
    I have tried a number of things, but I still get the error. In the past I have had trouble like this with Acrobat 8 Prof on the Mac (but I don't remember an actual Out Of Memory message box).
    Is there some setting can change, or some procedure that I can get my work done. It appears to me to be a bug in Acrobat 9, but if I could get a workaround for now, I would greatly appreciate it.
    Thanks.

    Even though I an using the Create from Web Page function, I am accessing files which my company has produced. They are located on my local system. I am not accessing them via a web server.
    I can make a file with 1 level. I can make a file with a couple of thousand pages. Even 8400 pages. However, when I try to make a PDF of the full site Acrobat flakes out and dies. When it hits around 13,300 pages, it dies.
    The troubling thing for me is that I was able to do the same thing in Acrobat Pro 7. I made a file with almost 14,500 pages. Because of the way Acrobat must be installed in Windows, I can't easily go back to version 7. It is a real pain not to be able to do something in the "New and Improved" version that I was able to do in the "nasty old" version.
    It would be helpful if Acrobat had better logging and error logging facilities. Maybe there is one page that is hitting Acrobat's bug, and if I could eliminate or change that page I could continue, but there is no way of knowing (as far as I know).

  • Device out of Memory - N95

    Hi.
    If i use my phone to surf the web i get the msg, phone out of memory please close some applications, well my web browser is the only app open, is there a way to stop this message or assign more virtual memory or something?

    Hi Thiartc,
    My guess is that you wouldn't hit this problem if you open a small page like google.com or discussions.nokia-asia.com.
    I guess we've only 2 option:
    1. Avoid large sites (which really isn't what we want. )
    2. Take Android's advise and flash the latest firmware. Which can be done at http://www.nokia-asia.com/A4416041.
    However, the later will result in everything to be lost on your N95. Thus, you'll want to sync/backup your data and prepare to re-install some of your applications after which.
    The latest firmware for N95 should be 12.0.0.14. You can check your level by keying in *#0000#.
    Do let us know the results if you decide to flash.
    Cheers.

  • What is the best way to capture RGB8 image to memory for later write to disk?

    HI-
    I have been using the code below for some time now but wonder if an expert can take a look and let me kown if there are ways to improve it.  Problem I run into is that I preallocate the memory beforehand (camera.buffering[]), and with a 5 MP camera, this takes up a lot of RAM.  It seems like when I am running this program in debug mode all day and constantly start/stop it without allowing it to free the memory gracefully, i eventually bog the system and start getting Out of Memory error -12, in other places in my code such as DisplayBitmap or GetBitmapfrom File.  Is this all related to how much memory I am trying to allocate prior to begining the camera capture routine below?  Am I not allocating and free-ing it properly?
    Code is below for how I grab the image and then send to memory usign memcpy.  Is there a better, more efficient or faster method?  I have removed error checking/etc from code below simply to save space. This operates at 15 fps.   
    I also included my allocation and free-ing code, too. 
    Thanks in advance.
    Blue
    //caemra capture loop//
    camera.dxerror = IMAQdxGrab (camera.session, camera.image, 1, &camera.bufNum);          
    stat = imaqRotate2 (rotateimage, camera.image, camera.rotate_image, pixval, IMAQ_BILINEAR, TRUE);    
    stat = imaqScale (scaledimage, rotateimage, 4, 4, IMAQ_SCALE_SMALLER,IMAQ_NO_RECT);          
    stat = imaqGetImageInfo(camera.image,&camera.info);
    stat = imaqDisplayImage (scaledimage, 0, FALSE);         
    memcpy (camera.buffering[camera.count], camera.info.imageStart, camera.info.pixelsPerLine*camera.CAMY*camera.bytesperpixel);   
    //memory allocation code//
     camera.buffering = (int **)malloc(camera.maxcount*sizeof(int*));
     for(i=0;i<camera.maxcount;i++)
          camera.buffering[i] = (int *)malloc(camera.info.pixelsPerLine*camera.CAMY*camera.bytesperpixel); 
    // free allocated memory code//
     for(x=0;x<camera.maxcount;x++)
             free(camera.buffering[x]);
    free(camera.buffering);

    How many images are you storing in RAM?  Typically when I need to work with tens, hundreds, or even thousands of images, I save them to the hard drive after I capture them as a PNG with 1000 quality.  Sometimes I process them before saving, sometimes I process them offline from the saved images depending on the application.  If you don't need all of the images simultaneously in memory at once, just save them to PNG.  If you only process one image at a time, only allocate enough memory for the processing you need to perform on a single image.
    www.movimed.com - Custom Imaging Solutions

  • "General Error" and "Out of Memory" for only certain files?

    I have Final Cut Express 4 on Mac OS X Leopard and it has been working fine, up until now.
    For some reason, when I try to view two clips in the tab to the left of the screen to find sections of them to put into my project, I get a message that says, "General Error" and when I click okay it says, "Error: Out of Memory". They are both mp4 files, and are 242.9 MB and 294.2 MB, and I have viewed them both on Quicktime. I don't understand why it is saying that it is out of memory when I still have 7 GB left on my computer and it still lets me view and add other files into my sequence.
    Can someone help me out and tell me how to fix this? I'd really appreciate advise!

    MPEG-4 is not a format that works in FCE. You'll have to convert it to one of FCE's format. Without knowing details about what the original format is it's impossible to say what you should convert it to.

  • Play mp4 from non mac device

    I have created an MP4 using iMovie 10.0.5, and saved it to my USB Flash drive using "share to file". I would like to use the USB Flash drive to play this movie on my friend's TV. His TV allows him to plug in a USB stick and play movies. When his TV accesses the mp4, an error saying that the operation is not allowed comes up. Older versions of iMovie allowed this. How do I get this version of iMovie to do this?

    Now that the question has been answered, please click on the or buttons over posts as appropriate...
    x

  • Since downloading latest software update for "numbers", Mac is now extremely slow at loading anything and has trouble playing videos (buffering). Also when put Mac to sleep, it wakes up by itself and then back to sleep, etc. Please help!

    Mac extremely slow since recently downloading latest "numbers" software update. Also Mac when put to sleep, will now wake up by itself and go back to sleep etc, etc. Please Help!

    Macsimple wrote:
    Sorry, I am running version 3.2.2. (1878) for Numbers
    OS X 10.9.4
    OK, thanks. First, open Disk Utility and the Repair Disk Permissions on your internal HD. You can find DU in Applications - Utilitie. After doing so please restart in Safe Mode, this is easily done by holding down the Shift Key on your keyboard when you hear the start up tone, you will see a progress bar appear letting yuo know it's starting in Safe Mode. Then reset the SMC and PRAM, instructions can be found by clicking iMac SMC and PRAM reset. Then retest.

  • I tried to utilise iCloud with iPhoto. since then all that happens is that I end up with the timer wheel and eventually the mac runs out of memory for everything. How do I get iPhoto to work normally?

    How do I reset the settings on iPhoto so that it forgets I wanted to use iCloud with iPhoto ?

    iPhoto 6 and later: Rebuilding the iPhoto library

  • Why do I get out of memory for applications on start up Mac OS10.6.8 with Firefox 7.0.1?

    Using Firefox 7.0.1 on a MacBook Pro with OS 10.6.8 and NO OTHER applications running, I am consistently getting the message that Your Mac OS X startup disk has no mor space for application memory. It is happening whenever I try to do something using Firefox or use any application now. I have deleted six applications in the app folder and that has made no difference. I see a note about iPhoto plugin 6. I have iPhoto 9 app.

    Hi RJBP-
    Here is a Support article on how to troubleshoot Firefox with high memory usage:
    [[High memory usage]]
    Hope that helps.

  • Out of Memory for 6.0 sp2

    We received the following stack trace in the weblogic logs
    weblogic.log
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <main> <system> <> <000216> <WebLogic Server started>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <System has file
    descriptor limits of - soft: '1024', hard: '1024'>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <Using effective
    file descriptor limit of: '1024' open sockets/files.>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <Allocating: '3'
    POSIX reader threads>
    ####<Nov 16, 2001 7:33:57 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <system> <> <101047>
    <[WebAppServletContext(536060,console)] *.html: init>
    ####<Nov 16, 2001 7:33:57 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <system> <> <101047>
    <[WebAppServletContext(536060,console)] *.html: Using standard I/O>
    ####<Nov 16, 2001 7:36:11 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <> <> <101047>
    <[WebAppServletContext(2021663,DefaultWebApp_danvers)] /classes: init>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-69> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-69> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:55 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:38:51 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-27> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:46:40 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    ####<Nov 18, 2001 7:47:05 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:08:40 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '12' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 9:09:01 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '12' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:45:30 AM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:14:01 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '3' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    ####<Nov 19, 2001 1:54:36 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 16, 2001 7:19:11 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <ListenThread> <system> <> <000202> <ListenThread listening on
    port 9009>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <ListenThread> <system> <> <000202> <ListenThread listening on
    port 9009>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <main> <system> <> <000216> <WebLogic Server started>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-69> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-69> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:50 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:55 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:36:44 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:38:04 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '10' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:38:51 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-27> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:40:19 PM GMT> <Error> <RJVM> <danvers> <danvers>
    <ExecuteThread: '7' for queue: 'default'> <> <> <000000> <Failure in
    heartbeat trigger for RJVM: '-4587908185898992697C:164.179.193.100'>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:41:50 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-47> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:41:59 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <ExecuteThread: '4' for queue: 'default'> <system> <> <000000>
    <OutOfMemoryError in Adapter>
    ####<Nov 18, 2001 7:42:11 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '4' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:42:21 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-17> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:42:30 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-17> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:44:46 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '6' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:45:18 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '7' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:45:27 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '14' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 7:45:48 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '14' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    ####<Nov 18, 2001 7:45:56 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '14' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:46:22 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-77> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:46:27 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '13' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 7:46:40 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:47:05 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:47:22 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '9' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    ####<Nov 18, 2001 7:51:55 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-79> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 8:14:57 PM GMT> <Error> <RJVM> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000> <Failure in
    heartbeat trigger for RJVM: '7929968200845233656C:164.179.193.100'>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:08:40 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '12' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:09:01 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '12' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:45:30 AM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:14:01 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '3' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:54:36 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 2:26:37 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    We are not using the server as a web server we are running a 3rd party
    application in the server configured with 1/2 Gb of memory. My guess is
    that they are not
    releasing some resources but if you BEA folks can point me into some
    direction
    that would be helpful. The vendor says its a weblogic problem which I
    doubt.

    Please give the details of java parameters like heap size, ratios etc.
    Look at the following link for various hotspot options.
    http://java.sun.com/docs/hotspot/VMOptions.html.
    You can try with -verbosegc option, which splits all gc statistics to
    know whether heap size is runningout of some other problem.
    Thread dump will helpful to analyze the problem.
    ctrl+\ ( ctrl + backslash) for solaris, ctrl+Break for windows will
    be give the thread dump.
    --sreeni.
    Larry Presswood <[email protected]> wrote in message news:<[email protected]>...
    Yes this is true but was wandering if the stack trace could point to anything
    in particular like the jdk bug in 1.3.x which will give outof memory after 400
    or
    so ejb creations. Also would have to run under optimizeit for days which is
    not
    entirely desirable in QA but will do if not other help can be found.
    Dimitri Rakitine wrote:
    You can always use OptimizeIt to see what leaks memory.
    Larry Presswood <[email protected]> wrote:
    We received the following stack trace in the weblogic logs
    weblogic.log
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <main> <system> <> <000216> <WebLogic Server started>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <System has file
    descriptor limits of - soft: '1024', hard: '1024'>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <Using effective
    file descriptor limit of: '1024' open sockets/files.>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Info> <Posix Performance Pack>
    <danvers> <danvers> <ListenThread> <system> <> <000000> <Allocating: '3'
    POSIX reader threads>
    ####<Nov 16, 2001 7:33:57 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <system> <> <101047>
    <[WebAppServletContext(536060,console)] *.html: init>
    ####<Nov 16, 2001 7:33:57 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <system> <> <101047>
    <[WebAppServletContext(536060,console)] *.html: Using standard I/O>
    ####<Nov 16, 2001 7:36:11 PM GMT> <Info> <HTTP> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <> <> <101047>
    <[WebAppServletContext(2021663,DefaultWebApp_danvers)] /classes: init>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-69> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-69> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:55 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:38:51 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-27> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:46:40 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    ####<Nov 18, 2001 7:47:05 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:08:40 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '12' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 9:09:01 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '12' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:45:30 AM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:14:01 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '3' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    ####<Nov 19, 2001 1:54:36 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 16, 2001 7:19:11 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <ListenThread> <system> <> <000202> <ListenThread listening on
    port 9009>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <ListenThread> <system> <> <000202> <ListenThread listening on
    port 9009>
    ####<Nov 16, 2001 7:33:30 PM GMT> <Notice> <WebLogicServer> <danvers>
    <danvers> <main> <system> <> <000216> <WebLogic Server started>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-69> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:19:17 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-69> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:50 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:35:55 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'> <system> <>
    <000000> <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:36:44 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '11' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:38:04 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '10' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:38:51 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-27> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:40:19 PM GMT> <Error> <RJVM> <danvers> <danvers>
    <ExecuteThread: '7' for queue: 'default'> <> <> <000000> <Failure in
    heartbeat trigger for RJVM: '-4587908185898992697C:164.179.193.100'>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:41:50 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-47> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:41:59 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <ExecuteThread: '4' for queue: 'default'> <system> <> <000000>
    <OutOfMemoryError in Adapter>
    ####<Nov 18, 2001 7:42:11 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '4' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:42:21 PM GMT> <Error> <Adapter> <danvers> <danvers>
    <Thread-17> <system> <> <000000> <OutOfMemoryError in Adapter>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:42:30 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-17> <system> <> <000000> <Error in Dispatcher>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:44:46 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '6' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:45:18 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '7' for queue: 'default'> <system> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:45:27 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '14' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 7:45:48 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '14' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    ####<Nov 18, 2001 7:45:56 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '14' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    ####<Nov 18, 2001 7:46:22 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-77> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 7:46:27 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '13' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    ####<Nov 18, 2001 7:46:40 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:47:05 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000>
    <ExecuteRequest failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 7:47:22 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '9' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    ####<Nov 18, 2001 7:51:55 PM GMT> <Error> <AdapterDispatcher> <danvers>
    <danvers> <Thread-79> <system> <> <000000> <Error in Dispatcher>
    ####<Nov 18, 2001 8:14:57 PM GMT> <Error> <RJVM> <danvers> <danvers>
    <ExecuteThread: '13' for queue: 'default'> <> <> <000000> <Failure in
    heartbeat trigger for RJVM: '7929968200845233656C:164.179.193.100'>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:08:40 PM GMT> <Error> <Posix Performance Pack>
    <danvers> <danvers> <ExecuteThread: '12' for queue: 'default'> <> <>
    <000000> <Uncaught Throwable in processSockets>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 18, 2001 9:09:01 PM GMT> <Error> <Performance Pack> <danvers>
    <danvers> <ExecuteThread: '12' for queue: 'default'> <> <> <000000>
    <Muxer got error: null>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:45:30 AM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:14:01 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '3' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 1:54:36 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    ####<Nov 19, 2001 2:26:37 PM GMT> <Error> <Kernel> <danvers> <danvers>
    <ExecuteThread: '5' for queue: 'default'> <> <> <000000> <ExecuteRequest
    failed>
    We are not using the server as a web server we are running a 3rd party
    application in the server configured with 1/2 Gb of memory. My guess is
    that they are not
    releasing some resources but if you BEA folks can point me into some
    direction
    that would be helpful. The vendor says its a weblogic problem which I
    doubt.--
    Dimitri

  • Play video from video capture device

    I tried fixing my running of out memory for the video buffers problem but could find a fix. I have tried code from a book and it doesn't work. I can only get the video feed to display the video from the capture device using JMStudio, so the device works fine. Maybe my coding methodology/process is incorrect.
    Is there anyone out there that knows of some working code that plays live video in a window from a video capture device. Any other help regarding to displaying capture video would help. Please help.
    Thanks in advance.

    I am using the Belkin USB VideoBus II and it uses the video for windows drivers (vfw), so yet it is supported. And it works when I use JMStudio to play the live feed from the capture device. Thanks for the suggestion.
    I also ran the code suggested above and I still get the same errors. Thanks for your suggestions. Any other help or suggestions would be appreciated.

  • Video capture device bad image/no sound

    Hi !!
    I bought this "grabby" usb dongle from terratec to record old vhs cassete on my computer, but is doesn't work on linux. (It works ok on win7, so cable-connections problems are excluded)
    On vlc I did 'open capture device', choose /dev/video0 for vid, hw:2,0 for sound(tried them all anyway), and PAL/SECAM video standard.
    Problem is I have a super crappy video image (on mplayer also), and no sound. The video is colored, I recogize it, but the pixels are huge, it's awfull.
    After some research I found that a module named em28xx is supposed to handle this device. I found some forum post here and there about the sound problem, it is addressed with a 3years old patch on em28xx-cards.c (which doesn't exist on my machine, so I couldn't apply it).
    Here is dmesg :
    [ 8371.430051] em28xx audio device (0ccd:0096): interface 2, class 1
    [ 8371.430074] em28xx audio device (0ccd:0096): interface 1, class 1
    [ 8371.438360] em28xx: New device TerraTec Electronic GmbH TerraTec Grabby @ 480 Mbps (0ccd:0096, interface 0, class 0)
    [ 8371.438363] em28xx: Video interface 0 found
    [ 8371.438365] em28xx: DVB interface 0 found
    [ 8371.438511] em28xx #0: chip ID is em2860
    [ 8371.554008] em28xx #0: i2c eeprom 00: 1a eb 67 95 cd 0c 96 00 50 00 11 03 9c 20 6a 32
    [ 8371.554020] em28xx #0: i2c eeprom 10: 00 00 06 57 0e 02 00 00 00 00 00 00 00 00 00 00
    [ 8371.554029] em28xx #0: i2c eeprom 20: 02 00 01 00 f0 10 01 00 00 00 00 00 5b 00 00 00
    [ 8371.554039] em28xx #0: i2c eeprom 30: 00 00 20 40 20 80 02 20 01 01 00 00 00 00 00 00
    [ 8371.554048] em28xx #0: i2c eeprom 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554057] em28xx #0: i2c eeprom 50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554067] em28xx #0: i2c eeprom 60: 00 00 00 00 00 00 00 00 00 00 32 03 54 00 65 00
    [ 8371.554076] em28xx #0: i2c eeprom 70: 72 00 72 00 61 00 54 00 65 00 63 00 20 00 45 00
    [ 8371.554086] em28xx #0: i2c eeprom 80: 6c 00 65 00 63 00 74 00 72 00 6f 00 6e 00 69 00
    [ 8371.554095] em28xx #0: i2c eeprom 90: 63 00 20 00 47 00 6d 00 62 00 48 00 20 03 54 00
    [ 8371.554104] em28xx #0: i2c eeprom a0: 65 00 72 00 72 00 61 00 54 00 65 00 63 00 20 00
    [ 8371.554114] em28xx #0: i2c eeprom b0: 47 00 72 00 61 00 62 00 62 00 79 00 48 00 00 00
    [ 8371.554123] em28xx #0: i2c eeprom c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554133] em28xx #0: i2c eeprom d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554142] em28xx #0: i2c eeprom e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554151] em28xx #0: i2c eeprom f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554163] em28xx #0: EEPROM ID= 0x9567eb1a, EEPROM hash = 0xd3498090
    [ 8371.554165] em28xx #0: EEPROM info:
    [ 8371.554166] em28xx #0: AC97 audio (5 sample rates)
    [ 8371.554167] em28xx #0: 500mA max power
    [ 8371.554170] em28xx #0: Table at 0x06, strings=0x209c, 0x326a, 0x0000
    [ 8371.554172] em28xx #0: Identified as Terratec Grabby (card=67)
    [ 8371.856372] saa7115 4-0025: saa7113 found (1f7113d0e100000) @ 0x4a (em28xx #0)
    [ 8372.495384] em28xx #0: Config register raw data: 0x50
    [ 8372.515361] em28xx #0: AC97 vendor ID = 0x83847650
    [ 8372.525227] em28xx #0: AC97 features = 0x6a90
    [ 8372.525231] em28xx #0: Empia 202 AC97 audio processor detected
    [ 8372.908213] em28xx #0: v4l2 driver version 0.1.3
    [ 8373.760714] em28xx #0: V4L2 video device registered as video0
    [ 8373.760718] em28xx #0: V4L2 VBI device registered as vbi0
    And lsmod :
    [user@OGwncMO ~]$ lsmod | grep em28xx
    em28xx 88986 0
    tveeprom 13809 1 em28xx
    videobuf_vmalloc 4351 1 em28xx
    videobuf_core 16231 2 videobuf_vmalloc,em28xx
    v4l2_common 5370 2 saa7115,em28xx
    videodev 100564 3 saa7115,em28xx,v4l2_common
    i2c_core 20508 7 i2c_i801,saa7115,em28xx,nvidia,v4l2_common,tveeprom,videodev
    usbcore 147434 10 uas,ath3k,btusb,snd_usb_audio,usb_storage,em28xx,snd_usbmidi_lib,ehci_hcd,usbhid,xhci_hcd
    From what I see my guess is that the module supposed to handle this hardware is present but doesn't do its job properly...any help?

    Hi again !
    Thanks for you tip nomorewindows. The programs tvtime and xawtv worked out of the box concerning video !! xawtv, however, crashes everytime I try to resize the (very) small window. As for tvtime, there is no sound (output is it can't open /dev/mixer so I guess it's fixable, I'll look into it).
    I started reading the doc but I didn't found yet if it was possible to record the output with these program...
    Concerning the cables, you are right they are not special at all it is standard : there is the triple (yellow=composite video, red/white for audio) cable and a fourth one for video but with inferior quality, I didn't connect it (it's either the yellow or this one for video)

  • Supported Video Capture Devices?????

    I recently purchased the Adobe Photoshop Elements Premium 8.0.  I am now looking for a VIDEO CAPTURE DEVICE that is supported for use with this software.  Adobe offically only says Matrox brand devices are acceptable but these devices are expensive.
    I've also heard about the Canopus 110 for about $200.
    If anyone can make a suggestion on which Capture Device to use, which ones are recommended or the one that just seems to work best, I would appreciate it.
    Thanks,
    Robert 

    You would get a better answer @ http://forums.adobe.com/community/premiere/premiere_elements

  • Urgent: Unable to capture from TV Capture Card

    Hello,
    I'm Ashish Shukla. I'm writing an application in JMF 2.1.1b using J2SE 1.4.0 on Win32 platform on Intel Celeron 1 GHz processor which captures from the capture device. It works fine on Intel Create & Share CS110 Web Camera. But now, I'm try to capture from the TV Capture Card Pinnacle Studio PCTV TV Capture Card (Composite Video).
    But JMF Registry is not able to detect the TV Capture Card (connected alone) & my PC hangs. But, when WebCamera is plugged in, JMF Registry detects it.
    When Both WebCamera (USB port) & TV Capture Card are plugged in, then JMF Registry detects only Web Camera.
    If anyone can help me resolve the problem. I'm very thankful.
    Yours sincerley,
    Ashish Shukla
    Wah Java!!

    Dear friend
    I have a similar problem, did you got the answer...
    I m trying to get video from the video capture card first from video then for composite then for ..... each port ... but it looks not to be easy ...
    c u
    Thanks
    [email protected]

Maybe you are looking for

  • Making particular rows as non editable before displaying the TABLE

    Hi everyone,                            I would like to know how to make a particular rows as non editable in UI element "TABLE" before it is displayed . The scenario is : On entering the Personnel number, I am getting family dependants in the table.

  • How do I get all my music back on my iphone 4?

    Cracked the screen on my iphone 4, went to apple shop, they changed it (lovely) and restored all the settings from icloud, all went very well, except I noticed that the music doesn't get restored from itunes Match. In fact it was completely empty. Yo

  • I can't turn off "share crash data with app developers"

    I enabled this feature accidentally during the onboarding process for my new Macbook Pro, and now I can't turn it off as the button is greyed out.
 The feature is located in in System Preferences > Security & Privacy > Privacy.
 Any suggestions for h

  • Badi or User-Exit for TCode-oawd

    Hi All, Please help me out with a BADI or EXIT for the Tcode - OAWD (Store Documents) .As per our requirement, while executing OAWD, after the step - work item created, we want to add a pop-up which will take us to tcode- SBWP. Any help will be highl

  • I can't get bbc iplayer to work on my Nokia 5800

    I have downloaded the latest bbc iplayer on to my Nokia 5800, even though I manually connect to wifi, it always asks to connect to t-mobile? (iplayer only works over the internet). So therefore can't play anything. I have changed the settings many ti