Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
But Wave sound saving on client side ,I want to save on Server.please provide code to wav file can save on server.
Posted
Updated 17-Nov-15 20:13pm
v3
Comments
Suvendu Shekhar Giri 16-Nov-15 8:37am    
What is the problem here?
What have you tried so far?
Afzaal Ahmad Zeeshan 16-Nov-15 8:48am    
That is not a problem. Is the problem something like?
- How to access the voices for each agent?
- How to check which voice was from which agent?

Because I can think of many more similar problems that maybe you haven't currently thought of.
Member 10556393 16-Nov-15 9:14am    
Yes, and how to store each and every agent voice separately in mysql database?
Afzaal Ahmad Zeeshan 16-Nov-15 9:21am    
Create a new record. :-)

Provided that you are using a multiuser database system (such as SQL Server, or MySql) rather than a single user system (such as Access, or SqLite) and don't pre-assign ID values (unless they are GUIDs) it should all "just work" - multiple inserts at the same time is what such systems are designed for.
 
Share this answer
 
Then you have to transfer the audio file to a server.

What is a .wav file?
Well, in the end it is an array of bytes, also called a Binary Large Object (BLOB).

How to store a BLOB in MySQL?
Well, read the documentation 11.4.3 The BLOB and TEXT Types[^]

And for future reference, don't change your question by removing vital information.
Just add more information that can be useful.
 
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