ID: com.wru.vav_imagestreaming
Version: 1.0
Size: 0 Mb
Android Version: 2.3 and up
VAV_ImageStreaming Screen Preview
What's new in VAV_ImageStreaming 1.0
Simple free application to stream image from mobile phone to a tcp socket server.(This version is beta and only tested on samsung galaxy note).
To retrieved a jpeg image, you only have to cherck start of file 0xFFD8 and end of file 0xFFD9.
For example in python you have only to do :
from socket import *
import threading
import thread
def handler(clientsock,addr):
while 1:
data = clientsock.recv(BUFSIZ)
if not data:
break
msg = 'echoed:... ' + data
clientsock.send(msg)
clientsock.close()
if __name__=='__main__':
HOST = ''
PORT = 8013
BUFSIZ = 1024
ADDR = (HOST, PORT)
serversock = socket(AF_INET, SOCK_STREAM)
serversock.bind(ADDR)
serversock.listen(2)
while 1:
print 'waiting for connection...'
clientsock, addr = serversock.accept()
print '...connected from:', addr
data =""
fullData =""
while data:
data= clientsock.recv(4096)
fullData+=fullData
startOfFrame = fullData.find("\xFF\xD8")
endOfFrame = fullData.find("\xFF\xD9")
if ((startOfFrame != -1) and (endOfFrame != -1) ):
print "file find"
jpegFile = fullData[startOfFrame:endOfFrame+1+1]
myFile =open("./toto.jpeg","wb")
myFile.write(jpegFile)
myFile.close()
fullData =""
VAV_ImageStreaming Permissions
Full network access - allows the app to create network sockets and use custom network protocols. the browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internetView network connections - allows the app to view information about network connections such as which networks exist and are connected
Read the contents of your usb storage - allows the app to read the contents of your usb storage
Take pictures and videos - allows the app to take pictures and videos with the camera. this permission allows the app to use the camera at any time without your confirmation
Modify or delete the contents of your usb storage - allows the app to write to the usb storage
Download VAV_ImageStreaming lastet APK
Search terms:
How to download VAV_ImageStreaming patch 1.0 apk for pc
Download VAV_ImageStreaming mod apk for android
VAV_ImageStreaming 1.0 modded apk
VAV_ImageStreaming unlimited apk