2011-12-14 2 views
0

J'utilise JMF pour me connecter à une webcam connectée via USB (Logitech Quickcam Pro 9000). Cette caméra est capable de fournir une vidéo à 2MP maximum, mais j'ai du mal à régler le format vidéo à quelque chose de plus haut que 320x240. Impression des formats disponibles me donne ce résultat:Définition de la résolution de la webcam avec Java (JMF)

MJPG, 320x240, Length=230400 0 extra bytes 
YUV Video Format: Size = java.awt.Dimension[width=160,height=120] MaxDataLength = 38400 DataType = class [B yuvType = 32 StrideY = 320 StrideUV = 320 OffsetY = 0 OffsetU = 1 OffsetV = 3 
YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 50688 DataType = class [B yuvType = 32 StrideY = 352 StrideUV = 352 OffsetY = 0 OffsetU = 1 OffsetV = 3 
YUV Video Format: Size = java.awt.Dimension[width=320,height=240] MaxDataLength = 153600 DataType = class [B yuvType = 32 StrideY = 640 StrideUV = 640 OffsetY = 0 OffsetU = 1 OffsetV = 3 
YUV Video Format: Size = java.awt.Dimension[width=352,height=288] MaxDataLength = 202752 DataType = class [B yuvType = 32 StrideY = 704 StrideUV = 704 OffsetY = 0 OffsetU = 1 OffsetV = 3 
YUV Video Format: Size = java.awt.Dimension[width=640,height=480] MaxDataLength = 614400 DataType = class [B yuvType = 32 StrideY = 1280 StrideUV = 1280 OffsetY = 0 OffsetU = 1 OffsetV = 3 

MJPG, 160x120, Length=57600 0 extra bytes 
MJPG, 176x144, Length=76032 0 extra bytes 
MJPG, 352x288, Length=304128 0 extra bytes 
MJPG, 640x480, Length=921600 0 extra bytes 

Cela me dit que je devrais au moins être en mesure d'obtenir une prise de 640x480, mais je ne peux même pas que pour travailler. Comment devrais-je dire à JMF quelle résolution je veux utiliser?

Voici un extrait de mon code tel qu'il est maintenant:

captureDeviceInfo = CaptureDeviceManager.getDevice(DEVICE_NAME); 
Format[] formats = captureDeviceInfo.getFormats(); 
Format selectedFormat = null; 
for(Format f : formats) { 
    if(f.toString().contains("width=640,height=480")) { 
     selectedFormat = f; 
     break; 
    } 
} 

try { 
    mediaLocator = captureDeviceInfo.getLocator(); 
    DataSource videoDataSource = Manager.createDataSource(mediaLocator); 
    player = Manager.createRealizedPlayer(videoDataSource); 

    FormatControl fc = (FormatControl)player.getControl("javax.media.control.FormatControl"); 
    fc.setFormat(selectedFormat); 

    player.start(); 

Répondre

1

Vérifiez la chaîne de format que vous voulez. Au moins sur ma machine aucune des chaînes de format contient "width = 640, height = 480". Lorsque je fais défiler mes formats pris en charge, ils commencent tous par "RGB, 640x480, Length = ..." ou "Format vidéo YUV: Taille = ..."

Questions connexes