how to fork voice wid text???


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how to fork voice wid text???
# 1  
Old 08-04-2005
Error how to fork voice wid text???

hello...
i am working in LINUX on a client/server voice communication project!!!
so far i am done wid compiling code for reading/playin sound card and also sending text from server to client.
now i need ur help in using fork()
though i do have basic concept about fork but i need detail help in how to fork both these programs on a client server network for a full duplex voice communication???
help need plzz!!!!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. What is on Your Mind?

Place Your Bits! - Who Will Win The Voice Season 3

New Event for Fans of The Voice Who Will Win The Voice Season 3 Place Your Bits! Wikipedia Reference Page (0 Replies)
Discussion started by: Neo
0 Replies

2. Linux

Execution problem wid mpstat command

mpstat -P ALL 1 10 it results.. 08:05:54 PM CPU %user %nice %sys %iowait %irq %soft %steal %idle intr/s 08:05:55 PM all 0.00 0.00 0.49 0.00 0.49 0.00 0.00 99.02 1024.75 08:05:55 PM 0 0.00 0.00 0.00 0.00 0.99 0.00 0.00 ... (1 Reply)
Discussion started by: pritesh_patil
1 Replies

3. UNIX and Linux Applications

Change voice in festival

I installed festival under /opt/TTS so presume that precedes in the following unless noted otherwise. I examined festival/lib/siteinit.scm and found the default voice was: voice_cmu_us_awb_arctic_hts (which I did not include with the install) which doesn't matter because the lin is commented... (0 Replies)
Discussion started by: slak0
0 Replies

4. Ubuntu

Voice plugin not working!

Hi, I am using Ubuntu 10.04. I installed Google talk voice and video plug-in. But audio is not working for me and video is working fine. So can I do some tweaking to enable it again? Note that I have just Mozilla Firefox with me (0 Replies)
Discussion started by: nixhead
0 Replies

5. Ubuntu

My Google voice plugin problem.

I am encountering problem in Google microphone while voice chat. Voice input is almost no, although I've installed Adobe flash plugin. Please Help! (0 Replies)
Discussion started by: nixhead
0 Replies

6. Programming

help wid C-script in tcsh

Hello Freinds I have just started off with Unix (TCSH) although I have a pretty sound background with C-programming. Kindly convey any error in foll script. #include<stdio.h> #include<math.h> #define PI 3.142857 main () { float r, A; printf("Enter the value of radius: "); scanf(" %f... (12 Replies)
Discussion started by: mahendrakamath
12 Replies
Login or Register to Ask a Question
DtPrintResetConnection(library call)									      DtPrintResetConnection(library call)

NAME
DtPrintResetConnection -- resets the print display connection managed by a DtPrintSetupBox SYNOPSIS
#include <Print.h> XtEnum DtPrintResetConnection( Widget wid, DtPrintResetConnectionMode mode); DESCRIPTION
The DtPrintResetConnection function is a convenience function provided by the DtPrintSetupBox widget that allows applications to direct the widget to stop managing the X print server connection. A mode parameter is included in order to direct the widget to close the print con- nection by calling XpDestroyPrintContext and XCloseDisplay or to simply relinquish control of the connection without closing it. DtPrintResetConnection is intended to be used by applications that fork a child process to perform the print rendering operation. Immedi- ately after the fork is performed, the parent process will close its X print server connection, and retain its connection to the video X server. The forked child on the other hand will close its video X server connection and perform the rendering operation on the X print server connection. ARGUMENTS
wid The DtPrintSetupBox widget ID. mode Indicates whether DtPrintResetConnection should close the X print server connection, or simply cause the DtPrintSetupBox to cease managing the connection. Valid values are: DtPRINT_CLOSE_CONNECTION Set by the parent process when the application forks a child to perform the print rendering. This will cause the DtNclosePrintDisplayCallback list set for the passed DtPrintSetupBox to be called. DtPRINT_RELEASE_CONNECTION Set when the application wishes to destroy the DtPrintSetupBox widget instance and still perform print rendering using the X print server connection initiated by the widget. For example, the child process of an application that forks to perform print rendering will close the video display connection (thereby destroying the DtPrintSetupBox widget) prior to print rendering. No DtPrintSetupBox callbacks will be called as a result of this operation. RETURN VALUE
DtPRINT_SUCCESS DtPrintResetConnection was successful. DtPRINT_NO_CONNECTION An open X print server connection is not currently being managed by the DtPrintSetupBox. DtPRINT_BAD_PARM The value passed for wid is NULL, or an invalid mode was passed. ENVIRONMENT VARIABLES
None. RESOURCES
None. ACTIONS
/MESSAGES None. ERRORS
/WARNINGS None. EXAMPLES
None. FILES
None. SEE ALSO
DtPrintSetupBox(3) DtPrintResetConnection(library call)