hey ... im a new member of this community
i have started developing python scripts for my phone
i made a voice messenger for laptop using pyaudio in python and using sockets to transfer data
self.pin=pyaudio.PyAudio()
streamin=self.pin.open(format=self.format,
channels=self.channels,
rate=self.rate,
output = True,
frames_per_buffer = chunk)
global wf
while 1:
data=self.sock.recv(4096)
if data:
streamin.write(data)
Above was my code for receiving data over socket and converting to audio...
i want to do the same over the phone in symbian s60 !
is it possible with the audio library in s60 ?
if not, is there a way i can import pyaudio in my phone ?