Can't get twitcam to work on linux FF

I can't paste into this forum, so pardon for the link (otherwise i have to retype it).
http://shengchieh.50webs.com/adobe.100517.txt
Sheng-Chieh

I'm having the same problems.
At some point I was able to hit the "allow" button and then twitcam said "the camara is in use" (by another application) but is not true. Only sound get broadcasted.
The same thing happened to me using http://livestream.com.

Similar Messages

  • Can't get JNI_CreateJavaVM to work on linux

    i am using linux redhat 7.1 and jdk1.3.1_02 and i cannot get past the JNI_CreateJavaVM call. this same code works fine under windows.
    here's my code snippet:
    #include <stdio.h>#include <memory.h>
    #define NUMBER_OF_JVM_OPTIONS 2
    static STRING_UTF8 CLASS_PATH =  "-Djava.class.path=/usr/local/LPDProgress/LPDProgress.jar:";
    static STRING_UTF8 SECURITY_POLICY =  "-Djava.security.policy=/usr/local/LPDProgress/LPDProgress.policy";
    JavaVM*           jvm = NULL;
    JNIEnv*           env = NULL;
    int JNI_Init ( void )
      JavaVMInitArgs  jvmArgs;
      JavaVMOption    jvmOptions[NUMBER_OF_JVM_OPTIONS];
      int rc;
      if (jvm == NULL)
        memset(&jvmArgs, 0, sizeof(jvmArgs));
        jvmArgs.version = JNI_VERSION_1_2;
        jvmArgs.ignoreUnrecognized = TRUE;
        JNI_GetDefaultJavaVMInitArgs(&jvmArgs);
        jvmOptions[0].optionString = SECURITY_POLICY;
        jvmOptions[1].optionString = CLASS_PATH;
        jvmArgs.nOptions = NUMBER_OF_JVM_OPTIONS;
        jvmArgs.options = jvmOptions;
        rc = JNI_CreateJavaVM(&jvm, (void**) &env, &jvmArgs);
        if (rc == JNI_ERR)
          jvm = NULL;
          printf("Error creating JVM.\n");
          return 0;
    ... snip ...I never return from the JNI_CreateJavaVM call. it core dumps with green_threads and "hangs" with native_threads.
    here's my build script:
    #! /bin/bash
    gcc -Wall -c -I /usr/local/java2/include/ -I /usr/local/java2/include/linux/ foo.c
    gcc -Wall -I /usr/local/java2/include/ -I /usr/local/java2/include/linux/ -L /usr/local/java2/jre/lib/i386/ -ljava -lverify -L /usr/local/java2/jre/lib/i386/classic/ -ljvm -L /usr/local/java2/jre/lib/i386/native_threads/ -lhpi foo.o foo_test.c -o foo_testRegards,
    Floyd Shackelford
    4 Peaks Technology Group, Inc.
    VOICE: 334.735.9428
    FAX: 916.404.7125
    EMAIL: [email protected]
    acta non verba

    the described behavior only occurs when i run as root. when i run as a non-root user, i get a valid
    createjvm, but the next call, findclass, gets a sig 11 as follows:
    1
    2
    3
    4
    SIGSEGV   11*  segmentation violation
        si_signo [11]: SIGSEGV   11*  segmentation violation
        si_errno [0]: Success
        si_code [0]: SI_USER [pid: 0, uid: 0]
            stackpointer=0xbffff33c
    Full thread dump Classic VM (1.3.1_02-b02, native threads):
        "Finalizer" (TID:0x40efb528, sys_thread_t:0x808f320, state:R) prio=8
        "Reference Handler" (TID:0x40efb300, sys_thread_t:0x8089530, state:R) prio=10
        "SIGQUIT handler" (TID:0x40efb330, sys_thread_t:0x80874d0, state:R) prio=5
        "main" (TID:0x40efb1b0, sys_thread_t:0x804a780, state:R) prio=5
    Monitor Cache Dump:
        java.lang.Class@40F04E40/40F828C8: owner "main" (0x804a780) 1 entry
    Registered Monitor Dump:
        utf8 hash table: <unowned>
        JNI pinning lock: <unowned>
        JNI global reference lock: <unowned>
        BinClass lock: <unowned>
        Class linking lock: <unowned>
        System class loader lock: <unowned>
        Code rewrite lock: <unowned>
        Heap lock: <unowned>
        Monitor cache lock: owner "main" (0x804a780) 1 entry
        Thread queue lock: owner "main" (0x804a780) 1 entry
        Monitor registry: owner "main" (0x804a780) 1 entrymy expanded code snippet is as follows:
    // choose one or the other
    //#define WINDOWS 1
    #define LINUX 1
    #ifdef WINDOWS
    #include <windows.h>
    #endif
    #include <stdio.h>
    #include <memory.h>
    #include "LPDProgress.h"
    #define NUMBER_OF_JVM_OPTIONS 2
    #ifdef LINUX
    #ifndef TRUE
    #define TRUE  1
    #endif
    #ifndef FALSE
    #define FALSE 0
    #endif
    static STRING_UTF8 CLASS_PATH =
      "-Djava.class.path=/usr/local/LPDProgress/LPDProgress.jar:";
    static STRING_UTF8 SECURITY_POLICY =
      "-Djava.security.policy=/usr/local/LPDProgress/LPDProgress.policy";
    #endif LINUX
    #ifdef WINDOWS
    static STRING_UTF8 CLASS_PATH =
      "-Djava.class.path=/cvs/PayToPrint/LPDProgress/Class/;/cvs/PayToPrint/GUIServer/Class/;/cvs/PayToPrint/UtilityClasses/Class/;";
    //  "-Djava.class.path=/cvs/PayToPrint/Install/Diginet_LX/LPDProgress/LPDProgress.jar;";
    //  "-Djava.class.path=/Program Files/Diginet_LX/LPDProgress/LPDProgress.jar;";
    static STRING_UTF8 SECURITY_POLICY =
      "-Djava.security.policy=/cvs/PayToPrint/LPDProgress/LPDProgress.policy";
    #endif WINDOWS
    JavaVM*           jvm = NULL;
    JNIEnv*           env = NULL;
    jclass            lpdProgress_class;
    jmethodID         lpdProgress_mid;
    jmethodID         displayReceivingPrintJobMsgBox_mid;
    jmethodID         dismissReceivingPrintJobMsgBox_mid;
    jobject           lpdProgress_j;
    jstring           clientAddress_j;
    int JNI_Init ( void )
      JavaVMInitArgs  jvmArgs;
      JavaVMOption    jvmOptions[NUMBER_OF_JVM_OPTIONS];
      int rc;
      if (jvm == NULL)
    printf("1\n");
        memset(&jvmArgs, 0, sizeof(jvmArgs));
        jvmArgs.version = JNI_VERSION_1_2;
        jvmArgs.ignoreUnrecognized = TRUE;
    printf("2\n");
        JNI_GetDefaultJavaVMInitArgs(&jvmArgs);
        jvmOptions[0].optionString = SECURITY_POLICY;
        jvmOptions[1].optionString = CLASS_PATH;
        jvmArgs.nOptions = NUMBER_OF_JVM_OPTIONS;
        jvmArgs.options = jvmOptions;
    printf("3\n");
        rc = JNI_CreateJavaVM(&jvm, (void**) &env, &jvmArgs);
        if (rc != JNI_OK)
          jvm = NULL;
          printf("Error creating JVM = %i.\n",rc);
          return 0;
    printf("4\n");
        lpdProgress_class = (*env)->FindClass(env,"LPDProgress");
        if (lpdProgress_class == 0)
          jvm = NULL;
          printf("Can't find class LPDProgress.\n");
          return 0;
    printf("5\n");
        lpdProgress_mid =
          (*env)->GetMethodID (
                 env,
                   lpdProgress_class,
                   "<init>",
                   "(Ljava/lang/String;)"      // String clientAddress
                   "V" );                      // return value: void
        if (lpdProgress_mid == 0)
          jvm = NULL;
          printf("Can't find method LPDProgress.<init>(String).\n");
          return 0;
    printf("6\n");
        displayReceivingPrintJobMsgBox_mid =
          (*env)->GetMethodID (
                 env,
                   lpdProgress_class,
                   "DisplayReceivingPrintJobMsgBox",
                   "()"                        // void
                   "V" );                      // return value: void
        if (lpdProgress_mid == 0)
          jvm = NULL;
          printf("Can't find method LPDProgress.DisplayReceivingPrintJobMsgBox().\n");
          return 0;
    printf("7\n");
        dismissReceivingPrintJobMsgBox_mid =
          (*env)->GetMethodID (
                 env,
                   lpdProgress_class,
                   "DismissReceivingPrintJobMsgBox",
                   "()"                        // void
                   "V" );                      // return value: void
        if (lpdProgress_mid == 0)
          jvm = NULL;
          printf("Can't find method LPDProgress.DismissReceivingPrintJobMsgBox().\n");
          return 0;
      return 1;
    }Regards,
    Floyd Shackelford
    4 Peaks Technology Group, Inc.
    VOICE: 334.735.9428
    FAX: 916.404.7125
    EMAIL: [email protected]
    acta non verba

  • Can't get X to work properly (ATI AIW 9800)

    Hello,
    I have a few problems. My first problem is this. The dpi was messed up when i first install, so i thought no big deal, I'll just go and configure the defaultserverargs setting in the startx script to "-dpi 75". This does not seem to work. Secondly,I can't get gnome to work as my default window manager. I put this line in my .xinitrc file in my home directory:
    exec gnome-session
    I also tried this:
    exec /opt/gnome/bin/gnome-session
    My last problem is that when i try to install the ati fglrx drivers with the stock kernel arch package but whenever the fglrx module is called, it says that the module doesn't exist. One thing i might mension which might be of importance is that i compiled a custom kernel during install without SMP and preemtivity so i could use my rt2500 wireless card. Thanks in advance for the help
    cheers,
    -Lukas

    sinisterguy:  You're going to need to build your own kernel module, afaik you can't just symlink a module built for another kernel and expect it to work.
    As root, run
    abs
    Once that's done (it'll check out a bunch of stuff from cvs), change to your normal user and either make a directory for the new package, or cd to some temp directory, then:
    cp /var/abs/extra/modules/ati-drivers-arch/* .
    vim PKGBUILD
    then make the following changes:
    pkgname=ati-drivers-arch
    to
    pkgname=ati-drivers-custom
    (or whatever you want to call the package)
    depends=('ati-drivers' 'kernel26')
    to
    depends=('ati-drivers')
    source=(https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/fglrx_6_8_0-$pkgver-1.i386.rpm fireglcontrol.desktop)
    to
    source=(http://www2.ati.com/drivers/linux/fglrx_6_8_0-$pkgver-1.i386.rpm fireglcontrol.desktop)
    (for some reason I can never get the source from the https address through makepkg.)
    and
    _kernel=2.6.15-ARCH
    to
    _kernel=`uname -r`
    Save and quit, then run
    makepkg
    - this'll make you a brand new kernel module package that you can install with
    pacman -A ati-drivers-custom-8.22.5-2.pkg.tar.gz
    You'll need to update this package every update to the ati-drivers in the same way you originally built it.
    If you need more information, ABS is a good place to look, as well as man makepkg. 
    </abs tutorial>

  • Can't get sound to work [SOLVED]

    Hi, I'm new to arch/linux in general. Built a computer, and can't get sound to work. I ran Ubuntu for a short period of time, and sound worked there, so I'm assuming there's no hardware issue here.
    I'm a little bit stuck as to what I should be doing. Help?
    Last edited by uma (2012-01-28 22:51:25)

    Start with the wiki: https://wiki.archlinux.org/index.php/Ad … chitecture
    If you still can't figure it out and you want help, at least post some info, instead of 'can't get it to work' (this implies that you tried something, but what?).

  • Have entrourage and want to use Mail. Can't get it to work.

    I had a macbook and purchased the Microsoft office for Mac which included Entrourage.
    I have now purchased a new macbook Pro and want to begin to use Mail rather than Entrourage. 
    I have Entrourage on my new computer but i can't get it to transfer my information to the the Mail program
    I am on Charter.net at my office and sbcglobal.net at home.
    How can i get this to work.  I can receive on Mail, but i can't send.

    check your outgoing port settings and make sure it's using a specific port and not the default port, also you might want to check to see if it is using SSL, TLS or any other encryption.  Verify the setting from your old machine setup.

  • Got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    If it's showing the red disabled screen due to incorrect passcodes then you may need to put the iPad into recovery mode : http://support.apple.com/kb/ht1808 - you should then be able to reset the iPad via your computer's iTunes and restore/resync your content to it

  • HT1151 i have a new apple external dvd drive, and i can't get it to work with my iMac?

    I have a new apple dvd drive, I was told it will work with my imac,  but when i plug it in ...nothing... iv been for update... still nothing. How can i get it to work???

    If it is this drive, note that it is for MBA's and Mini's only:
    http://store.apple.com/us/product/MC684ZM/A
    Ciao.

  • Is there a way to reset my messages account, I can't get iMessage to work on IPad nor Mac osx. Help please this is really frustrating.

    Is there a way to reset my messages account, I can't get iMessage to work on IPad nor Mac osx. Help please this is really frustrating.

    Hi,
    Is there an iPhone involved ?
    If not, what happens  if you remove the Apple ID on the iPad and then set it in Airplane Mode (allow a couple of minutes at this point) followed by re-adding the Apple ID ?
    What, if any error messages are appearing on the Mac when you try to launch the App or Login to the iMessages server ?
    Is the Apple ID linked to an iCloud account ?
    In Messages 7 (Mountain Lion) this did not seem to be important but it seems it is in Mavericks/Messages 8
    9:14 pm      Friday; April 11, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong?

    I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong? The receiver is a Lenovo eHome OVU430006/01 USB IR Receiver.

    Hello,
    You would need to pair the Apple Remote with the receiver. So I would use the generic Mac/PC receiver and follow these instructions:
    http://support.apple.com/kb/HT1619
    If that doesn't work then check in System Profiler to see if the IR receiver has been recognized by the PowerBook's hardware. You may require the install of drivers for this device to be recognized.
    Best of luck

  • I have a go daddy email account and I can't get it to work on my iPad

    I have a go daddy email account and I can't get it to work on my iPad

    Try turning the email account off and then turn it on again. Settings>Mail, Contacts, Calendars>select your gmail account>Off. Go to the mail app and then come back to the account in the settings and turn it on again.
    If you can't find any other way for the iPad to accept the password, delete the email account and then add it back onto the iPad.

  • I have a Mac Mini and I can't get it to work with my Ricoh Aficio MP 161.  Any ideas?

    I have a Mac Mini and I can't get it to work with my Ricoh Aficio MP 161.  Any ideas?

    The latest Apple driver support begins with the MP 171.
    Here is Ricoh's official driver download page specifically for the Afico MP 161. Note that new drivers for this device were released on Aug 2, and include Lion and Mountain Lion.
    Hopefully, this will solve your device issues.

  • My iPhone 5 went black. I tried pushing the on/off button and the circle button at the same time.  It worked once and then it happened again and I can't get it to work.

    Iphone 5 went black.  Tried pushing on/off and circle at the same time.  Worked yesterday and then did it again today.  Can't get it to work.

    You need to hold those button longer until you see the apple logo, then release, then wait for the phone to boot back up.

  • I just got a new computer with Windows 7 and all my songs were transferred to my new computer along with itunes.  But I can't get it to work.  I also tried downloading Quicktime and couldn't get it to download.

    I just bought a new computer and had files transferred along with itunes to the new computer.  I can't get it to work.  It doesn't recognize the extensions for itunes.  I also tried downloading Quicktime and couldn't get it to download.

    iOS: Device not recognized in iTunes for Windows
    I would start with:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • I bought a DataPilot to transfer my pictures from my phone to my macbook, and I can't get it to work

    I bought a DATAPILOT to transfer pictures to my macbook and can't get it to work.  Any suggestions please?

    Best if you try and explain what you are trying to acheive.
    Iphoto is a different paradigm than you're used to. I don't understand why you are trying to transfer your edited photos back to an external disk.
    There are tutorials here
    http://www.apple.com/findouthow/photos/
    Regards
    TD

  • I have signed up for adobe conversion to microsoft word and i can't get it to work - can you help me

    I have signed up for adobe conversion to microsoft word and I can not get it to work -  can you help me?

    Hi Mike,
    I've checked your account. I see that you just purchased the subscription this morning. The order is still pending processing, which is why you haven't yet been able to log in an use your subscription. It can take 24-48 hours for a subscription to process fully. Once it does, you'll be able to log in and convert files.
    I apologize for the inconvenience.
    Best,
    Sara

Maybe you are looking for

  • Yosemite cursor delay

    I am owner of a rMBP mid 2014 13" and upgraded to OS X Yosemite last night, as Mavericks was prompting me to. I have since struggled with a problem: My cursor lags if I keep it still for a second and move it afterwards. It takes about half a second t

  • Final Cut Studio 2 and OSX Lion issues

    I tried to upgrade to Lion on my Mid-2009 MacBook Pro, but afterward I tried to startup Final Cut Pro 6 (which is part of FCS 2), only to be told that FCP6 is a PowerPC application and it wouldn't run. I don't understand this, since I have Shake 4.1

  • Is it necessary to have bit defender on my macbook pro?

    i have a 13in. late 2011 macbook pro i was wondering if its a must for me to have this bitdefender virus scanner app installed. i was also wanted to know how i can speed up my macbook. i don't have much programs installed but i read that there are ce

  • Mac to Mac file sharing - file permissions problem upon newly created files

    Hi all, At home I have two iMac's both running Snow Leopard. iMac A/Users/*1 is sharing his iMac A/Users/*1/Documents folder. The sharing & permissions - preferences of this folder and the files inside this folder are: '*1' : (the iMac A's main user

  • Apostrophe glyph does not transfer from CS3 to CS2 by inx

    Can someone please confirm this: The Apostrophe glyph does not transfer by inx from CS3 5.0.2(640) to CS2 4.0.5(688). It does transfer by inx from CS2 4.05(688) to CS1 3.0.1(838). It also does roundtrip in CS3, CS2, and CS. This is not a problem for