08-03-2010 09:03 PM
Hi , I am doing a project to video chat in labview using TCP between 2 PC .
Currently I have only 1 webcam and 1 mic so I am try write a program to send sound / image from the server to the client.
There are 3 parts to it : - image (done)
- audio
- image+audio
I have done the image part where the client display what the server is webcam is capturing.
I have problem with the transferring audio input from server to client. Is there any example where I can take a look at as I can't seem to find any related to what I need.
TYVM
08-04-2010 10:59 AM
I remember there's a sound card example in Example Finder that you could you for recieve data from microphone as array of number or waveform.
Then, you can send this array over TCP/IP, and use a sound card to play it back.
I think there's an example for this also.
08-04-2010 11:01 AM
I remember there's a sound card example in Example Finder that you could you for recieve data from microphone as array of number or waveform.
Then, you can send this array over TCP/IP, and use a sound card to play it back.
I think there's an example for this also.
08-05-2010 03:34 AM
Hi , I can't find this example that you stated. I try typing the keyword sound , TCP and audio input.
08-05-2010 03:37 AM
Hi,
I am trying to transmit image via TCP..
may i know how you work with it?
regards,
thanks in advance!
08-05-2010 04:21 AM
Help>>Find Examples>>Hardware Input and Output>>Sound
08-09-2010 09:35 PM
@ ElsaYue
I use the grab and save image example vi in labview and flatten image to string to send to client vi and use unflatten string to image to read the image in client.
Back on topic , I manage to find an example to send sound but keep getting the error " memory not enough to complete operation"
08-12-2010 05:49 AM
Hi,
Thanks!
Elsa
08-13-2010 04:07 AM
Can anybody tell me am I doing it right? I keep getting the error " memory not enough " , " memory is full ".
Btw I am transferring them on the same PC.
I attached my VIs.
THX
08-13-2010 04:57 AM
You keep flooding data in TCP server while client just run once and stop.
That could cause a problem.