Streaming video to Blackberry

Is there a way to stream video files from the server?

Does Blackberry have a built-in video player where can I play streaming video?

+2


source to share


2 answers


Yes, you can. There are two ways to stream video to bb device:

  • using javax.microedition.media.Player from jsr-135
  • using a standard media application

See How To - Play videos in the BlackBerry smartphone app



You can test it through the BlackBerry browser at http://m.youtube.com
How to watch YouTube videos on the BlackBerry Bold 9000

You will need to use WAP or WiFi protocol for RTSP:
Media app will switch to WAP for streaming media

Supported media types on your BlackBerry smartphone

+7


source


I am using this code to open the embedded player (for both remote and local videos):



private void handleVideo(String url) {
    try {
        Invocation inv = new Invocation();

        if (url.startsWith("local")) {
            url = url.substring(url.lastIndexOf('/'));
            InputStream is = getClass().getResourceAsStream("/res" + url);
            if (is == null)
                return;
            // move resource to device memory so that we get an url which
            // can be passed to Invocation
            url = "file:///store/home/user/videos" + url;
            FileConnection dest = (FileConnection) Connector.open(url);
            if (!dest.exists())
                dest.create();
            dest.setWritable(true);
            OutputStream o = dest.openOutputStream();
            byte[] buf = new byte[8192];
            int length = -1;
            while ((length = is.read(buf)) > 0)
                o.write(buf, 0, length);
            o.close();
            is.close();
            dest.close();
        }

        inv.setID(BlackBerryContentHandler.ID_MEDIA_CONTENT_HANDLER);
        inv.setArgs(new String[] { BlackBerryContentHandler.MEDIA_ARGUMENT_VIEW_MEDIA });
        inv.setURL(url);
        Registry reg = Registry.getRegistry(getClass().getName());
        reg.invoke(inv);
    } catch (Throwable e) {
        UiApplication.getUiApplication().invokeAndWait(new RunnableDialog(e.getMessage()));
    }
}

      

+1


source







All Articles