Coremediaio support, supporting modern capture devices

Planning to write a coremediaio virtual capture device for OSX. coremediaio is apple's modern replacement for quicktime video digitizer components
Any plans to use QTKit and recognize such devices? It appears that FLME is still using the ancient sequence grabber. Any plans to port flash live media encoder to 64 bit.
best,
Tuviah

Windows media player 11 can play AVCHD very well on windows vista already. And the .MOV native support actually worries me. If that happens, would apple still be making quicktime for windows? will quicktime pro still be on windows? because as far as i know there was no more windows media player on the mac as soon as flip4mac(well, it was made by microsoft..) came out.

Similar Messages

  • 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

  • Canon HV30 Returns Video Format provided by capture device is not supported by this application

    I am trying to stream our church services using Flash Media Live Encoder 3 using firewire and a Canon HV30 Camera.
    I am not understanding how to use my firewire based high def Canon HV30 Camera as the video source device for FLME 3 ? When I hook everything up I get the error "Video Format provided by capture device is not supported by this application". The spec sheet says the HV10 should work.
    Is there a work around for this problem.
    In Him,
    JMb <><

    The error is coming because the camera might be giving HDV format, which is mpeg-2 encoded. FMLE needs raw format to work with. Please configure the camera to give DV out to work with FMLE.

  • Supported capture devices

    Does anyone know where I can find a list of all the capture devices and cards supported by Flash Media Live Encoder?

    http://www.adobe.com/products/flash-media-encoder/faq.html
    http://www.adobe.com/products/flashmediaserver/flashmediaencoder/devicematrix.html
    Many more will work but are not listed yet.

  • HDMI capture devices with Linux support?

    Does anyone know of any HDMI capture devices (external USB since I don't have any spare expansion slots) that are supported by Linux?

    Does anyone know of any HDMI capture devices (external USB since I don't have any spare expansion slots) that are supported by Linux?

  • JSR 205 support in blackberry device

    Please tell me the Blackberry device model which support JSR 205 MMS?

    Here's how i figure that out.
    i run the following code on the device itself
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class SystemProperties extends MIDlet implements CommandListener {
      private static final String[] SYSPROPLISTS = {
          "CLDC&MIDP", "Optional packages", "MMAPI", "Bluetooth API",
          "FileConnection API", "WMA", "SATSA", "Other"};
      private static final String[] CLDC_MIDPPROPS = {
          "microedition.profiles", "microedition.configuration", "microedition.locale",
          "microedition.platform", "microedition.encoding", "microedition.commports",
          "microedition.hostname", "microedition.jtwi.version"};
      private static final String[] OPT_SYSPROPS = {
          "microedition.media.version", "microedition.pim.version",
          "microedition.io.file.FileConnection.version", "microedition.m3g.version",
          "microedition.location.version", "microedition.global.version",
          "microedition.chapi.version", "microedition.sip.version"};
      private static final String[] MMAPI_SYSPROPS = {
          "supports.mixing", "supports.audio.capture", "supports.video.capture",
          "supports.recording", "audio.encodings", "video.encodings",
          "video.snapshot.encodings", "streamable.contents"};
      private static final String[] BT_SYSPROPS = {
           "bluetooth.api.version", "bluetooth.l2cap.receiveMTU.max",
           "bluetooth.connected.devices.max", "bluetooth.connected.inquiry",
           "bluetooth.connected.page", "bluetooth.connected.inquiry.scan",
           "bluetooth.connected.page.scan", "bluetooth.master.switch",
           "bluetooth.sd.trans.max", "bluetooth.sd.attr.retrievable.max"};
      private static final String[] FILE_API_SYSPROPS = { "fileconn.dir.photos",
          "fileconn.dir.videos", "fileconn.dir.tones", "fileconn.dir.memorycard",
          "fileconn.dir.private", "fileconn.dir.photos.name", "fileconn.dir.videos.name",
          "fileconn.dir.tones.name", "fileconn.dir.memorycard.name", "file.separator"};
      private static final String[] WMA_SYSPROPS = {
          "wireless.messaging.sms.smsc"};
      private static final String[] SATSA_SYSPROPS = {
          "microedition.smartcardslots"};
      private static final String[] OTHER_SYSPROPS = {
          "com.nokia.mid.dateformat", "com.nokia.mid.timeformat",
          "com.nokia.network.access", "com.nokia.mid.imei"};
      private List list;
      private SysPropForm cldcmidpform;
      private SysPropForm optform;
      private SysPropForm mmapiform;
      private SysPropForm btform;
      private SysPropForm fileapiform;
      private SysPropForm wmaform;
      private SysPropForm satsaform;
      private SysPropForm otherform;
      private Command exitCommand;
      protected boolean bt = false;
      public SystemProperties() {
        list = new List("System properties", List.IMPLICIT, SYSPROPLISTS, null);
        exitCommand = new Command("Exit", Command.EXIT, 1);
        list.addCommand(exitCommand);
        list.setCommandListener(this);
        Display.getDisplay(this).setCurrent(list);
      protected void startApp() throws MIDletStateChangeException {
      protected void pauseApp() {
      protected void destroyApp(boolean p1) {
      public void commandAction(Command c, Displayable d) {
        if (c == List.SELECT_COMMAND) {
          int index = list.getSelectedIndex();
          if (index == 0) {
            cldcmidpform = new SysPropForm(SYSPROPLISTS[0], this, CLDC_MIDPPROPS);
            Display.getDisplay(this).setCurrent(cldcmidpform);
          if (index == 1) {
            optform = new SysPropForm(SYSPROPLISTS[1], this, OPT_SYSPROPS);
            Display.getDisplay(this).setCurrent(optform);
          if (index == 2) {
            mmapiform = new SysPropForm(SYSPROPLISTS[2], this, MMAPI_SYSPROPS);
            Display.getDisplay(this).setCurrent(mmapiform);
          if (index == 3) {
            bt = true;
            btform = new SysPropForm(SYSPROPLISTS[3], this, BT_SYSPROPS);
            Display.getDisplay(this).setCurrent(btform);
          if (index == 4) {
            fileapiform = new SysPropForm(SYSPROPLISTS[4], this, FILE_API_SYSPROPS);
            Display.getDisplay(this).setCurrent(fileapiform);
          if (index == 5) {
            wmaform = new SysPropForm(SYSPROPLISTS[5], this, WMA_SYSPROPS);
            Display.getDisplay(this).setCurrent(wmaform);
          if (index == 6) {
            satsaform = new SysPropForm(SYSPROPLISTS[6], this, SATSA_SYSPROPS);
            Display.getDisplay(this).setCurrent(satsaform);
          if (index == 7) {
            otherform = new SysPropForm(SYSPROPLISTS[7], this, OTHER_SYSPROPS);
            Display.getDisplay(this).setCurrent(otherform);
        if (c == exitCommand) {
          quitApp();
      public void quitApp() {
        destroyApp(true);
        notifyDestroyed();
      protected void showList() {
        Display.getDisplay(this).setCurrent(list);
    import javax.microedition.lcdui.*;
    import javax.bluetooth.LocalDevice;
    public class SysPropForm extends Form implements CommandListener {
      private Command backCommand;
      private Command exitCommand;
      private SystemProperties midlet;
      public SysPropForm(String title, SystemProperties midlet, String[] list) {
        super(title);
        this.midlet = midlet;
        backCommand = new Command("Back", Command.BACK, 1);
        exitCommand = new Command("Exit", Command.EXIT, 1);
        addCommand(backCommand);
        addCommand(exitCommand);
        setCommandListener(this);
        for (int i = 0; i < list.length; i++) {
          append(list[i] + ":\n");
          if (midlet.bt) {
            append(LocalDevice.getProperty(list) + "\n");
    else append(System.getProperty(list[i]) + "\n");
    public void commandAction(Command c, Displayable d) {
    if (c == backCommand) {
    midlet.showList();
    midlet.bt = false;
    if (c == exitCommand) {
    midlet.quitApp();
    cheers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I have just purchased a lightning to 30 pin adaptor to use on an iPad mini and a gen5 iPod touch both devices are running iOS 8.1.3 and come up with The error message "this accessory is not supported by this device "

    I have just purchased a lightning to 30 pin adaptor to use on an iPad mini and a gen5 iPod touch both devices are running iOS 8.1.3 and come up with The error message "this accessory is not supported by this device "
    THis is means they are not charging on a 30 pin cable and the touch won't work in my Apple iPod dock - no audio out or charge. Have re powered both devices to no avail am wondering if the iOS version is the problem
    Help!

    If it is a lightning to 30 pin adaptor, and you have a 7th Generation Nano it has to fit the Nano.
    This is lightning to 30 pin adapter: http://www.bestbuy.com/site/Apple%26%23174%3B---Lightning-to-30-Pin-Adapter/6651 936.p?id=1218803450821&skuId=6651936#tab=overview
    Is this what you bought?
    You need to contact Sony and see if they model you have is compatible with the docking adapter. It may not be.

  • I have a new Toshiba Thrive tablet and do not see it on the list of tested, supported, or unsupported devices. Will Firefox work on my tablet?

    I have a new Toshiba Thrive tablet and do not see it on the list of tested, supported, or unsupported devices. Will Firefox work on my tablet?

    You should be able to find Firefox by searching for it in the Android market on the device.

  • My ipod touch 3rd gen doesnt work on usb charger but on dock it says "Charging is not supported with this device" How do I fix it?

    I'm taking it in to get it looked at but will they cover this? And is there a way to fix it before I take it in. I'm still under the 1 year warranty plan. My friend said that they might exchange it. It's a 64GB and I use it for a lot of things like my picture, music, contacts, and email. It's got scratches on the back but other wise its ok the screen isn't cracked or scratched.
    I have a usb charger for it but when I plug it into the PC or my wall charger it won't charge. It just says  "Charging is not supported with this device". It even says that sometimes when it's not charging. But it works on a dock station like my clock or radio.
    Also my home buttom won't work unless I press down real hard. This scares me because I'm afraid I wil persss it too hard and break it even more.
    Please help.

    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • What does this message mean Charging is not supported with this device?

    What does this message mean Charging is not supported with this device?

    You've gotten 2 good answers already, but there's a key assumption in both that you got the message when connecting the iPhone to some other device. If this is the case you can get an adapter in the Apple online store that will allow charging from older devices.
    If, however, this message appears when you are not connected to anything the problem is dirt or moisture in the dock connector at the bottom of the phone. Clean it with a dry toothbrush or air blast.

  • Sound has stopped working; failed to play test tone; format not supported by the device (Vista x64 Ultimate)

    I can no longer hear any sound from my speakers/headphones. This happened suddenly yesterday without any hardware changes or noticeable software updates.
    -- The sound is not muted and the volume is set to full.
    -- In the device manager, my SigmaTel HD Audio device has no warnings or errors.
    -- I can't find any related messages in the Event Viewer.
    -- The primary audio device is selected as the default for playback. The mixer shows my media player as being mixed properly to the device.
    -- In the sound control panel, under Playback > Speakers/Headphones > Properties > Advanced:
     - I get the error message "failed to play test tone" when I try to Test my Default Format (dvd quality)
     - I get the error message "format not supported by the device" when I try to change my Default Format
    -- Note that unlike others who have similar problems, I'm not joined to a domain
    I've tried
    *  rebooting
    *  uninstalling and reinstalling the driver for the sound card
    *  "disable all enhancements" in the sound control panel
    (http://social.msdn.microsoft.com/forums/en-US/windowspro-audiodevelopment/thread/b09e43ba-3ffa-4a45-9593-8eee686f124a/)
    *  looking in the registry for some registry key (not found)
    (http://www.consumingexperience.com/2009/04/failed-to-play-test-tone-no-sound-on.html)
    Computer details
    Dell XPS M1530
    Vista Ultimate x64 SP1 with current updates
    SigmaTel driver version 6.10.0.5866
    **Update**
    I followed the following steps:
        * using regedit, go to HKLM\System\CurrentControlSet\Control\WMI\AutoLogger\Audio and change the “Start” value from 0 to 1.
        * Reboot the machine
        * Try to play an audio file.
        * Post a link to the generated log file which you can find in: %WINDIR%\system32\LogFiles\Audio
    but don't know where to post the resulting AudioSrv.Evm.001 file. It's also not human readable and I can't find what utility parses it for reading.
    **Another update**
    Still can't read the EVM. logparser 2.2 can't parse it.
    Found this thread which interested me but isn't applicable to x64 (I think):
    http://social.msdn.microsoft.com/Forums/en-US/mediafoundationdevelopment/thread/94cdc662-e974-43de-8feb-6eb156924347
    **YAU**
    Dell confirms it's an OS issue after troubleshooting with me for a couple of hours (wow)
    Is there a way to look at this EVM file _without_ installing the Windows Driver Kit??

    Hi,
    Thanks for posting in Microsoft TechNet Windows Vista Forum.
    Upon your description, I see that you have done a lot of research and tests. Unfortunately, none of these troubleshooting works.
    Based on my experience, this issue related to "failed to play test tone" can be related to several reasons. It also includes hardware defect. I am confusing why Dell confirms that the issue is related to Operating System. Could you let me know what operation Dell had troubleshot with you?
    Meanwhile, here I just provide more troubleshooting except what you performed. If it doesn't work, I may also need to recommend that you contact Dell for support.
    1. Microsoft has released a Hotfix to troubleshoot related to "Failed to play test tone".
    http://support.microsoft.com/kb/930883
    2. Make sure that these services are started.
    Windows Audio
    Multimedia Class Scheduler
    Remote Procedure Call
    Windows Audio Endpoint Builder
    3. I noticed that this issue occurred not long ago, I may need to suggest that you perform a System Restore to the previous restore point when the computer without any problem.
    System Restore
    ==============
    1)     Please click on Start and choose All Programs, Accessories, System Tools, and then Windows Backup.
    2)     Click Restore on the left pane.
    3)     Choose Basic Restore.
    4)     Follow the wizard and click Next.
    5)     If you would like to restore everything in the backup, we can check the box “Restore everything in this backup” on the top of the window.
    6)     We can also browse and choose certain files and folders to restore. Then, click Next.
    7)     Then choose the folder to save the recovered files and click Next.
    8)     When we see a “Restore is complete!” message, click Finish.
    Meanwhile, as I know, I'm afraid that there is no other way to look at EVM file except Windows Driver Kit. Maybe there are some third-party software that out of my mind can look at EVM files, you may need to perform more research on Internet.
    Hope this helps. Thanks.

  • HT1476 when i plug my phone into the usb port with the apple charger that came with my phone i get an error msg say charging not supported by this device.   But when i use a gigaware (radioshack brand) usb charger, no error msg.  Why?

    when i plug my phone into the usb port with the apple charger that came with my phone i get an error msg say charging not supported by this device.   But when i use a gigaware (radioshack brand) usb charger, no error msg.  Why?

    - Try restoring the iPod, first from backup and then try to factory settings/new iPod to rule out a software problem.
    - Look at the dock connector on the iPod. Look for abnormalities like bent or corroded contacts, foreign material and broken or cracked plastic.
    - Could you have damaged something when you took the iPod apart and replaced the Home button?

  • I downloaded Lightroom version 5.7 in order to support tethered capture on my Nikon D750 and its still not working. Additionally when I was prompted to give my serial number for the update it was no where to be found on my Adobe profile although I purchas

    I downloaded Lightroom version 5.7 in order to support tethered capture on my Nikon D750 and its still not working. Additionally when I was prompted to give my serial number for the update it was no where to be found on my Adobe profile although I purchased, and am paying monthly for my creative cloud for photography. Please help

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah lah go to iTunes story on your computer. You must verify your payment info before you can make purchases.  I did all that

    ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah blah go to the iTunes Store  on your computer. You must verify your payment info before you can make purchases.  I did all that, updated payment info and checked paypal it is verified, and it still won't work. Im stumped

    If you still have problem, contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

  • App not supported by your device's current configurat​ion

    Hi, If I try install some apps from Appworld (especially the converted android apps) I get a message that it is not supported by my device configuration. Is this a regional issue in that only people in specific countries can access the apps? Cheers

    aandras wrote:
    Do you have a specific app that you got this with. This way it can be tested.
    An example is the podcast app for OS 2.0 as well as the below app:
    http://appworld.blackberry.com/webstore/content/73​867/?lang=en&ei=S75XT6aXGOyp0AXqj6jwDQ&usg=AFQjCNG​...

Maybe you are looking for