Video over Sockets


 
Thread Tools Search this Thread
Top Forums Programming Video over Sockets
# 1  
Old 04-30-2009
Video over Sockets

Hello,
I have a UDP forwarder code in C that forwards packets from a client to another client. I can send files over that. I need to be able to send videos over sockets. Kindly let me know how, and if there are any specific things for videos over sockets. I should be also be able to minimise losses over UDP Sockets. Please reply soon.
# 2  
Old 04-30-2009
It is possible to do vidio using UDP packets. Skype and any other net meeting types of products do it. There are ways of increasing the reliability of UDP packets. I suggest you read "Advanced UDP sockets" chapter of Stevens UNIX networking Programming Volume 1 for starters.
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Programming

Any example about sockets in C++?

Hi, i am student, think learning about c++, someone has a example the how establish a conection with sockets :b::b: (1 Reply)
Discussion started by: mmartinez
1 Replies

2. UNIX for Advanced & Expert Users

Video Cards :: Video Memory Intercept and Redirect

I need a broad spectrum understanding on this subject, and any help would be greatly appreciated. First of all, as I understand it... The way the video hardware works is the CPU sends information about input and possible changes to the display, the video card receives these changes, makes the... (2 Replies)
Discussion started by: ciNG
2 Replies

3. Linux

USB video capture? composite, s-video, etc

does anybody have any experience with any of these composite video to usb devices on linux? usb video capture - Google Product Search would like to get one but a linux newbie and having trouble figuring out if any are ported... i've found lots of things that link to freedesktop.org DisplayLink... (1 Reply)
Discussion started by: danpaluska
1 Replies

4. Programming

need help with sockets

anyone and teach me how to save standard output to a file in a client/server socket. I know how to read them to the screen but i'm not quite sure how to save them to a file. my read to screen file code: memset(line, 0x0, LINE_ARRAY_SIZE); while (recv(connectSocket, line, MAX_MSG, 0) >... (1 Reply)
Discussion started by: crunchyuser
1 Replies
Login or Register to Ask a Question