Video Input Feature

I'm writing this, even though Apple devs & engineers may never see it.
Apple, please make your iMac have a video-input via HDMI, and create a shortcut that would allow the iMac to switch to another input (similar to Mission Control's multiple desktops).
This is an incredibly simple task that Apple is more than able to implement with little cost, please please please do this. Or please work with intel on the Thunderbolt connection, or give us one mini-display port back. A bit disappointed I spent this much on a computer that lost basic a feature it didn't need to lose.
Love,
Adam

Fookaroo,
You might want to hook up with Breast Feeder in the thread:
GeFORCE Ti 4200: Total Noob Question.
To see if the two of you can get it sorted out.  You are both after the same goal.
Good Luck,
Richard

Similar Messages

  • Em28xx:cross row noise only with S-video input

    The nice thing about Linux is that every step you make, behind the corner there is always a surprise.
    The surprise today is this:
    I have two versions of Arch Linux installed, both updated to the state of art. One with the last driver em28xx of linuxtv.org (rev 13044) for PCTV USB2 and the other with the driver em28xx-new-hg 0.20090409-1 downloaded from AUR for the card Terratec Cinergy XS.
    In both systems, the operation is perfect with both analog TV and composite video input.
    If, however, capture from s-video in both systems appear horizontal lines that occupy the entire screen the width of ten pixels. The visibility of these lines depends very much on the underlying color. With the blue are very visible.
    Note that in both systems have also installed windows that gives me very good results even for the S-video.
    Changing the format of capture in mplayer and v4l-ctl2 in every way possible does not affect whatsoever the problem.
    Is there any Guru em28xx that can give me a hand?
    Thanks

    The Sony GV-D200E is supposed to have a firewire out on it. Can't you just capture from that? Also, the Sony specs say that besides firewire it also has a composite video output. I would think that would be plenty good enough for hi-8 footage. I doubt very much if you would see any difference at all between that and the S-video given the source is hi-8.
    If can't do any of that, does your miniDV cam have a "pass-through" feature? Most Canon's have it. Anyhow, depending on how it works you may be able to run the proper lines from the Sony unit into your DV unit while passing right through it into the puter. I don't think CS4 will do a live capture, so you may need to capture with WMM instead. If nothing else you can probably record from the Sony to your miniDV and then pass that on to the computer.
    Good Luck

  • Video input/ iMac display as monitor

    Hello everybody,
    I have got a feature request for future releases of the iMac series. I think I would not be the only one appreciating a solution to use an iMac's display as monitor for other computing devices such as the Mac mini or older PC-hardware. In my opinion this video input would not have to be more than another little port at the back of an iMac. This could be solved with a mini-port like it is now with the mini-DVI.
    When trying to find a way to use my iMac that way I only found this vnc solution which requires a network connection between both devices but I also found many posts asking for a solution like my proposal.
    Please let me know what you think of it! Thanks in advance!

    It's not that easy. Providing a direct input to the monitor would require quite a bit of additional circuitry. I think that the cost of providing such in input would be unjustifiable when considering the small percentage of iMac buyers who would use such a feature. But you can suggest it to Apple here:
    http://www.apple.com/feedback/imac.html
    For a workaround, perhaps Screen Recycler would work for you.

  • Audio Video Input

    I have a QIP6416-2 box and in order to get video, it needs to be connected via the Audio Video jack. I only have one input on my TV so I am unable to connect my DVD player. I was told the he Audio Video inputs on the box are disabled by default so I cannot even use them to to connect my DVD player. Verizon is severely limiting the ability to connect other electronics for the customer's viewing pleasure. Why are they disabled so hey cannot be used?

    CSHopkns2 wrote:
    I have a QIP6416-2 box and in order to get video, it needs to be connected via the Audio Video jack. I only have one input on my TV so I am unable to connect my DVD player. I was told the he Audio Video inputs on the box are disabled by default so I cannot even use them to to connect my DVD player. Verizon is severely limiting the ability to connect other electronics for the customer's viewing pleasure. Why are they disabled so hey cannot be used?
    get an audio video switcher for $10.  dont expect verizon or box maker motorola to provide all these extra features because you old tv has 1 input. all modern tvs have multiple hdmi and audio video inputs. id like my cable box to do my dishes but i know its not possible.

  • Add video capture feature to CIVideoDemoGL

    Hello,
    I'm a little bit stuck with the CIVideoDemoGL. How do I add video capture feature to this demo instead of using a file as input?
    I know how I capture the video stream from camera and captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection: is called every time a new frame comes. I can also see a preview of the captured video on screen on the CaptureView.
    What I want to accomplish is methods to manipulate video on the fly (as in CIVideoDemoGL) directly from a camera (iSight or likely).
    I have tried to change renderCurrentFrame in VideoView.m. Instead of
    +inputImage = [CIImage imageWithCVImageBuffer:currentFrame];+ I have made a method that retrieve a CIImage* from VideoController (where I've place every captured frame from camera).
    The method call is like this: +[delegate getCurrentCapturedFrame:self data:(CIImage*)inputImage];+
    This method initializes the given CIImage with data from the captured frame.
    When I run this code I retrieve the following error in console +Program received signal: “EXCBADACCESS”.+
    So, something bad is going on but I don't know if I'm on the right way. Maybe it's my method getCurrentCapturedFrame that returns a bad object.
    Any ideas?

    Hello again,
    Thanks for your help. There was something wrong with my code.
    During this weekend I have managed to get captured video playing. But the video is almost black and white and if you zoom into it you can see red blue and green vertical lines. Even if I remove the filters I can see this happen. If I compare the video with the Capture view that I have implemented beside the OpenGL View I can see all colors on the first one. Any ideas?
    I have modified the original renderCurrentFrame to the following:
    - (void)renderCurrentFrame
    NSRect frame = [self frame];
    NSRect bounds = [self bounds];
    CGRect imageRect;
    CIImage *inputImage;
    CIImage *timecodeImage;
    // update timecode overlay
    timecodeImage = [timeCodeOverlay getImageForTime:[self currentTime]];
    if(!readyToGrabFrame)
    return;
    //Put captured image into inputImage
    inputImage = [CIImage imageWithCVImageBuffer:mCurrentImageBuffer];
    imageRect = [inputImage extent];
    [colorCorrectionFilter setValue:inputImage forKey:@"inputImage"];
    [effectFilter setValue:[colorCorrectionFilter valueForKey:@"outputImage"] forKey:@"inputImage"];
    [compositeFilter setValue:[effectFilter valueForKey:@"outputImage"] forKey:@"inputBackgroundImage"];
    [compositeFilter setValue:timecodeImage forKey:@"inputImage"];
    CGPoint p = CGPointMake((int)((frame.size.width - imageRect.size.width) * 0.5), (int)((frame.size.height - imageRect.size.height) * 0.5));
    // render our resulting image into our context
    [ciContext drawImage:[compositeFilter valueForKey:@"outputImage"]
    atPoint:p
    fromRect:imageRect];
    // housekeeping on the visual context
    QTVisualContextTask(qtVisualContext);
    My captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection is moved to VideoView class instead and I have also created an object that keeps the captured buffer with the name mCurrentImageBuffer
    The method looks like this now:
    - (void)captureOutput:(QTCaptureOutput *)captureOutput didOutputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection
    countFrames++;
    [lock lock];
    CVImageBufferRef releasedImageBuffer;
    CVBufferRetain(videoFrame);
    @synchronized(self)
    //basically, have frame to be released refer to the current frame
    //then update the reference to the current frame with the next frame in the "video stream"
    releasedImageBuffer = mCurrentImageBuffer;
    mCurrentImageBuffer = videoFrame;
    CVBufferRelease(releasedImageBuffer);
    readyToGrabFrame = YES;
    [lock unlock];

  • IMovie hangs, no video input and then crash!!!! HELP!!

    Hi everybody !!
    This is my first post here so I really hope you can help me.
    I have a G4 Dual 1.25 with an Canopus ADVC -110 and every time that I want to import from the Beta SP (the input switch from the Canopus is in analog) the software show that the camera it's connected via firewire but I don't see any video input although I can see video output from Canopus in my reference monitors, and, if I switch to the edit tool or any other tablets or features the software crashes!!! I tried deleting the preferences, repairing disk and permission, reinstalled ILife again and nothing!
    Then I reinstalled the system software and it worked fine but a few days ago I was converting a QT movie to a DV format so I can use it in Logic & ProTools and since then I'm having the same problem again.I deleted pref, repair disk and permisions but still the same!! I really need some help because this one of my main tools in my recording studio so I can do my msx scoring.
    Thanks!!!
    G4 Dual 1.25   Mac OS X (10.3.9)   1.25 RAM, Canopus ADVC-110

    I tries that but still!!
    What I did I moved all the preferences to a new folder in my desktop and open iMovie and it worked fine so, I started to move them back individualy or in pairs anduntil i found the one wich was giving me ****!!it was a folder names by host after that the software still working just fine. Any ideas what this folder means ? because it had some preferences inside that I have no clue what they're about. Anyways, at least i know where to go next time if it happens again (hopefully it won't!!). Thanks for all your help and for your responses.
    Take Care!!
    G4 Dual 1.25   Mac OS X (10.3.9)   1.25 RAM

  • Is the new imac's thunderbolt ports allows video input?

    For the last imac, the tech specs says the mini display port could be used as a input (which output device has to be supporting display port).
    In the new imac tech specs.... i couldn't find any thing about video input, only about that the 2 thunderbolt could be use as video output.
    So would i be able to use it as a screen?
    Also, i wanna connect my ps3 and use the imac as a screen!
    (It's a fantastic full HD screen~)
    I have seen sth like this "PS3 and LED Cinema Display Solution (also DVI to Mini DP) - MacRumors Forums"
    and it just cost too much that is enough for me to get a new screen!
    So if the new imacs have video inputs.... than tht means this thing "Connecting A PlayStation 3 To Your iMac « Being BigMacky " will work!
    Well the adapter cost me only 150 bucks~
    The problem is..... does the thunderbolt ports could use it as an video input?

    So seems like, the popular Kanex XD and Belkin HDMI to Mini Display Port adapters would not work for the current imac generation.
    This is what I got from the Kanex company:
    "Question:
    So i suppose this does not work on the latest imacs (released a few days ago)?
    Answer:
    Our Kanex XD requires modification to work with the new thunberbolt iMac
    27-inch.
    We are under development of a newer version. Please look out for an
    announcement soon.
    In the mean time the Kanex XD still works for iMac 27 2009-early 2011 and also the LED Cinema Display 27-inch. "
    This means there will soon be 3rd party developer creates a new signal converter (which is definitely a good news)
    but i won't get the imac until the converter/adapters is released..... i really nedd this feature man!

  • Any GPS/NAVI apps with video out feature??

    Are there any GPS navigation apps out there for the iPhone that will work with the video out? My car stereo has an audio/video input, I have the a/v connector and I'd love to run a GPS app for navigation and display the NAVI video and audio on my head units audio input. I know that some dont support the video output feature, know of any that do?

    I just tested it on my Nokia N8 (Running Symbian Anna ) and Nokia Beta Labs latest version of the Camera application.
    I have set so capturing geolocation information is saved for video. 
    I Record a video and as you say if you playback the video right away Choose Options -> Details  I get the GPS location shown.
    I  then go to Meny -> Photos
    Choose the Check button (bottom left)
    Then select the Video, then go to Options -> Details
    I also get the GPS coords under Location here. 
    This location data is not shown if you show details under Meny -> Videos though..

  • Displayport video input support for new 27" iMac

    Does anyone know if the new 27" iMac just released today has support for displayport video input like the previous generation 27" iMac does? Please tell me you haven't taken this awesome feature away in the midst of the change to Thunderbolt ports etc! I'm asking because in the previous gen iMac specs it clearly states that displayport video input is supported but it doesn't mention it in the tech specs section of the new iMac.
    Could someone from Apple please let me know? Thanks.
    Mike

    I am tempted to go out and buy a new HDMI to mini-displayport adapter and connect it to a new iMac at the Apple store to see for myself........
    I'd hold up on that.  I don't see a mini displayport on the new iMac.  Looks like it goes through the Thunderbolt interface.  Scroll down to connectors.
    http://www.apple.com/imac/specs.html
    Captfred

  • Video Editing feature in latest version of Photoshop CS6 does not exist/work. How do I fix this problem?

    Hi everyone! I downloaded CS6 for a graphic design class that I was taking. I later found out that you could edit videos with the essentials portion of CS6 since it no longer has to be extended like in CS5. I went to import some videos from bridge and bridge would not allow me to do so. I also tried to open the files in Photoshop and I as I was looking at the type of files that I could open like quicktime files, wmv., mov., etc., I could not find anything relating to opening videos. The only thing that showed up were types of image files to open. Did I buy a faulty version of this program? Is there a way to get the video editing feature back on here or do I have to breakdown and buy Photoshop essentials separately?
    Thank you!

    Try dropping the video file on CS6 it should open.  Maks sure CS6 is up to date. Version 13.0.6 Mac version 13.0.1.3 Windows Version 13.1.2 subscription. Also post you CS6 menu Help>System Info... Copy and paste here.  You can see  have the subscription version and use Windows 7....
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:13, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 12
    Logical processor count: 24
    Processor speed: 1995 MHz
    Built-in memory: 40886 MB
    Free memory: 34400 MB
    Memory available to Photoshop: 37196 MB
    Memory used by Photoshop: 95 %
    Image tile size: 1024K
    Image cache levels: 6
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.1 CUDA 6.5.18
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: Quadro 4000/PCIe/SSE2
    Display: 2
    Display Bounds: top=0, left=-1360, bottom=768, right=0
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 1
    Video Card: NVIDIA Quadro 4000
    Driver Version: 9.18.13.4084
    Driver Date: 20140912000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA Quadro 4000
    Video Card Memory: 2048 MB
    Serial number: 96040035116912554961
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\JOHNJM~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      F:\, 465.2G, 184.9G free
      C:\, 224.2G, 101.4G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: C:\Photoshop64 Plug-Ins\
    Installed components:
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/09/10-12:31:21   5.0.4   79.517869
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1686  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.0.20577   2.1.0.20577
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1681  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
    Required plug-ins:
       3D Studio 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       Angled Strokes 13.0
       Average 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 8.7.1
       Camera Raw Filter 8.7.1
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Collada 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Embed Watermark 4.0
       Entropy 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Extrude 13.0
       FastCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Maximum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mean 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Measurement Core 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Median 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mezzotint 13.0
       Minimum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       MMXCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Picture Package Filter 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Pinch 13.0
       Pixar 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Range 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.1.2
       Shear 13.0
       Skewness 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       STL 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Sumi-e 13.0
       Summation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Variations 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       WIA Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Wind 13.0
       Wireless Bitmap 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Alias PIX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Contact Sheet II 12.0 (12.0x001)
       CUR (Windows Cursor) NO VERSION
       D3D/DDS 8, 55, 0109, 1800
       ElectricImage 13.0
       Face Control II 2.00
       Fine Touch 3.25
       GREYCstoration NO VERSION
       HSB/HSL 13.0
       ICO (Windows Icon) NO VERSION
       Lighting Effects Classic 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       NormalMapFilter 8.55.0109.1800
       Picture Package 12.0 (12.0x001)
       Reduce Noise 7.0.0.0
       ScriptListener 13.0
       SGI RGB 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       SoftImage 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       StarFilter Pro 3 3.0.5.1
       SuperPNG 2.0
       Variations 14.2.1 (14.2.1 x001)
       Wavefront RLA 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Web Photo Gallery 12.0 (12.0x001)
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Photo Collage Toolkit
       Kuler
    Installed TWAIN devices: NONE

  • How to connect Apple TV (2g) HDMI to HDTV with only component video input.

    Trying to connect Apple TV (2g) HDMI to HDTV with only component video input.  Can I use a simple cable or do I need a converter box/plug? Is the HDMI signal coming from ATV encrypted or HDCP enabled?
    The TV is HD, but only has a component input and not HDMI.  Apple TV 2g only has HDMI output.

    google component hdmi converter
    but they are pretty expensive and may not work at all
    and will not work with any DRM material as in movies you reant and maybe netflix and the sports thingy

  • How can I connect my iPad to a TV that only has an s-video input available but also has a usb port on the satellite box available.

    I would like to connect my iPad to my older TV but the only inputs available are the s-video input port on the TV itself and there is also a USB input port on the satellite box that feeds the TV. I could also split all the RCA jacks to accomodate another input here. Thanks in advance for any and all help with this problem of mine..............RR.

    There is no s-video cable available for any iPad.
    The USB port on the cable box is for maintenance use only.
    There are RCA cables available:
    http://store.apple.com/us/product/MC748ZM/A/apple-composite-av-cable?fnode=3a

  • I have an HP 510Y. Does anyone know how to use the audio video inputs on the front panel.

    I have tried connecting a VCR a Camcorder and other devices and nothing happens. Its like they are not even connected. Has anyone else had a problem. What am I doing wrong. This is an audio video input is it not. Help please!

    I think they are video output.. not input..
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

  • I have a macbook 15 inch and philips LCD which I'm trying to connect my laptop to. I currently have a HDMI plugged in, but am getting an error message "no video input" on the LCD tv. Please help!

    I have a macbook 15 inch (retina display) and philips LCD which I'm trying to connect my laptop to.
    I currently have a HDMI cable plugged in, but am constantly getting an error message "no video input" on the LCD tv.
    I have checked the philips LCD to be in the HDMI mode and googled many threads but have
    not found a solution to solve my problem. Would appreciate any help given!

    Hello, anabelleho. 
    Thank you for visiting Apple Support Communities.
    Here is a troubleshooting article that I would recommend going through when experiencing this issue.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Cheers,
    Jason H.

  • Please help! Not able to set Video input Port(S-Video or Composite)on Linux

    Hi
    I am using JMF2.1.1e(Linux performance pack) for video capturing on Linux OS. I want to set video input port(S-Video or composite) through my application. I am using the following code:
         if ( dataSource != null )
              arrControls = dataSource.getControls ();
         if ( arrControls != null )
              nCount = arrControls.length;
         System.out.println("No. of Controls: " + nCount);     
         for ( i = 0; i < nCount; i++ )
              if ( arrControls[i] == null )
                   continue;
              if ( !(arrControls[i] instanceof Control) )
                   continue;
              componentControl = ((Control)arrControls).getControlComponent ();
              System.out.println("ComponentControl : " + componentControl);
              if ( componentControl == null )
                   continue;
    But, i am getting No. of Controls: 0 (Zero). So i am not able to get any control component also. Rest of the application is working fine. Please help me solving this problem.
    Thanks in advance.

    To go a stage further.
    Google run a Jabber server for their service.
    Jabber apps (those that can) use a Protocol called Jingle to make the A/V connections.
    Google's version is not even that compatible with other Jabber apps. (See Here)
    The Plug-in in the Google Install (Or the Standalone Web Browser Plug-in allow Browsers to access the GoogleTalk A/V side as does the Standalone PC app called GoogleTalk as well.
    iChat uses a process called SIP (Session Initiation Protocol) to connect to other iChat Users or to the AIM for PC app.
    However this also works in any iChat to iChat Connection no matter if the Buddy List is an AIM Login based one, Jabber (including GoogleTalk) or A LAN based Bonjour Chat.
    In you care this is not going to work.
    Getting the Standalone (Intel only) Browser Plug-in and using the Chat option in the Google Mail Web page is probably the easiest option.
    7:31 PM Friday; January 7, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Maybe you are looking for