113 Topics

Member Avatar for
Member Avatar for wmc1956

I'm in serious need of help getting a sound driver installed on my mother-in-law's computer! I had to reinstall Windows XP and after I did, the sound did not work. I have downloaded Intel Chipset Device Software and installed it and it says "Setup is complete." Then nothing happens and …

Member Avatar for jhnjohn3
0
314
Member Avatar for thinkingofaname

hey i wanna make C++ program that makes music files but i don't want to use the beep function because that's to simple..and as far as i know doesnt save as a music file....i've looked at csound but that looks a bit to tricky..can u suggest any library's that have …

Member Avatar for thinkingofaname
0
168
Member Avatar for fahrenh

Whenever I connect the internet directly to my computer, something kicks in, turning my taskbar into the old Windows color and knocking out my Windows Audio. This only happened today, as far as I know; I have been using our router ever since the internet came. I hope somebody walks …

Member Avatar for gerbil
0
198
Member Avatar for BroncoTrojan

I am trying to record many small MP3 files from my computer's microphone. There are numberous examples using mciSendString Library "Winmm.dll" to record .wav files. I find the .wav quality to be lacking and I really want to record straight into the MP3 format rather than converting my .wav files. …

Member Avatar for BroncoTrojan
0
154
Member Avatar for westknight3

Here is a snippet of the code that I have thus far (Which I wish worked): [CODE] Dim PlayedSound as string If ComboBox1.SelectedItem = "Sound 1" Then PlayedSound = "Sound1" My.Computer.Audio.Play(My.Resources.(PlayedSound, AudioPlayMode.Background) [/CODE] So basically the combobox1 item which is selected is sent to a string and is then supposed …

Member Avatar for Pgmer
0
254
Member Avatar for Noob_Programmer
Member Avatar for Noob_Programmer
0
131
Member Avatar for Sariscos

SRS has released an attachment for Appleā€™s iPod, iPad, and iPhone devices. As a musician, I really have a deep understanding of how tonal range works on audio devices. I was very pleased to hear that I would get to do a review of this, although I have to admit …

Member Avatar for MichaelDrew
1
201
Member Avatar for dupaswim

OK so I am not getting any sound on my computer right now - it is a Dell Latitude D630 and running XP service pack 3 (I believe). Point is, right now my computer does not recognize that I have any sound devices whatsoever. I had been messing with asio4all …

0
183
Member Avatar for calrobs

Hi there, Not sure how the best way of asking this is but i've been playing around with HTML5 and the audio tag. I've managed to get multiple audios playing on a webpage, however it only works in certain browsers. In my case if I view the website on safari, …

Member Avatar for Arkinder
0
116
Member Avatar for Joeflims

Hello, kind citizens of DaniWeb! I beg your assistance in the solution of my problem! I was trying to create a simple audio player using Tkinter and pygame, pygame being the best library that included audio playback I could find (by the way, DO NOT USE SNACK!!). Anyway, I was …

Member Avatar for Joeflims
0
179
Member Avatar for Mesiiik

Hello, i have experienced a problem after installing win7. everything works well but my computer doesnĀ“t make any sounds. I have got these audio adapters (and iĀ“d like to assure you i donĀ“t know what it really means) 1) Audio Adapter Analog Devices AD1986A @ Intel 82801GB ICH7 - High …

Member Avatar for flagstar
0
211
Member Avatar for wmc1956

I have had to format our computer (eMachines W6409) and reinstall Windows XP but I cannot find the correct audio driver. I have gone to the eMachines support website and used their program to detect the driver on the computer. I downloaded the one they said but it did not …

Member Avatar for Lightninghawk
0
193
Member Avatar for happygeek

After [URL="http://www.daniweb.com/hardware-and-software/home-theater-home-entertainment/reviews/366884"]reviewing the Aurora laptop speaker system[/URL] from the same manufacturer, and actually being very impressed with pretty much everything about it, I was rather looking forward to getting my hands on the Sound to Go portable speaker. Unfortunately my enthusiasm was somewhat short lived as the two devices really …

0
188
Member Avatar for rahafrouz

hi! I want to start writing a project that recognizes speech and voice. first I want to know,have you ever seen a project like this,written in java or any other languages? if no I know it is not a simple project that it can be found by requesting in a …

Member Avatar for azzaid
0
202
Member Avatar for usahomegoods

I just thought of joining a tech forum as we are into this business of home goods for long now. So let me just help you with your hardware and software stuff. Daniweb seems a great place to connect to techies.

Member Avatar for zj2431
0
124
Member Avatar for happygeek

