|
|
|
อยากได้เสียงคลิ้กแบบ fb ครับ เวลาที่เราคลิ้กจะมีเสียงออกมา หรือแบบ msn ก็ได้ครับเหมือนเวลา มีคนตอบมาจะได้บินเสียงครับ |
|
|
|
|
|
|
|
Code (C#)
private void Filler(IntPtr data, int size)
{
byte[] b = new byte[size];
if (m_AudioStream != null)
{
int pos = 0;
while (pos < size)
{
int toget = size - pos;
int got = m_AudioStream.Read(b, pos, toget);
if (got < toget)
m_AudioStream.Position = 0; // loop if the file ends
pos += got;
}
}
else
{
for (int i = 0; i < b.Length; i++)
b[i] = 0;
}
System.Runtime.InteropServices.Marshal.Copy(b, 0, data, size);
}
Go to : Visual C# ทำให้เล่นไฟล์ Play MP3 อย่างไรครับ (.NET, C#)
|
|
|
|
|
Date :
2012-01-17 06:34:52 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ี่ขอบคุณครับพี่วิน ไปลองก่อน
|
|
|
|
|
Date :
2012-01-17 20:33:45 |
By :
sodamax |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมบอกไปครับ web ครับ
|
|
|
|
|
Date :
2012-01-17 20:43:18 |
By :
sodamax |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|