[HELP] H264 video camera trying to change HelloVideoCamera

I am very new to recording video and video encoding of the animals.

In this line, I have error 22

 

camera_error_t error = camera_start_encode(mCameraHandle, NULL, NULL, NULL, NULL, NULL);

fprintf(stderr, "camera_start_encode() error %d", error); // It returns 22

I checked here https://developer.blackberry.com/native/reference/core/com.qnx.doc.camera.lib_ref/topic/camera_error... what is the error 22, but I do not see the error with 22 values

Here's my complete code

HelloVideoCameraApp::HelloVideoCameraApp(bb::cascades::Application *app) :
        QObject(app),
        mCameraHandle(CAMERA_HANDLE_INVALID),
        mVideoFileDescriptor(-1)
{
    mViewfinderWindow = ForeignWindowControl::create().windowId(QString("cameraViewfinder"));
    mViewfinderWindow->setUpdatedProperties(WindowProperty::Position | WindowProperty::Size | WindowProperty::Visible);

    QObject::connect(mViewfinderWindow, SIGNAL(windowAttached(screen_window_t, const QString &, const QString &)), this, SLOT(onWindowAttached(screen_window_t, const QString &,const QString &)));

    mStartFrontButton = Button::create("Front Camera").onClicked(this, SLOT(onStartFront()));
    mStartRearButton = Button::create("Rear Camera").onClicked(this, SLOT(onStartRear()));
    mStopButton = Button::create("Stop Camera").onClicked(this, SLOT(onStopCamera()));
    mStopButton->setVisible(false);
    mStartStopButton = Button::create("Record Start").onClicked(this, SLOT(onStartStopRecording()));
    mStartStopButton->setVisible(false);

    mStatusLabel = Label::create("filename");
    mStatusLabel->setVisible(false);

    Container* container = Container::create()
        .layout(DockLayout::create())
        .add(Container::create()
            .horizontal(HorizontalAlignment::Center)
            .vertical(VerticalAlignment::Center)
            .add(mViewfinderWindow))
        .add(Container::create()
            .horizontal(HorizontalAlignment::Left)
            .vertical(VerticalAlignment::Top)
            .add(mStatusLabel))
        .add(Container::create()
            .horizontal(HorizontalAlignment::Center)
            .vertical(VerticalAlignment::Bottom)
            .layout(StackLayout::create()
                        .orientation(LayoutOrientation::LeftToRight))
                        .add(mStartFrontButton)
                        .add(mStartRearButton)
                        .add(mStartStopButton)
                        .add(mStopButton));

    app->setScene(Page::create().content(container));
}

HelloVideoCameraApp::~HelloVideoCameraApp()
{
}

void HelloVideoCameraApp::onWindowAttached(screen_window_t win, const QString &group, const QString &id)
{
    int i = (mCameraUnit == CAMERA_UNIT_FRONT);
    screen_set_window_property_iv(win, SCREEN_PROPERTY_MIRROR, &i);
    i = -1;
    screen_set_window_property_iv(win, SCREEN_PROPERTY_ZORDER, &i);
    screen_context_t screen_ctx;
    screen_get_window_property_pv(win, SCREEN_PROPERTY_CONTEXT, (void **)&screen_ctx);
    screen_flush_context(screen_ctx, 0);
}

int HelloVideoCameraApp::createViewfinder(camera_unit_t cameraUnit, const QString &group, const QString &id)
{
    if (mCameraHandle != CAMERA_HANDLE_INVALID)
    {
        qDebug() << "camera already running";
        return EBUSY;
    }

    mCameraUnit = cameraUnit;

    if (camera_open(mCameraUnit,CAMERA_MODE_RW | CAMERA_MODE_ROLL,&mCameraHandle) != CAMERA_EOK)
    {
        qDebug() << "could not open camera";
        return EIO;
    }

    qDebug() << "camera opened";

    //camera_set_video_property(mCameraHandle, CAMERA_IMGPROP_VIDEOCODEC, CAMERA_VIDEOCODEC_H264);

    camera_error_t error = camera_set_video_property(mCameraHandle,
                                                                CAMERA_IMGPROP_VIDEOCODEC, CAMERA_VIDEOCODEC_H264,
                                                                CAMERA_IMGPROP_WIDTH, 640,
                                                                CAMERA_IMGPROP_HEIGHT, 352,
                                                                CAMERA_IMGPROP_FRAMERATE, (double)30.0);

    if(error == CAMERA_EOK)
        {
                qDebug() << "VIDEO PROPERTY SUCCESS";
        }
        else
        {
                qDebug() << "VIDEO PROPERTY ERROR: " << error;
        }

    if (camera_set_videovf_property(mCameraHandle,CAMERA_IMGPROP_WIN_GROUPID, group.toStdString().c_str(),CAMERA_IMGPROP_WIN_ID, id.toStdString().c_str()) == CAMERA_EOK)
    {
        qDebug() << "viewfinder configured";

        if (camera_start_video_viewfinder(mCameraHandle, NULL, NULL, NULL) == CAMERA_EOK)
        {
            qDebug() << "viewfinder started";
            mStartFrontButton->setVisible(false);
            mStartRearButton->setVisible(false);
            mStopButton->setVisible(true);
            mStartStopButton->setText("Start Recording");
            mStartStopButton->setVisible(true);
            mStartStopButton->setEnabled(true);
            return EOK;
        }
    }

    qDebug() << "couldn't start viewfinder";

    camera_close(mCameraHandle);
    mCameraHandle = CAMERA_HANDLE_INVALID;
    return EIO;
}

void HelloVideoCameraApp::onStartFront()
{
    qDebug() << "onStartFront";

    if (mViewfinderWindow)
    {
        // create a window and see if we can catch the join
        if (createViewfinder(CAMERA_UNIT_FRONT,mViewfinderWindow->windowGroup().toStdString().c_str(),mViewfinderWindow->windowId().toStdString().c_str()) == EOK)
        {
            qDebug() << "created viewfinder";
        }
    }
}

void HelloVideoCameraApp::onStartRear()
{
    qDebug() << "onStartRear";

    if (mViewfinderWindow)
    {
        // create a window and see if we can catch the join
        if (createViewfinder(CAMERA_UNIT_REAR,mViewfinderWindow->windowGroup().toStdString().c_str(),mViewfinderWindow->windowId().toStdString().c_str()) == EOK)
        {
            qDebug() << "created viewfinder";
        }
    }
}

void HelloVideoCameraApp::onStopCamera()
{
    qDebug() << "onStopCamera";

    if (mCameraHandle != CAMERA_HANDLE_INVALID)
    {
        // closing the camera handle causes the viewfinder to stop which will in turn
        // cause it to detach from the foreign window
        camera_close(mCameraHandle);
        mCameraHandle = CAMERA_HANDLE_INVALID;
        // reset button visibility
        mStartStopButton->setVisible(false);
        mStopButton->setVisible(false);
        mStartFrontButton->setVisible(true);
        mStartRearButton->setVisible(true);
    }
}

void HelloVideoCameraApp::onStartStopRecording()
{
    qDebug() << "onStartStopRecording";

    if (mCameraHandle != CAMERA_HANDLE_INVALID)
    {
        if (mVideoFileDescriptor == -1)
        {
            soundplayer_play_sound_blocking("event_recording_start");

            char filename[CAMERA_ROLL_NAMELEN];

            if (camera_roll_open_video(mCameraHandle,&mVideoFileDescriptor,filename,sizeof(filename),CAMERA_ROLL_VIDEO_FMT_DEFAULT) == CAMERA_EOK)
            {
                qDebug() << "opened " << filename;

//                if (camera_start_video(mCameraHandle,filename,NULL,NULL,NULL) == CAMERA_EOK)
//                {
//                    qDebug() << "started recording";
//                    mStartStopButton->setText("Stop Recording");
//                    mStopButton->setEnabled(false);
//                    mStatusLabel->setText(basename(filename));
//                    mStatusLabel->setVisible(true);
//                    return;
//                }

                camera_error_t error = camera_start_encode(mCameraHandle, NULL, NULL, NULL, NULL, NULL);

                                if(error == CAMERA_EOK)
                                {
                                        qDebug() << "Encoding started\n";
                                        mStartStopButton->setText("Stop Recording");
                                        mStopButton->setEnabled(false);
                                        mStatusLabel->setText(basename(filename));
                                        mStatusLabel->setVisible(true);
                                        return;
                                }
                                else
                                {
                                        qDebug() << "Encoding Failed\n";
                                }

                                fprintf(stderr, "camera_start_encode() error %d", error);

                qDebug() << "failed to start recording: " << error;
                camera_roll_close_video(mVideoFileDescriptor);
                mVideoFileDescriptor = -1;
            }

            soundplayer_play_sound("event_recording_stop");
        }
        else
        {
            soundplayer_play_sound("event_recording_stop");
            camera_stop_encode(mCameraHandle);
            qDebug() << "stopped recording";
            camera_roll_close_video(mVideoFileDescriptor);
            mVideoFileDescriptor = -1;
            mStartStopButton->setText("Start Recording");
            mStopButton->setEnabled(true);
            mStatusLabel->setVisible(false);
        }
    }
}

