Click here to Skip to main content
15,890,506 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI,

I want to telecast live video on web, I found some third party software.
Now I want to create this solution by asp.net/c#,
I didn't know where to Start...
So Somebody have any idea about it, Please Share...


Thanks
Posted
Updated 17-Oct-13 22:16pm
v2
Comments
JoCodes 18-Oct-13 4:40am    
whats the 3rd party software you found?
Hemant Singh Rautela 18-Oct-13 4:43am    
http://www.adobe.com/products/flash-media-encoder.html

http://www.adobe.com/products/adobe-media-server-professional/features.html

Use an encoder (e.g. VLC or FFmpeg) into packetize your input stream to OGG format. For example, in this case I used VLC to packetize screen capture device with this code:


C:\Program Files\VideoLAN\VLC\vlc.exe -I dummy screen:// :screen-fps=16.000000 :screen-caching=100 :sout=#transcode{vcodec=theo,vb=800,scale=1,width=600,height=480,acodec=mp3}:http{mux=ogg,dst=127.0.0.1:8080/desktop.ogg} :no-sout-rtp-sap :no-sout-standard-sap :ttl=1 :sout-keep


Embed this code into a <video> tag in your HTML page like that:
XML
<video id="video" src="http://localhost:8080/desktop.ogg" autoplay="autoplay" />


This should do the trick. However it's kind of poor performance and AFAIK MP4 container type should have a better support among browsers than OGG.
+ visit this
http://phoboslab.org/log/2013/09/html5-live-video-streaming-via-websockets[^]
 
Share this answer
 
v3
Comments
Hemant Singh Rautela 18-Oct-13 5:49am    
Good one, There will be a Better solution for this...
:-)
bjdestiny 18-Oct-13 5:49am    
mean it was helpful?
Hemant Singh Rautela 18-Oct-13 5:51am    
Not yet, Because I have to implement(test) it first, But I need video with audio...
In past I have posted these answers, check it out that too.
Web Cam Image on Web Page[^]
Video player in asp.net[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900