BBM file

Hay! I received a video through bbm surveys, but can not open it, it says file not supported. I tried to put it on my pc to convert, but even the converter can not extract the file information. The 3gp format, I'll be able to open this file somehow?

I used this converter to format video online in the past to convert 3gp mp4 files or another.

3GP video converter

Tags: BlackBerry Developers

Similar Questions

  • BBM & & bbUI

    Hi, here is my new number (yes another ) at the prompt to register with BBM, if the user allows it, I need the application to add new menu items to the menu (invite you to download and chat with contacts in bbm) and if the user cancels the registration must add a record with the BBM menu to the menu item, but once that one of these events occur I am stock with the menu items I already have, it does not add the new.

    I tried to use ondomready and onscreenready without success events (prolly not much things are done). The call to register with bbm javascript is in the head of my file index and its call element loading the app for the first time

    
    

    Is this screen menu.html I need new menu items added once it loads, but at the moment I am prompted to save the screen is already loaded and the changes take effect.

    function registerWithBBM () {
        // Create callback invoked when access changes
    blackberry.bbm.platform.onaccesschanged = function(accessible, status) {
        if (status == "allowed") {
            // Access allowed
            var menuItem = document.getElementById("bbm-menu");
            menuItem.innerHTML += '
    Chat with Contact
    ' menuItem.innerHTML += '
    Invite to Download
    ' } else if (status == "user") { // Access blocked by user menuItem.innerHTML += '
    Connect to BBM
    ' }};

    or

    blackberry.bbm.platform.onaccesschanged = function(accessible, status) {
        if (status == "allowed") {
    dataOnTheFly_initialLoad(element);
    }
    

    where dataOnTheFly =

    function dataOnTheFly_initialLoad(element) {
        var menuItem, lista = element.getElementById('bbm-menu');
        menuItem = document.createElement('div');
        menuItem.setAttribute('data-bb-type', 'menu-item');
        menuItem.innerHTML = 'Invita a Descargar';
        lista.appendChild(menuItem);
    }
    

    Place the register w / JS BBM file on screen menu.html throws an untrapped exception

    Currently dynamically adding items to the menu in this manner is not supported in bbUI.js. If you want to do specifically on a SmartPhone simply use the API calls once you know if BBM is allowed or not. Just be careful not to use clearMenuItems as they do in the code example 's actually bbUI doing it on the phones when it does the initial installation.

    https://bdsc.webapps.BlackBerry.com/HTML5/APIs/BlackBerry.UI.menu.html#.AddMenuItem

    There was discussion on this for the Playbook as well, but it's still a work in progress.

  • qmlRegisterType problem

    I cannot register a QML type. The first time I did it with the DataModel PrayerModel type I managed to do the work. However, I get errors with the PrayerBBMManager now. It is based on the example of Battambang, but I simplified the entire BBM feature heavily.

    Real errors are:

    Description Resource    Path    Location    Type
    undefined reference to `prayerbbm::PrayerBBMManager::~PrayerBBMManager()'   PrayerJournal       line 86, external location: f:\bbndk\target_10_0_9_2318\qnx6\usr\include\qt4\QtDeclarative\qdeclarativeprivate.h    C/C++ Problem
    
    Description Resource    Path    Location    Type
    undefined reference to `prayerbbm::PrayerBBMManager::PrayerBBMManager(QObject*)'    PrayerJournal       line 82, external location: f:\bbndk\target_10_0_9_2318\qnx6\usr\include\qt4\QtDeclarative\qdeclarativeprivate.h    C/C++ Problem
    
    Description Resource    Path    Location    Type
    undefined reference to `prayerbbm::PrayerBBMManager::staticMetaObject'  PrayerJournal       line 163, external location: f:\bbndk\target_10_0_9_2318\qnx6\usr\include\qt4\QtDeclarative\qdeclarative.h  C/C++ Problem
    
    Description Resource    Path    Location    Type
    undefined reference to `prayerbbm::PrayerBBMManager::staticMetaObject'  PrayerJournal       line 189, external location: f:\bbndk\target_10_0_9_2318\qnx6\usr\include\qt4\QtDeclarative\qdeclarative.h  C/C++ Problem
    

    Here's my PrayerJournal.cpp file:

    #include "PrayerJournal.h"
    #include "prayermodel.h"
    #include "prayerbbm/prayerbbmmanager.h"
    
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    using namespace prayerbbm;
    
    PrayerJournal::PrayerJournal(bb::cascades::Application *app)
    : QObject(app)
    {
        qDebug() << "starting PrayerJournal app constructor ";
        QCoreApplication::setOrganizationName("Alliteration Applications");
        QCoreApplication::setOrganizationDomain("http://alliterationapplications.com");
        QCoreApplication::setApplicationName("Prayer Journal");
    
      qmlRegisterType("com.prayerjournal.prayerdata", 1, 0, "PrayerModel");
      qmlRegisterType("com.prayerjournal.prayerbbm", 1, 0, "PrayerBBMManager");
      qDebug() << "Registered PrayerModel and PrayerBBM types for QML";
    
      // Create a QMLDocument and load it, using build patterns.
      QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
      if (!qml->hasErrors()) {
          qDebug() << "QML is error-free! Celebrate!";
      }
      if (qml->hasErrors()) {
          qDebug() << "QML has errors";
      }
    
      //qml->setContextProperty("registrationHandler", registrationHandler);
      AbstractPane *appPage = qml->createRootObject();
      Application::instance()->setScene(appPage);
    
      qDebug() << "Created and initialized main.qml";
    }
    

    Thanks to all that refers to BBM files qml commenting regularly and working backward in this file I can identify the problem happening to qmlRegisterType statement.

    Here's the prayerbbmmanager.h:

    namespace prayerbbm
    {
        /**
         * PrayerBBMManager Description:
         *
         * This manager takes care of registering the application with BBM
         */
        class PrayerBBMManager: public QObject
        {
        Q_OBJECT
    
        public:
            PrayerBBMManager(QObject *parent = 0);
    
            virtual ~PrayerBBMManager();
    

    And the prayerbbmmanager.cpp:

    namespace prayerbbm
    {
        PrayerBBMManager::PrayerBBMManager(QObject *parent) :
                QObject(parent)
        {
             m_uuid = QString::fromUtf8("d8484b8d-bed5-4cde-8c11-462c6a04bc35");
    
             if (mSettings.value("connectToBBM").isNull()) {
                mSettings.setValue("connectToBBM", QVariant(false));
             }
        }
    
        PrayerBBMManager::~PrayerBBMManager()
        {
        }
    

    Any help would be appreciated.

    Yes it could be

    My money is also on the sources of PrayerBBMManager is not THAT MOC would be because they were transferred in a directory that is not referenced in the .pro project file

  • How to share files from Android ported app to social applications such as BBM whatsapp FB etc.

    I have an application that has a listview that fills all the music files as .mp3 etc.

    I can multiselect and remove or play in the list...

    Problem:

    When I try to share MP3 files using the social part of the app with another app it populates the MMS and Email how to add BBM app and other apps Socual whats in this action app for app... Please show us example please

    Such me please where can I find an example of this kind of action? Thank you

    Hey madmaskd,

    Currently you can share only to an Android app from a native application, as long as the intent filter is setup accepts intentions on part.

    You will not be able to share from an Android application, at the present time, however.

  • BBM SDK - Contact Selector empty when sending a file

    Hi all

    I am having some problems with the SDK to BBM and send a file to a contact. It works perfectly fine on the Simulator, but on a real device the Contact selector always appears under VACUUM (despite the fact that there are contacts in BBM users contact list).

    Here is my code to send a file to a BBM contact.

    final BBMPlatformContext platformContext = _context;
    
    BBMPlatformContactList contacts = platformContext.getUIService().showContactPicker("Send File To",  ContactListProvider.BBM_CONTACTS_WITH_APP, false, false);
            if (contacts.size() > 0)
            {
                //Pick the contact to send the file to
                final BBMPlatformContact contact = (BBMPlatformContact)contacts.getAll().nextElement();
    
                platformContext.getMessagingService().sendFile(contact, filePath, caption);
    
    }
    

    I don't know why on a real device, she appears as empty, it is what the user should do to enable my application send files to a contact?  Should the other user have my app installed too?  Any help would be appreciated to greately.

    Thank you!

    Maybe this post will help you;

    http://supportforums.BlackBerry.com/T5/Java-development/send-picture-to-BBM-contact/TD-p/1252163

  • Sharing files via BBM [amateur]

    Hey! Before I start I clear I used, gone through the invocation all the associated examples & Yes still does not know how to share a particular file to BBM contacts with just one button.

    I am building an application of sounds & it's going to be a simple list with Preview view, send options. Can anyone help to share with these sounds attached above to BBM contacts?

    About me, a startup developer and know little of QML. nothing else. So more QML is appreciated.

    You're close.  Here's what you need to do.

    Button {
        id: share
        text: "Share"
        onClicked: {
            invokeQuery.data =  "This is some text to share."
            invokeQuery.updateQuery();
            invokeShare.trigger("bb.action.SHARE");
        }
        attachedObjects: [
            Invocation {
                id: invokeShare
                query {
                    InvokeQuery {
                        id: invokeQuery
                        mimeType: "text/plain"
                        invokeTargetId: "sys.bbm.sharehandler"
                        onQueryChanged: invokeShare.query.updateQuery()
                    }
                }
            }
        ]
    }
    
  • Library of BBM Integartion in .pro file name error

    The bar of the file descriptor is defined in law. That's what I included in the .pro file:

    LIBS +=-lbbplatformbbm

    That's what I get:

    MAKEFILE_GENERATORC:\bbndk\host_10_0_9_52\win32\x86\usr\bin\ntox86-ld: cannot find -lbbplatformbbm
    cc: C:/bbndk/host_10_0_9_52/win32/x86/usr/bin/ntox86-ld caught signal 1
    make[2]: *** [o-g/PicStory] Error 1
    make[2]: Leaving directory `C:/Users/Aleksandar/ndk-10.0.9-workspace/PicStory/PicStory/x86'
    make[1]: Leaving directory `C:/Users/Aleksandar/ndk-10.0.9-workspace/PicStory/PicStory/x86'
    make[1]: *** [debug] Error 2
    make: *** [Simulator-Debug] Error 2
    

    As can be seen, I'm building for Simulator. How can I fix this error?

    The Alpha Devl BlackBerry Simulator does not support BBM.  Do you get errors when generating device?

  • BlackBerry Q10 location files of images received through BBM surveys

    Hello

    I would like to know where are the image files received by BBM stored in my phone? Can I not find these pictures separately in my Gallery, or anywhere via the file manager. When I want to open / access a received image for a BBM convo, I have to go to BBM and well as the convo up to this image. Similarly, because of the same problem I can't even transfer these images on PC since I can't find their files in my camera. Please guide.

    Kind regards.

    Hold your finger on the image and the context menu, click on 'Save photo' then it will be anywhere you choose to save it.

  • BBM CSV Files in BBM Android

    Hello

    In my gemini 3G, I could access CSV files belong to BBM. I then opened the file in the text editor. It would make my job easier if I want to search for particular message when I forgot the sender.

    How do android BBM? I tried to plug the Android into a computer and searched the files. But the search returns nothing.

    I activated the BBM history soon as I downloaded it.

    Thank you.

    Doni

    Hi @noodlehouse

    BBM for BlackBerry OS would place the history of cats in a CSV file but BBM for 10 BlackBerry, Android, iPhone and Windows phone does not more; Historical cats when activated can be viewed in the cat itself.

    To learn more about the functioning of BBM Chat history discover this post, I've published on our Blog help. Thank you!

    How to save precious moments using surveys BBM Chat history

  • BBM BBM plant after that dropbox file has been deleted

    Hey everyone, I recently shared a video using the dropbox feature and I accidentally deleted the video of my selection but now the cat closes when I try to scroll the time that I provided the link dropbox.

    Someone has an idea?

    Thank you.

    RE: I have manged to solve such problem by importing files to dropbox and renaming to what messenger BBM had renamed them also. In doing so, BBM has detected files where there and allowed me to move forward through the history of cats.

    "Problem solved, but I found a bug.

    If an official can report this bug that would be great.

    The bug is that if you link something someone using the dropbox function, then by removing the access dropbox file later, you can not go through the history of the cat

    -A.

  • BlackBerry Smartphones BBM resources missing files

    After a recent upgrade of my BBM icon label changed to net.rim.bb and when I click to send a BBM I get tell screen: Eception missing Exception of resource files.  How can I fix this?  I am running OS 6.0 Bundle 2647.

    Thanks for any help.

    Hello and welcome to the community!

    I recommend that you remove, then reinstall BBM:

    • KB10040 How to view or delete applications on the BlackBerry smartphone

    To reinstall, please see this KB:

    • KB17625 How to install or transfer has already purchased apps from BlackBerry App World for BlackBerry smartphone

    Otherwise, you would probably look much more drastic measures - WIPE, OS Reload, BBSAK Wipe/Reload, etc..

    See you soon!

  • BlackBerry smartphone how to open BBM bak. file Please HELP!

    Help, please!

    I have a BB Bold 9900 and must open my backup files in urgent BBM!

    I can easily open the file history through Excel on my laptop, but I can't open the backup files, and it is these conversations that I need.

    The files appear like this for example...

    for example. BBM-(12-08-31-10-53).bak

    I also need to open the history files stored in Whatsapp, once again, I can't open these files.

    Any suggestion would be appreciated..!  Thank you!

    Hi pellosmith and welcome to the community of BlackBerry Support Forums!

    BBM and BlackBerry smartphone backup cannot be opened and read on your computer. These files are intended only to restore the BlackBerry smartphone or the application itself.

    Thank you.

  • The file size for sharing on BBM blackBerry 10

    Hello.. whenever I'm trying to share a file that is larger than 16 MB, I get denied that the file is too large, and max is 16 MB... that happens even when I am trying to attach a file to an e-mail... Is this customizable or there is a limit and cannot be exceeded. I am holder of a BOND and just upgraded to 10.3.2.474...

    Thank you

    Hello

    Nope... it's a strict limit to refer:

    Good luck!

    PS - large attachments are the bane of all admins to email. Consider an e-mail must go through multiple gateways on its way between the sender and the recipient. And if there are multiple recipients, which multiplies very quickly. Large attachments take time to process through these gateways and treatment for all the world get bogged down. Therefore, it is best to download the file to a shared and then environment send only the link to the file rather than the entire file.

  • Classic BlackBerry about how to extract files to backup such as Whatsapp and BBM cat stories?

    What program can I use to open the cats Whatsapp and BBM history so that I can print them? I save them on my laptop, but I can't open them to view the history of my cats. I need them as evidence to show that I was in contact with my partner all day during the 4 years for our visa. Help, please. Thank you and know you sooner.

    Concerning
    Ling

    You can not. They are visible only on a BB device. I'm sorry.

  • BlackBerry Smartphones have 2 subfolders contained in my Inbox email work - I can see the files on my Torch 9800 but emails don't come from my office in the folder on my bbm

    I tried the following information (ie. How to synchronize a subfolder) - but I need these subfolders out of my Inbox, not my address book

    Hello

    have you used the public knowledge base article?

    Article ID: KB13480 How to synchronize a subfolder using BlackBerry Desktop Manager

    If you did, it is normal. This article talks about subfolders in the Contacts folder.

    The article you want to use is this one:

    Article ID: KB04297 How to configure the folder redirection to receive e-mail messages sent to folders other than the Inbox

Maybe you are looking for

  • announce incoming calls on bluetooth?

    i've got att iphone6.  friends have iphone6 on verizon.  when their phones ring * Bluetooth *, the incoming phone number is announced (with a ring tone). It is a feature of verizon or can it be installed on any iphone 6?  or a hidden feature of at &

  • Satellite 510 - Wlan upnp sharing question

    Hello I have a Sat 510 Windows 7, I connect to my network through a wireless access point.Everything seems to work except upnp sharing from my laptop which does not recognize some devices, same XBOX360 connect / even though I can see it on the networ

  • How can I password protect my USB port?

    Hello I use Windows XP SP 2. I want the password protect my USB port so that whenever I plug in a device, like USB flash drive, modem, USB etc key, you are prompted for the password which will protect my computer against unauthorized individuals to u

  • No sound running on windows 7

    Hi all, I have a problem with my sound. I have a basic PC and dual boot Windows 7 and Ubuntu 9. They both are advantages but randomly one day all the soun has stopped working under windows. If I boot Ubuntu sound is very good and works but start in w

  • Movie Maker editing: exhibition & Audio

    Movie Maker editing: exhibition & Audio? With Photo retouching closet, you can correct the exposure/contrast of a photo How can we do the same for videos: reduce or correct the exposure/contrast of a video? How an increase/correct the audio levels of