• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

networkstream vb.net

Joined
Dec 22, 2007
Messages
184 (0.03/day)
Location
Central Nebraska
System Name CORSAIR
Processor AMD Phenom 1090T x6 @3.2
Motherboard Gigabyte Ga-78LMT-S2P
Cooling High efficiency dust cooling
Memory 8GB GSkill DDR3 1333
Video Card(s) Sapphire Radeon HD3870 512MB GDDR4 PCI-e toxic
Storage Seagate SV35.3 ST3250310SV 250GB SATAII(Windows 7 Pro x64), 320GB Samsung SATAII(Storage and SuSE)
Display(s) Dell 20" LCD, Dell 17" LCD
Power Supply Antec Cool Blue 650W Modular
Software Windows 7 Professional SP1, Visual Studio 2010 Ultimate
I want to create a simple socket server program that uses a networkstream to stream a video file to web based flash player clients. Can anyone point me in the right direction to do this? Or should I be looking more into directshow? Any feedback is much appreciated
 
Is there a way to make this serve to ANY flash player?
 
No, Flash is embeded in the web page. The player itself takes care of everything client side.

Ehm, Flash isn't some program people install on their computer, it is something given to users that visit the page by the same server that is hosting the page.

In short, most video players simply link to a video file on a webserver and that's it. The player makes requests to the server and the server hands them out.
 
I understand that,
what I don't understand is, how can I networkstream a flash video file to a flash player in a web page instead of network streaming ascii text liek all the examples i have found.

Also,
From my understanding, it is bad practice and unpractical to use TCP with streaming video? Is there some form of a UDPListener class?
 
Last edited:
Videos are sent via application/octet-stream MIME type.

TCP is what you have to use. TCP ensures the packets are received in order and in its entirety which is important for video streaming.
 
Back
Top