WTK 2.5.2 change camera resoultions

Hello!
I'm using NetBeans 6.1 with WTK 2.5.2, where can i see which camera resolutions are allowed?
Can I change the resolutions in the "DefaultColorPhone.properties" file or in any other file?
Greetings
Micha

you can change the camera resolutions using your code . if your target device implements the advanced multimedia supplements API (jsr 234)
you can get the supported resolutions by
int []myResolutions= cameraControl.getSupportedStillResolutions();this array will contain the supported resolutions in pairs
[480, 640, 960, 1280, 1224, 1632, 1500, 2000, 1536, 2048]
index:
0 - 640x480
1 - 1280x960
2 - 1632x1224
3 - 2000x1500
4 - 2048x1536
next using the cameraControl interface
cameraControl = (CameraControl)player.getControl("CameraControl");
cameraControl.setStillResolution(1);

Similar Messages

  • 7.5.1 - Errors from Media Server when adding or changing cameras

    I am getting a couple of different errors when trying to add or change cameras that are associated to one of my media servers.  
    I have added screenshots of the errors that I have found.
    Any help would be appreciated.....
    Steve

    Hi Steve,
    The initial error message looks like VSOM is attempting to provision 65GB of estimated storage prior to starting a new archive, and that there isn't a VSMS instance with sufficient storage for the request.  Is there? 
    The camera change screenshot I'm not 100% on, but my gut tells me the camera you are trying to swap in may not be at an appropriate firmware level for VSM 7.5.1.  Check the release notes for VSM 7.5.1 and ensure the camera you are adding is at the minimum FW required.
    The server health / NIC usage message is the most unexpected one in my opinion.  Is this VSMS instance physical or virtual?  What speed is the NIC negotiated at? If its negotiated at 1000MBps as it's supposed to be, it would imply that you're ingress traffic is near 930 MBps?  That is monsterously excessive if that's the case.
    Can you provide any additional detail?
    Cheers!

  • Changing camera settings

    Hi experts
    For my special application I want to change some camera
    specific settings for example exposure time, gain and also some
    video settings like contrast, brightness and ... I want to use
    flash media server and flash media encoder, but I don't know how I
    can change the settings mentioned ( I know that the above can be
    easily controlled via DirectShow, but I don't like to use it). I
    have spent lot of time for finding the answer but find almost
    nothing. May you please help me? Even if changing camera settings
    via FMS and FME is not possible, may you please tell me how to
    change them via another program and still capturing via FMS and
    FME?
    Thank you
    H.P.I

    Pardon the pun, but there's something wrong with this picture.
    Photos from iPhone 4s, as was said by others, should have more than sufficient resolution for a simple printed album, if you're using the rear camera and you're importing them at full resolution into iPhoto. Is that what you're doing?
    What size are the photos in the album - no double-page spreads?
    When you check the problem photos in iPhoto, what does it say about it's resolution, file size?

  • How to change Camera settings while NetStream is published with H264 codec

    Hi,
    when I'm using H264 codec I can't modify my cam.setMode(w,h, fps) because my stream hangs (second call to cam.setMode() uhangs video. When I'm using Sorenson codec that same code works fine.
    So my question is how can I change Camera settings when I'm publishing images from this camera with NetStream encoded with H264. I'm using Flash Player 11,3,300,270 Windows 7 64 bit ActiveX.
    Swf compiled to target Flash Player 11.3, swf-version=16.
    Regards

    Try to unpublish/pause publishing just before setting the things on camera and resume/publish again after the settings are applied.
    C

  • HT5105 in multi-clip mode it won't change camera angeles, just goes doink.

    in multi-clip mode it won't change camera angeles, just goes doink. Even if I click directly on the clip itself. My switch is open and it all was working fine until I needed to use an audio clip from camera 2 instead of 1. It also seemed to have trouble doing that.

  • Trouble changing Camera RAW settings in Javascript (worked in CS5, but not CS6)

    I just upgraded to Master Collection CS6 from Production Premium CS5, and CameraRAWOpenOptions settings in scripts that I had working in Photoshop CS5 (64-bit) using Extendscript CS5 are no longer working with Photoshop CS6.  I get no error messages, but the settings I specify in the scripts (for example, CameraRAWOpenOptions.exposure=2.00) do not take effect when the image is opened.  Other Photoshop properties and actions within my script are working correctly.
    Note that this is an issue in Photoshop CS6.  I can use Extendscript CS5 or CS6, and the result is the same.
    Here is the way I am changing the settings in my script:
    var RawOptions = new CameraRAWOpenOptions;
    //RawOptions.settings=CameraRAWSettingsType.CUSTOM;
    //RawOptions.settings=CameraRAWSettingsType.SELECTEDIMAGE;
    RawOptions.settings=CameraRAWSettingsType.CAMERA;
    RawOptions.exposure=+2.00;
    RawOptions.vignettingAmount = 0;
    RawOptions.vignettingMidpoint = 0;
    RawOptions.contrast = 50;
    RawOptions.saturation = 0;
    RawOptions.shadows = 0;
    RawOptions.luminanceSmoothing = 0;
    var JPGopts = new JPEGSaveOptions;
    JPGopts.quality = JPEGquality;
    //Perform the loop through the files
    app.open(testListing[0], RawOptions, false);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    for (var nfile = nstart; nfile < nstop; nfile++)
        app.open(testListing[nfile], RawOptions, false);
        FnameSave = new File(SavePath+"/"+testListing[nfile].name);
        app.activeDocument.saveAs(FnameSave, JPGopts, false, Extension.UPPERCASE);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);

    I found a few of them actually work.
    CameraRAWOpenOptions.tint=0; // works (-150 to 150)
    CameraRAWOpenOptions.temperature=5500; // works (2000 to 50000)
    CameraRAWOpenOptions.luminanceSmoothing = 0; // works 0 to 100
    CameraRAWOpenOptions.saturation=50; // works =100 to 100
    CameraRAWOpenOptions.vignettingAmount=0; //works -100 to 100
    CameraRAWOpenOptions.vignettingMidpoint=0; //works -100 to 100
    These ones do not work:
    CameraRAWOpenOptions.brightness=0; // does not work (0 to 150)
    CameraRAWOpenOptions.contrast=0; // does not work (-50 to 100)
    CameraRAWOpenOptions.exposure = 0; // does not work (-4.0 to +4.0)
    CameraRAWOpenOptions.shadows=0; // (0 to 100) does not work
    CameraRAWOpenOptions.whiteBalance=WhiteBalanceType.SHADE; // does not work
    I noticed that, doing File-->File Info--> "Advanced" tab-->expand "Camera Raw Properties" that the ones that do not work have mostly either been removed (brightness) or had "2012" added to their names in the XMP in the conversion from CS5 to CS6.
    It appears the mapping from Javascript objects/properties to how Photoshop knows them is broken with the new version.  Is there any way to fix this?
    Is there an alternate way to do this by going through XMP?
    Unfortunately, I'm wanting to use "exposure", which is one of the ones that is broken.  My main script sets a custom exposure for each image (trying to smooth out EV jumps between successive images in a sunset time lapse).

  • How do i change camera raw in cs6?

    just upgraded to CS6 on XP system. My new nikon d7100 is not supported in CS5. I have tried uplaoding various new camera raw versions but can not make a change within cs6 as it still only see the outdated version 7. I understand that I need to run veriosn 7.4 - 8.1 as new versions will not work on XP.
    I have gone through the "help" "update" section and it says that everything is now up to date but still showing an outdated version 7 when I look at was the program is using in the Preference section.
    geez it was nice in the days that a person could talk to an actual human. I thought I paid enough over the years to adobe and I would pay more to save these hours of frustration!
    can anybody help??
    thanks,
    Craig

    Steps to install:
    After you download the 8.3 dng converter and Camera Raw_83_GM_32bit.zip
    1. Double click on the 8.3 dng converter to install
       Right click on the Camera Raw_83_GM_32bit.zip and select Extract All to see the camera raw plugin inside
    2. Right click on the Camera Raw.8bi and select Copy
    3. Go to C:\Program Files\Common Files\Adobe\Plug-Ins\CS6\File Formats
       Drag the existing camera raw plugin to the recycle bin
       Right click and select Paste to paste the new 8.3 camera raw plugin
    With any luck, you should now have camera 8.3 available in both photoshop cs6 and bridge cs6

  • Changing Camera Owner Name In EOS 5D

    I need to change the owner name in my faithful EOS 5D.  As I understand it, this can only be done with the Canon EOS Utility.  (Changing the camera owner name allows me to add the author name, also, in the event an image is processed without adding all of the valuable metadata.)
    I'm currently using EOS Utility version 2.13.10.  I CAN see my EOS 5D MKII camera with no problem, and I can edit the camera owner information.
    Unfortunately, I can't see my 5D in the EOS Utility.  I'm using a Mac Book Pro, running OS 10.6.8.
    I can, however, shoot tethered in Capture One, but not Adobe Lightroom. We're all aware of the many combinations of cameras and software applications and their compatibilities - I've been chasing this for years. 
    So...does EOS Utility version 2.13.10 NOT work with a Canon EOS 5D? Do I have to revert to an earlier version to make this work?
    Thank you.
    Solved!
    Go to Solution.

    Supported model for EOS Utility version 2.13
    EOS 70D, EOS Kiss X7 / EOS Rebel SL1 / EOS 100D, EOS Kiss X7i / EOS REBEL T5i / EOS 700D, EOS-1D C, EOS 6D, EOS M, EOS 60Da, EOS Kiss X6i / EOS REBEL T4i / EOS 650D, EOS 5D Mark III, EOS-1D X, EOS Kiss X5 / EOS REBEL T3i / EOS 600D, EOS Kiss X50 / EOS REBEL T3 / EOS 1100D, EOS 60D, EOS Kiss X4 / EOS REBEL T2i / EOS 550D, EOS 7D, EOS-1D Mark IV, EOS Kiss X3 / EOS REBEL T1i / EOS 500D, EOS 5D Mark II, EOS 50D, EOS 40D, EOS Kiss F / EOS REBEL XS / EOS 1000D, EOS Kiss X2 / EOS REBEL XSi / EOS 450D, EOS-1Ds Mark III, EOS-1D Mark III
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • How to change camera applied Metadata - Camera Model.

    I have 1000's of imported scanned film images in my Aperture library. The camera model metatag reads Nikon Cool Scan (name of scanner I used). How can go in and edit this this tag to change to actual camera model used to take photo? I'd like to do a batch change of the metatag - but this one is not available to change. Any ideas?

    A little application called PhotoInfo by Jim Merkel claims to edit such EXIF data, but I have not had success with it making changes stick for creation dates. I am in the same boat with scans, but don't want to record camera data in the scanned file (I find it helpful to know the device that produced the actual image). I want to change the creation date to the picture's creation, rather than the digital rendition of it.
    Regardless, look into PhotoInfo and the batch change options it has.

  • Is it possible to change 'camera data' info?

    I think I know the answer, but:
    I'm using a favourite 'framing template' in which I open a new image, copy and paste into the framing template which has had many automations run for watermark, signature, naming, etc., and then when I post to Flickr for instance;
    It shows dates of Sept 2009 and using a Nikon D50--both of which are 'old news' now.
    I did a 'File Info' investigation and the camera data looks like it cannot change and that's the metadata with the camera make and date, attached seemingly (and sensibly) to my framing template psd document.
    Any way to change this or am I doomed to have to run scripts every time I wish to frame something and watermark, etc?
    Thanks!!!

    A blunt method could be to create a identically sized new document in the same color space and shift-drag all Layers over and over-save the template file with that.
    Any way to change this or am I doomed to have to run scripts every time I wish to frame something and watermark, etc?
    I don’t follow.
    Scripting can make many complex operations (including watermarking, saving various downsized copies etc.) one-click tasks, so I don’t see that as a disadvantage in and of itself.

  • Changing camera quality settings?

    Is there a way to change any quality settings for either the camera or the video camera?
    Thanks.

    Have you seen
    https://community.bt.com/t5/Other-Broadband-Querie​s/BT-Smart-Home-Cam-100-app/td-p/1419016
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Changing camera profiles in LR 2 and ACR 4.6

    How does one change the camera choices in the Camera Profile panel in LR 2 and ACR 4.6? The only camera specific model that shows up for me is the Nikon D2X, and I shoot a Nikon D200.

    I'm not interested in profiles that don't match my camera, but I was interested in using the D200 profile since that's what I shoot with. I've never heard anywhere that the D200 and D2X render identical files. so, when I talked about choice, I merely meant that I'd like to have the choice of using the profile for my particular camera. When Adobe lists the supported camera models, they do not say that one camera profile fits several different models that have entirely different sensors. I know for a fact that the D200 and D40 do not render identical files, yet both are restricted to using the D2x file, all of which seems a bit strange to me.
    I don't expect an exact match, as I know that Adobe cannot simply copy Nikon's algorithms. Since these Adobe profiles are an approximation because of that, I would think that a profile closer to my model would be available. I know that all thw Adobe software gets from the camera is the white balance, and everything else in the Adobe profiles is generated bt Adobe to try to match the Nikon profiles as close as possible without a direct copy.
    There is a major difference in how the various cameras render images, just open them in any of the various incarnations of Nikon Capture, and you'll see exactly how the camera renders an image. In conclusion, it does not look like Adobe supports the D200, and in spite of their claims to the contrary, what we get is a generic profile that is supposed to fit models with entirely different sensors.
    Why even list the D200 if indeed they do not allow me to use a profile that more closely resembles the one from that model?

  • IPad, how to change camera in face time

    Can someone tell me where and how I change the camera, in FaceTime, from facing me to facing away from me
    Thank you for your help
    Ingolf in Alice Springs Central Australia

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • Nokia 808 -How can I change camera shutter sound t...

    How can I change the camera shutter tone to louder snap sound.
    I want to change it to some other sound also..
    Please don't ask me to download other camera apps. I have tried so many but still prefer the original apps which give me the best picture and video always.

    aspergerguy wrote:
    farby wrote:
    Launch the camera and check in 'Settings' if you have the option to select 'capture Tone' ...
    That is not what OP meant, as for some reason they want a louder or more distinctive tone as some users like with ringtones!
    Well if 'capture Tone'allows you to change the shutter sound then that's exactly what he meant , unless I'm missing something

  • How to change camera angles frequently (Like in music videos)

    Hey I'm trying to make a music video of my own and I have 6 video clips of a shot of the band, guitarists, bass, singer, and drums and I want to know if there is any way you can like set a priority to what video is being shown so you dont have to chop up each clip and you can just keep them all whole but just set something so that one clip is the only clip being shown at that time and then switch every 3 seconds or so. Please help if there is any tool that does this.

    Look up mulitcam editing in the PPro docs.
    Basically: First, create a "source" sequence. Each video feed on it's own layer in the timeline. Sync them as required.
    Next, create a new "multicam" sequence. Nest your source sequence into the multicam sequence by dragging the source sequence icon from the Project panel into the multicam timeline. Enable multicam editing on this sequence. Notice that this nested squence shows you exactly one video feed. This is normal, not to worry, all will be clear soon.
    Now, open the multicam editing monitor. You'll see all of your different camera angles on the left hand side, and the "current" angle on the right hand side -- this corresponds to the camera angle on the left hand side with the highlight around it. Use your pointing device to select which angle is active. Start your video playing. As it plays, use your pointing device to pick which angle to show at any particular time by clicking on a camera angle on the left hand side of the multicam monitor. Be quick, this is real-time work. When you stop, you'll see the cuts made on your timeline. Each cut is identified by camera number, which corresponds to the video track number of your source sequence.
    Finally, go back through your timeline to each cut, and use the rolling edit tool to move that cut back and forth to fine tune the location of each camera angle change. You can do this as often as you need to.
    It sounds complicated, but in practice it's simple and quick.

Maybe you are looking for