Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hi i need(very urgent) help about record a video from webcam and store it in mysql server using c#

thanks
Posted
Updated 10-Oct-12 3:41am
v3
Comments
Sandeep Mewara 10-Oct-12 11:34am    
It does not work like this here.

Here is what is expected of enquirers:
1. TRY first what you want to do! You may find that it's not that hard.
2. Formulate what was done by you that looks like an issue/not working.

Try them and tell if you face issues.
Members will be more than happy to help like this.

1 solution

You might start with
How to use a web cam in C# with .NET Framework 4.0 and Microsoft Expression Encoder 4[^]

About to store the video in MySql... you better save the video somewhere else, and then just store the path in the database
 
Share this answer
 
Comments
surendra4u 10-Oct-12 8:15am    
I need video file directly store into server
sjelen 10-Oct-12 12:48pm    
In theory, you could use BLOB field to store video in db as binary data.
In practice, this is not a good idea. Relational DBs often have poor performance, specially with large binary data like video. Streaming the video from DB is also problematic.
If it has to be in a database, you should try some NoSql engine like MongoDB.
Nelek 11-Oct-12 7:05am    
I am not telling you, not to save the video in server. I am telling you it is not so good to store the video IN the database. Instead of that, it is easier to save the videos in a normal folder in the server and store the direction / folder path in the database.

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