Any help is appreciated. Please, I beg you. Thank you.

Thank you... I eliminated the camera_start_encode function

my main problem was I really need to encode H264 video recording... and now I have the solution... Knobtviker taugtht me... I used the BestCam sample...

added to this camera_init_video_encoder(); to the constructor

and added this line after the opening of the camera

camera_set_videoencoder_parameter (mHandle, CAMERA_H264AVC_BITRATE, 1000000, CAMERA_H264AVC_KEYFRAMEINTERVAL, 3, CAMERA_H264AVC_RATECONTROL, CAMERA_H264AVC_RATECONTROL_VBR, CAMERA_H264AVC_PROFILE, CAMERA_H264AVC_PROFILE_HIGH, CAMERA_H264AVC_LEVEL, CAMERA_H264AVC_LEVEL_4);

These properties too

QByteArray groupBA is mFwc-> windowGroup () .toLocal8Bit ();.
QByteArray winBA is mFwc-> windowId () .toLocal8Bit ();.
ERR = camera_set_videovf_property (mHandle, CAMERA_IMGPROP_HWOVERLAY, 1, CAMERA_IMGPROP_FORMAT, CAMERA_FRAMETYPE_NV12, CAMERA_IMGPROP_WIN_GROUPID, groupBA.data (), CAMERA_IMGPROP_WIN_ID, winBA.data (), CAMERA_IMGPROP_WIDTH, CAMERA_IMGPROP_HEIGHT, 720, 720, CAMERA_IMGPROP_MAXFOV, 0);
ERR = camera_set_video_property (mHandle, CAMERA_IMGPROP_WIDTH, CAMERA_IMGPROP_HEIGHT, 720, 720, CAMERA_IMGPROP_AUDIOCODEC, CAMERA_AUDIOCODEC_AAC, CAMERA_IMGPROP_STABILIZATION, 1); CAMERA_IMGPROP_VIDEOCODEC, CAMERA_VIDEOCODEC_AVC1,

now I can record video in H264 format.

Tags: BlackBerry Developers