Although the Aurora is, theoretically, a portable speaker system itā€™s not really that easy to lug around with your laptop unless you do away with a slimline carry case and replace it with a small suitcase. The tubular super-woofer, two tennis ball satellite speakers and not forgetting the power cable …

0
607
Member Avatar for kchyn

Hi, I'm trying to capture audio from a microphone into a vector in C++. I'm using openAL's example code Capture.cpp (below). I understand that it buffer's the data, but I'm not sure what comes after. In short, what do I do to put the buffer's data into a normalized (+/- …

Member Avatar for raptr_dflo
0
387
Member Avatar for WASDted

So I have a Windows 7 Ultimate 64-bit PC that I use as a Media Center. It has an ATI video card with HDMI out that I use for both video and audio output. An HDMI cable runs from the PC to a Pioneer Elite A/V receiver and then out …

0
144
Member Avatar for agrothe

A friend of my recently asked me to help him set up a web based radio. Upon doing some research I found he has only original content (not copy right stuff), all static mp3 files, not live talk, and wants to loop the audio. I've found sites like radionomy and …

Member Avatar for Kraai
0
230
Member Avatar for SgtMe

I was wondering if it's possible for me to create a Digital Sound Processing (DSP) program using Python. Basically, I don't know anything about how I would do this and I would like somebody to point me in the right direction. I don't want somebody to write code, but I …

Member Avatar for SgtMe
0
327
Member Avatar for baby_c

hi friends.. i need to know that is there any method to allow someone to access a file just one time,and delete that file itself.I just wanted to send some audio file to my friend and doesn't want to keep evidence of it..Is there anyway.... thanx in advance.

Member Avatar for jholland1964
0
156
Member Avatar for JB Audio

Hi all. I hope this is the right place to post this. I am a music technology student and I've recently picked up learning C++ as it would greatly help my career knowing a programming language, especially this one since it is used in the video games industry. Anyways onto …

Member Avatar for rubberman
0
625
Member Avatar for caswimmer2011

Hello, I am doing my first JFrame. I want it to have a button where the user clicks it and music plays. I already made the button (called b1) but i can't seem to find code for the music to be imported and played. I have tried a whole bunch …

0
123
Member Avatar for hanslim77

Other than the usual [CODE]AudioInputStream stream = AudioSystem.getAudioInputStream(ClassLoader.getSystemClassLoader().getResource("____.wav")); DataLine.Info info = new DataLine.Info(Clip.class, stream.getFormat()); Clip clip = (Clip) AudioSystem.getLine(info); clip.open(stream); clip.start();[/CODE] Since the buffer limit is 2mb for an UNCOMPRESSED wav file so... it's pretty obvious how crappy that is... and that's about all I found on the net since …

Member Avatar for stultuske
0
215
Member Avatar for caswimmer2011

Hello, I am trying to add audio files to my program. I am using a desktop application and not an applet. All the code that i have found online is for an applet. Is there a way for me to add audio code to a desktop application and not an …

0
94
Member Avatar for dos_killer

hey ... im a new member of this community i have started developing python scripts for my phone i made a voice messenger for laptop using pyaudio in python and using sockets to transfer data [CODE] self.pin=pyaudio.PyAudio() streamin=self.pin.open(format=self.format, channels=self.channels, rate=self.rate, output = True, frames_per_buffer = chunk) global wf while 1: …

Member Avatar for dos_killer
0
157
Member Avatar for JOSheaIV

Okay so I recently have no clue what's causing it but I can predict a BSOD and can prevent it sometimes. Everytime this has happened I have been gaming. The warning sign is I will start to hear the sound get distoreded and then it progressivily gets worst and worst, …

Member Avatar for makush
0
234
Member Avatar for forrestkhaag

Hello All: I am new to this form of potential problem solving however, information never acted upon is a solution never arrived at. I have a PC on XP and one day my sounds dissappeared from my speakers (that are integral to my HP flat panel screen. Windows troubleshooting is …

Member Avatar for Master Rattley
0
227
Member Avatar for Hand

Hello, I need a simple open source audio library that can be used to play music and sound effects for C/C++. The audio files that I use are mp3, midi and ogg. My operating systems are Windows XP and Linux (Ubuntu). I need that the library be able to play …

Member Avatar for xtrmR
0
95
Member Avatar for Sismetic

Im trying to do a screen-flashing application that flashes the screen depending on the audio(like an audio visualizer, but instead of a visualization like bars or something like that, just flash the screen). I already made the music player and know how to make the widget get full screen and …

Member Avatar for Kanoisa
0
233

The End.