Pregunta

Is it possible to create an application for BBOS10 that shares screen to other phone/PC on wifi network just like Radmin on Windows?

¿Fue útil?

Solución

I presume you are talking about sharing the screen regardless of content, rather than sharing the screen for a specific application that you have written.

I am not aware of any "API"s for doing this.

This leaves, I believe two options, which are loosely:

  • capture screen shots and forward these
  • capture a video of the screen and forward that

Now the screen shot API has been available since fairly early on in BB10 evolution. To use it you would just create a background Thread and take screen shots at regular intervals, which you would then send, presumably over a socket interface, to the receiving user. I suspect The biggest issue with this is that it is likely to be extremely data heavy, since the screen shots are complete images, as opposed to a streaming video which is (in my understanding) typically a series of diffs from the preceding frame.

Until very recently, it has not been possible to capture video of the BB screen, but it seems with 10.2, you now can. Please review this Thread:

Capture Video

on the BB10 forum.

Looking at this, it would appear you can capture each video frame and forward that, or presumably, capture the entire stream and forward that.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top