Similar Questions

  • Hi Im trying to switch plans but anyway I'm stuck inside a blank page in my adobe account. Oh I live in South Africa I limited the speed of the line and I think I ran... Any help?, Hi Im trying to change the plans but anyway I'm stuck inside some bl

    Hi Im trying to switch plans but anyway I'm stuck inside a blank page in my adobe account. Oh I live in South Africa I limited the speed of the line and I think I ran... Any help?, Hi Im trying to change the plans but anyway I'm stuck inside a blank page in my adobe account. Oh I live in South Africa I limited the speed of the line and I think I ran... Any help?

    Hello

    Please consult phone support | Orders, returns of trade

    Hope this helps!

  • Glitches video while trying to change

    I really need help. I'm a little frustrated. I just bought a JVC Everio HDD Camcorder. I do a video montage of a theatre in the region. I tried to download the video directly from the camcorder multiple times in the first 4 Elements. I tried to save media in a file and upload it in the file. I also tried to download on the multimedia software supplied with the camcorder. Whenever I tried (which is several times) I sometimes right wing media that there is an error, so I try again. Or when I put in the time line and start editing, there are seeds of green screen. But when I look on the software with the camera it plays perfectly fine in the place of one. It's the same with when I play it in Windows Movie Maker. I like to use the primary cause I can add a Menu screen and edit the video better. I don't want to have on any hidden through Movie Maker first. Anyone know why or how to fix the glitches? It seems to be on every clip I have. The video plays as well on my friends computer. I tried to close the first and reopen it. I tried a new project. I intend to do more video editing with this unit in the future so I don't want to be like that not all projects. Any advice or words of wisdom would be greatly appreciated. Thank you

    I noticed the other post, but some of it was in Dutch. But it's the same problem and I believe that the same camera that I use. I did not yet get point transitions cause, I immediately noticed the green. My magnification is fit. The videos are also is a mod my first is 4.0, however. I save a clip Window Movie Maker and registered as a .wmv and seems to work very well. I wouldn't really have to do all my editing in Movie Maker, but...

    Thank you

    This is a mod files are bad general new when it comes to Premiere Elements.

    I know from your original post that you want to avoid to convert the format of your video to a more appropriate for Premiere Elements whose native format of the timeline is DV AVI.

    Then, how about this:

    1 as a mini project, change is a mod in .mpg file name and see if you have better luck getting video in Premiere Elements and editing it there.

    2. If that does not succeed, then try the conversion of MPEG Streamclip (is a mod in DV AVI) and see if that spell success (which it usually does).

    3. then decide what path will follow you for big project once these minis (experiences) tests.

    There's a FAQ here on conversion to DV AVI and MPEG Streamclip. If you can't find it, I post in the morning for you. I used the program and have found fast, easy and effective. If necessary, I can give you a step by step I used several times with success.

    RTA

  • my browser cannot open google and facebook and other https sites that it does not open even the app store does not work, I tried to change my DNS google DNS and disable IPv6 but still no use, help PLZ!

    my browser cannot open google and facebook and other https sites that it does not open even the app store does not work, I tried to change my DNS google DNS and disable IPv6 but still no use, help PLZ!

    You may have installed one or more variants of the malware "VSearch' ad-injection. Please back up all data, and then take the steps below to disable it.

    Do not use any type of product, "anti-virus" or "anti-malware" on a Mac. It is never necessary for her, and relying on it for protection makes you more vulnerable to attacks, not less.

    Malware is constantly evolving to work around defenses against it. This procedure works now, I know. It will not work in the future. Anyone finding this comment a couple of days or more after it was published should look for a more recent discussion, or start a new one.

    Step 1

    VSearch malware tries to hide by varying names of the files it installs. It regenerates itself also if you try to remove it when it is run. To remove it, you must first start in safe mode temporarily disable the malware.

    Note: If FileVault is enabled in OS X 10.9 or an earlier version, or if a firmware password is defined, or if the boot volume is a software RAID, you can not do this. Ask for other instructions.

    Step 2

    When running in safe mode, load the web page and then triple - click on the line below to select. Copy the text to the Clipboard by pressing Control-C key combination:

    /Library/LaunchDaemons

    In the Finder, select

    Go ▹ go to the folder...

    from the menu bar and paste it into the box that opens by pressing command + V. You won't see what you pasted a newline being included. Press return.

    A folder named "LaunchDaemons" can open. If this is the case, press the combination of keys command-2 to select the display of the list, if it is not already selected.

    There should be a column in the update Finder window. Click this title two times to sort the content by date with the most recent at the top. Please don't skip this step. Files that belong to an instance of VSearch will have the same date of change for a few minutes, then they will be grouped together when you sort the folder this way, which makes them easy to identify.

    Step 3

    In the LaunchDaemons folder, there may be one or more files with the name of this form:

    com Apple.something.plist

    When something is a random string, without the letters, different in each case.

    Note that the name consists of four words separated by dots. Typical examples are:

    com Apple.builins.plist

    com Apple.cereng.plist

    com Apple.nysgar.plist

    There may be one or more items with a name of the form:

    com.something.plist

    Yet once something is a random string, without meaning - not necessarily the same as that which appears in one of the other file names.

    These names consist of three words separated by dots. Typical examples are:

    com.semifasciaUpd.plist

    com.ubuiling.plist

    Sometimes there are items (usually not more than one) with the name of this form:

    com.something .net - preferences.plist

    This name consists of four words (the third hyphen) separated by periods. Typical example:

    com.jangly .net - preferences.plist

    Drag all items in the basket. You may be prompted for administrator login password.

    Restart the computer and empty the trash.

    Examples of legitimate files located in the same folder:

    com.apple.FinalCutServer.fcsvr_ldsd.plist

    com Apple.Installer.osmessagetracing.plist

    com Apple.Qmaster.qmasterd.plist

    com Apple.aelwriter.plist

    com Apple.SERVERD.plist

    com Tether.plist

    The first three are clearly not VSearch files because the names do not match the above models. The last three are not easy to distinguish by the name alone, but the modification date will be earlier than the date at which VSearch has been installed, perhaps several years. None of these files will be present in most installations of Mac OS X.

    Do not delete the folder 'LaunchDaemons' or anything else inside, unless you know you have another type of unwanted software and more VSearch. The file is a normal part of Mac OS X. The "demon" refers to a program that starts automatically. This is not inherently bad, but the mechanism is sometimes exploited by hackers for malicious software.

    If you are not sure whether a file is part of the malware, order the contents of the folder by date modified I wrote in step 2, no name. Malicious files will be grouped together. There could be more than one such group, if you attacked more than once. A file dated far in the past is not part of the malware. A folder in date dated Middle an obviously malicious cluster is almost certainly too malicious.

    If the files come back after you remove the, they are replaced by others with similar names, then either you didn't start in safe mode or you do not have all the. Return to step 1 and try again.

    Step 4

    Reset the home page in each of your browsers, if it has been modified. In Safari, first load the desired home page, then select

    ▹ Safari preferences... ▹ General

    and click on

    Set on the current Page

    If you use Firefox or Chrome web browser, remove the extensions or add-ons that you don't know that you need. When in doubt, remove all of them.

    The malware is now permanently inactivated, as long as you reinstall it never. A few small files will be left behind, but they have no effect, and trying to find all them is more trouble that it's worth.

    Step 5

    The malware lets the web proxy discovery in the network settings. If you know that the setting was already enabled for a reason, skip this step. Otherwise, you should undo the change.

    Open the network pane in system preferences. If there is a padlock icon in the lower left corner of the window, click it and authenticate to unlock the settings. Click the Advanced button, and then select Proxies in the sheet that drops down. Uncheck that Auto Discovery Proxy if it is checked. Click OK, and then apply.

    Step 6

    This step is optional. Open the users and groups in the system preferences and click on the lock icon to unlock the settings. In the list of users, there may be some with random names that have been added by the malware. You can remove these users. If you are not sure whether a user is legitimate, do not delete it.

  • I have 3 short videos I tried emailing stuck in Outbox of my iPhone 6. They tried to send more than an hour. I can't delete them, "Change" is not available in the Outbox. How can I get rid of these so mail will stop trying?

    I have 3 short videos I tried emailing stuck in Outbox of my iPhone 6. They tried to send more than an hour. I can't delete them, "Change" is not available in the Outbox. How can I get rid of these so mail will stop trying?

    Can drag you across the message in the Outbox overview to get the Red delete button? It's been a while since I had paste an email in the Outbox, so I don't remember if that's possible.

    IF your account is an IMAP account, try to delete the e-mail on the Mac. Actions sync between devices in IMAP email, so they should be in the Outbox on the server and you should be able to get to them in the Mail from Mac application, use you it, or in a web browser on the server.

    IF this is not possible for some reason, try the mail application to the phone reboots and the closing force force the phone and then try again. Press the Home button twice quickly. You will see small glimpses of your applications recently used. Blow up the Swipe on application brief mail app to close

    To force the reboot your device, press and hold the two buttons of sleep/wake and home for at least ten seconds, until you see the Apple logo.

  • Hello! I have a problem with the change of the method of payment. PMT_000008 error, when I'm trying to change the method of payment. Help, please!

    PMT_000008 error, when I'm trying to change the method of payment. Help, please! Cookies are cleaned, tried different browsers. It does not help.

    Since this is an open forum, not Adobe support... you must contact Adobe personnel to help

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • «The video add-on drive could not install: impossible to validate the license online.» How can it help me? I tried the Extension handles CC too. But no success.

    «The video add-on drive could not install: impossible to validate the license online.» How can it help me? I tried the Extension handles CC too. But no success.

    This error indicates usually that one of the following problems:

    • You are not connected to Creative CC Cloud Desktop App and/or Adobe site with the same Adobe ID modules.
    • More than one user is logged in your Adobe software on your computer using an Adobe ID different from yourself, or indeed you have more than one Adobe ID that you used to connect to and the license file is damaged.
    • You are behind a firewall that blocks our license server calls.

    Please first make sure that you are connected to the Adobe website modules (top-right) and the desktop application CC (high button on the page of good settings, preferences, account) with the correct ID. If you are, then next steps are please uninstall and reinstall the extensions, reset between Manager.

  • For some reason, the tab 'Base' is missing from my file to develop trying to change using LR5... ? Help, please

    For some reason, the tab 'Base' is missing from my file to develop trying to change using LR5... ? Help, please

    Right-click (Cmd-click Mac) on another connector for Panel as "tone curve". Make sure there is a check mark for Basic as all other sections of the Panel you want to display.

  • Hi I'm trying to change my payment information to update a new credit card to ensure my service is not interrupted, but it isn't allowing me to do - please help

    Hi I'm trying to change my payment information to update a new credit card to ensure my service is not interrupted, but it isn't allowing me to do - please help.  I have connected, but there's no need to change my details or add a new card online

    Hi johpulp,

    Please see this link for the FAQ:manage your membership and your payment. Cloud Creative

    You can update manually by following the steps in this FAQ, or you can access our support chat: http://adobe.ly/19llvMN

    Kind regards

    Florence

  • I just installed 5 Lightroom, but cannot import photos, there is no option to import anywhere. Get the pop up saying error trying to change modules? Help with this?

    I just installed 5 Lightroom, but cannot import photos, there is no option to import anywhere. Download pop up saying error trying to change modules.

    I had this with the trial, then I bought the license and still happens.  Help with this?

    Error changing modules | Lightroom

  • HP Elite X 3: HP Elite X 3 video camera works no-Code error (0x8007045D) 0xA00F427F

    Someone at - it problems with the help of the video camera?

    It does not work for me and I get the following error:

    "Something went wrong".
    Sorry, we weren't able to record video.
    "If you need it, here is the error code: 0xA00F425E (0xC00DABE4).

    As well, the normal camera crashes when I use HDR.

    OS version: 10.0.14393.189
    Revision number of the firmware: 0002.0000.0007.0088

    Edit: seems the changes both error codes: 0xA00F427F (0x8007045D)

    WDRT is Windows device recovery tool.

    This should always be the last step of wiping a Microsoft phone powered :-)

    Thanks for your reply.

    Will try if that helps out.

    Concerning

    JoeTec

  • I am expierencing problems with my isight Camera on my MacBook Pro. Suddenly the video camera does not start (no green light on) FT or Photo Booth. The screen is black, if I restart computer it works but after closing the lid, it stops. V10.11.3

    I have problems with my view i camera on my Mac Book Pro. Suddenly the video camera does not work (no green light on) FT or Photo Booth. The screen is black, if I restart it, it works but after closing the lid it stops and I have to restart the computer.  I use V10.11.3. An idea about what is happening

    Hello mpm068,

    Thank you for using communities of Apple Support.

    Since your iSight webcam works up to the time that your Mac goes to sleep, I would like you to start please help desk trying to replicate this problem then to reboot in safe mode:

    1. Choose the Apple menu > shut down.

    2. After your Mac stops, wait 10 seconds, then press the power button.

    3. As soon as you hear the startup tone, hold down the SHIFT key.

      You must press the SHIFT key as soon as possible once you hear the startup tone, but not before.

    4. Release the SHIFT key when you see the gray Apple logo and progress indicator.

    To exit safe mode, restart your Mac, but no press during the startup.

    OS X El Capitan: start in safe mode

    Take care.

  • Onboard HD video cam does not

    The integrated video camear does not work although the device manager says it's working properly.  There is one of installed driver USB video camera can someone advise if this is the driver of a built-in camera? They are one and the same or would there be a shock?

    Hi Bob,

    Welcome to the Microsoft community.

    I understand how it could be frustrating when things do not work as expected. Please, I beg you, don't worry I'll try my best to resolve the issue.

    1. don't you make changes to the computer before the show?
    2. what operating system is installed on the computer?

    I suggest you run fixit material and devices and see if that helps.

    Hardware devices do not work or are not detected in Windows
    http://support.microsoft.com/mats/hardware_device_problems/en-us.

    Hope this information is helpful and let us know if you need more assistance. We will be happy to help.

  • SDRAM error a video camera and pray portable computer

    Hello

    I have a 16 GB sandisk Extreme. I've been working successfully in my video camera.

    After 20% shooting, camera reports errors and the card cannot be read.

    When I put the card in my laptop it prompts "format?

    I think that the card has become corrupted.

    Q1: can I get data / videos of this map-if yes how. I tried to scan with Rescue Pro deluxe, and it doesn't seem to be able to read anything. This is the best software for recovery?

    Q2: If I format the sdram memory, it will totally wipe the card and then I won't be able to recover the data, or I'll be able to analyze with pro deluxe grab the videos?

    Thank you

    Ian

    Problem solved.

    So here's how I solved this and some suggestions for Sandisk / panasonic.

    So the scenarios is as follows, the video recorder not turn off on a few occasions where she was placed in the bag and registered 2 massive records. My thought is that it corrupted the disk header.

    Whenever it was designed SDram video camera, the camera flashed an error with the card. When I put it in a Windows system, I asked a disc format.

    So on advice form one of the techs at work, I used Linux, linux.

    I created a USB bootable from this site web http://www.sysresccd.org/SystemRescueCd_Homepage

    Then started from the USB on a relativley new portable (i.e. more recent SD card probbaly)

    Once the linux system has started and I put the card in the card reader for laptop, linux was able to read the disk is full.

    Why linux reads the formats of microsoft disk I can't explain better than microsoft.

    I would say that Sandisk create a Test case to see what happens when sandisk extreme tent complete whole disk and especially using a Panasonic VCR.

     

    I hope this helps others.

     

    all the best

    Ian

    PS - Sandisk RescuePro CD (not free) I downloaded these tools and could not get the application to read the disc.

    There are several versions and was kindly pointed out by LC technologies various utilities.

    IM always shocked at how linux was able to read the disc without problem.

  • Error message trying to change permissions

    I reported a successful removal, as an administrator, of bad owner on my HDD external files. I discovered that 18 remained. I wasn't able to delete these files. I tried to change the permissions according to the instructions of the Lorien - Thread started on Thursday, may 27 in the Windows Vista Forum.
    I receive the following message if displays when I try to change the permissions using tips and tricks online:http://www.online-tech-tips.com/windows-vista/set-file-folder-permissions-vista/
    On the file properties > Security tab > edit > add I get:
    "The program cannot open the required dialog box because it cannot determine".
    Wheather the computer named "external disc" is joined to a domain. Close the
    message and try again. "Of course, it doesn't matter.
    The external drive such as a computer identification message mystifies me.  External hard drive is not a computer, it's the disk in question.
    When I tried as admin TAKEOWN and ICACLS I got access denied.
    I tried unlocker and move at the start without success. Can what steps I take to get to these files?
    Thank you

    Frank camp

    Win Vista Ultimate 64-bit SP2

    Hello

    After several months of unsuccessful attempts to clean up the files of 'wrong' on my external share disk, files and folders prior, that I could not change or remove. I finally had success.
    My stepson who is a computer expert came to visit and this solution to condition:
    He defined a user administrator in Windows exactly equal to the owner of the files on the external drive that I couldn't.
    He did this owner - admin - part of the WORKING group using the Western Digital user interface.
    With this ID, it copied the files with the wrong files in a temporary folder, deleted the wrong file and renamed the temp folder to the original folder name. That corrects bad owners and provided write access where I had only read previously accesss.
    He had no idea about how the property has been corrupted by ROBOCOPY, but I am very happy with its solution.
    I have this post in the hopes that it may help others.

    Frank C

