开发者

How to start making an Audio and Video Streaming Application in c# [closed]

开发者 https://www.devze.com 2023-04-03 07:28 出处:网络
It's difficult to tell what is being asked here. This 开发者_如何学Cquestion is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form.
It's difficult to tell what is being asked here. This 开发者_如何学Cquestion is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

where can i start my audio/video streaming.. like for example im playing a music on my desktop home and i can listen my music at work through media player via IP..

i just want to develop my own audio streaming server using c#..


That depends on you're requirements . If you need only to stream Windows Media Format (WMV) than WME SDK should solve the issue - http://www.microsoft.com/download/en/details.aspx?id=23848 . If you need to stream in several Formats and Codec than you can use VLC Media Player ActiveX which is easy to integrate and stream using it . Using VLC you have option's like Transcode ,Preview ,Multicast ,UDP/TCP etc. http://www.videolan.org/vlc/

[EDIT] If you need help using VLC ,i can provide some Examples.

To start working with VLC ActiveX you should first install the latest VLC Player from VideoLan. Than go to VisualStudio - ToolBox - (RightClick) Choose Item . Than from COM Component's tab chose VideoLAN VLC ActiveX Plugin v2 . Drag anywhere into the form .

code: //The First Param. Can be a FileName ,Another Network Stream IP or the Cd/DvD Drive //The thir Param. should be the Option's you want to use which you can read from http://www.videolan.org/doc/play-howto/en/ch04.html

vlc.playlist.add("FileName/Stream IP/Drive Letter","Display Text", "Options");

vlc.playlist.play();

Here is also another article using VLC ActiveX - http://www.codeproject.com/KB/audio-video/LiquidVideo.aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消