• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root stream your phone to pc

benslgdroid

rockstar
I found this app droid vnc server which allows you to stream and control your phone through your computers browser. No need of any extras other than having java installed on your computer. I'm likely going to use it to make tutorial videos. This video is just proof of concept running on optimus v backside oc at 806 and used snagit 9 to screen grab to record it.

droid vnc server test - YouTube
 
I know that was long but I do have about 200 apps. It was also syncing at the same time which always bogs down my system. It is a bit delayed to. There's settings but I haven't messed with them much.
 
There's a bit easier way, and it allows recording of the phone's display as well. As always, I recommend something that requires no additional apps, I need all the space I can get. ;)

screencast.jnlp

Note- If using to make videos, it only records at 3fps, so you need to first convert to avi, then speedup the fps. I use ffmpeg and yuv4mpegpipe, here's the list of commands I run (Linux, Ubuntu, but there are Windows binaries available):
Code:
# Start screen cast
javaws ~/ScreenCasts/androidscreencast.jnlp

# Convert mov to avi
ffmpeg -i <input_name>.mov -r 24 <output_name>.avi

# Speed up framerate
ffmpeg -i <input_name>.avi -f yuv4mpegpipe - | yuvfps -s 48:1 -r 48:1 | ffmpeg -f yuv4mpegpipe -i - -b 28800k <final_name>.avi
 
Back
Top Bottom