Maybe you are looking for

  • Why can't I open a new tab?

    When I click on the tab with a + on it, located next to the current tab, a new page does not open. If I click on 'New tab' in the file menu, a new tab does not open. My question is, why not a new page opens when I click on a new tab?

  • How can I fix a runtime error 75. It only happens when I click on the shortcut of recently installed program.

    The program is called DinoCapture and is a digital camera for microscopic work.  It is stored in C:\Program Files (x 86) \Dino.  When I click on the shortcut it does not have the necessary screen but displays a run-time error 75.  I ran FixCleaner an

  • AirPrint stopped working after software update

    I installed the new software update for Photosmart more e-all-in a single model B210a (firmware TAL1FN1207AR) yesterday and now my ios devices will not print.  I can see the printer, can send the print job, but it never arrives at the printer. In the

  • Capitalize the first letter of a sentence in a Textfield

    What is the best way to get a Textfield to behave like those for the first/last name in the addressbook? What I want is a field which: Capitalizes the first letter in uppercase Capitalizes the first letter in uppercase after each point or the dot & s

  • U3014, A03, low noise level, Nov 2013

    After receiving insurance through Dell Small Business. the U3014 all new have at least Rev A03, I ordered another to replace a fading 3008WFP.  After you received yesterday, I ran through the installation program and checked everything, including the