Discussion Board

Results 1 to 3 of 3
  1. #1
    Super Contributor cassioli's Avatar
    Join Date
    Mar 2003
    Posts
    580
    Is it possibile to send single images from PC to cellphone over wifi at 25 images-per-second speed? I don't want to send a video, but single images generated "on the fly" by PC.

  2. #2
    Nokia Developer Moderator petrib's Avatar
    Join Date
    Mar 2003
    Posts
    9,413
    Most probably not at such a speed, unless you start to optimize things (small resolution, don't send full pictures, but just differences between each frame, etc.; optimizations done for streaming video, in other words).

  3. #3
    Super Contributor cassioli's Avatar
    Join Date
    Mar 2003
    Posts
    580
    I found this source:
    http://croozeus.com/blogs/?p=629

    Code:
    # Fortune client - PyS60 network programming
    # Marcelo Barros de Almeida
    # marcelobarrosalmeida@gmail.com
     
    # Supporting Python 1.4.x, 1.9.x
    try:
        from btsocket import *
    except:
        from socket import *
     
    HOST = "10.0.0.100"
    PORT = 54321
     
    s = socket(AF_INET,SOCK_STREAM)
    s.connect((HOST,PORT))
     
    fortune = u""
    while True:
        data = s.recv(1024)
        if not data:
            break
        fortune += data
     
    s.close()
     
    from appuifw import note
    note(fortune,"info")
    Let's suppose I send an image from the PC to the cellphone: how can I turn "data" (or "fortune"?) into an image?

Similar Threads

  1. Making SIP call from Nokia N80 over WiFi to PC
    By jkorycki in forum Symbian Networking & Messaging (Closed)
    Replies: 4
    Last Post: 2007-02-01, 10:01
  2. Sending multiple files over bluetooth from phone to PC
    By dguldbrandsen in forum Symbian Networking & Messaging (Closed)
    Replies: 4
    Last Post: 2005-01-30, 09:55
  3. Sending Images from a PC via Bluetooth to a Nokia 6230
    By davepickard in forum Mobile Java Media (Graphics & Sounds)
    Replies: 1
    Last Post: 2004-10-27, 09:19
  4. sending images from PC to phone
    By florinstoian in forum Digital Rights Management & Content Downloading
    Replies: 0
    Last Post: 2003-11-21, 12:59
  5. PC Suite and 7210. Images from phone to PC. How'd u do it !?
    By 7210hobbbit in forum PC Suite API and PC Connectivity SDK
    Replies: 5
    Last Post: 2003-05-09, 00:34

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved