217 Topics
| |
Hi guys. I am having issues playing HD clips on Youtube using the Chrome browser. When trying to run them the videos have a tendancy to freeze for a couple of seconds at a time and the audio is choppy. I have installed the latest version of flash player from … | |
I have been developing a simple java game, however I would like to add some Music to my game because it seems quite boring whenever you play it. | |
This simple code changes sounds in firefox, IE, safari, and chrome but will not switch in Opera. Any thoughts? <div id="playlist"style="position: absolute; z-index:10001; top: 0px; width: 100%; height: 100%;"> <button id="one" onclick="song1();">Mello</button> <button id="two" onclick="song2();">Its Time</button> <button id="three" onclick="song3();">Its on now</button> <div id="hideme" style="width: 392px"> <audio id ="audio" controls loop> … | |
Hi guys, Whats are favorite all time song and current song (one thats popular at the minute)? i.e. My all time favorite is [Phil collins - in the air tonight](http://www.youtube.com/watch?v=YkADj0TPrJA) My current favorite song is [Bastille - Pompeii](https://www.youtube.com/watch?v=F90Cw4l-8NY) Sorry for the awful videos aha | |
Dear Daniweb, I just got the following [HTML5 music player](http://www.audioplayerhtml5.com/player_blackControllers_WithoutPlaylist_Ex1.html), which gets it's music from a list I provide in HTML like this: <ul> <li class="xtitle">Follow Me Here B</li> <li class="xauthor">Author Name</li> <li class="xsources_mp3">audio/adg3com_freeform.mp3</li> <li class="xsources_ogg">audio/adg3com_freeform.ogg</li> </ul> <ul> <li class="xtitle">This is Freeform C</li> <li class="xauthor">Author Name</li> <li class="xsources_mp3">audio/wm_follow_me.mp3</li> <li class="xsources_ogg">audio/wm_follow_me.ogg</li> … | |
Here’s the concept behind the smartpen: there are millions of pages of good old fashioned handwritten notes taken every day in business meetings and school lessons around the world. Unfortunately they remain trapped within the confines of the paper they are written upon. But what if you could easily share … | |
Hi there, I need a simple audio or video editing software. I need to translate the dialogues of tv program. I have the video file(XviD) of that program and an audio track(mp3). All i need to play this file and write the dialogues in a word document. Now i am … | |
Hey im trying to run background music when the user clicks the button. below is my coding. when i run the program, it says file cannot be found. any help would be appreciated [CODE]import javax.swing.*; import sun.audio.*; import java.awt.event.*; import java.io.*; public class Sound { public static void main(String[] args) … | |
#include<stdio.h> #include <file.h> main(int argc, char *argv[]) { FILE *fp; char s[100]; int i; //char exit if((fp=fopen("Allah ya isa.mp3","rb"))==NULL) //Open file and read on binary mode { printf("Could not open the file\n"); // exit(1); } fclose(fp); } #include<stdio.h>`` main(int argc, char *argv[]) { FILE *fp; char s[100]; int i; //char … | |
Hello all, I am new to javascript and looking for some help. I have searched around different forums but my skills have not served me well to build a working script. <script language="JavaScript"> var myDate = new Date(); /* hour is before noon */ if ( myDate.getHours() < 12 ) … | |
i have much tried for this solution but not any well solution found.if any one know how can we compare two audio files by their voice and after comparing it give the result of matching voices.please if any one now the solution told me. | |
hello. can anybody please help me. i am a begineer to php. i want to change mp3 file bitrate . like from 128 kbps to 320 kbps, 256 kbps, 64 kbps,and 48 kbps. anybody help me .. reply more appreciated........ | |
I recently re-installed windows 7 onto my pc and was redownloading and installing all my old programs when I noticed I wasnt getting any sound from my headphones. I've looked at other forums and posts and tried them but no success. I was able to get sound to play though. … | |
Shows you how to play sound files with the pySFML module and Python. | |
I am using asp.net 4.0 and c#. I have a page at work that is used one time per year by one person to run several stored procedures on January 1st. In order to make it more interesting (since she has to work every New Year's Day) I try to … | |
Hello I'm new to programming and I'm trying to make a java application that will "hear" (not record necessarily) the sound and display how loud is.I'm thinking of converting the sound recordings to numbers,so I can see the difference on the sound levels.I got this code and I added the … | |
The odd thing about these particular headphones is the marketing, in my opinion. The very bright colours, mine were what I can only describe as dayglo yellow, are not offset by any calmer touches; the same colour is applied to the wires, cups, buttons, jacks, headband, everything. It's a deliberate … | |
I need help playing audio from mysql blob. I know how to save audio file as blob but I don't know how to play it in vb.net. Is there a way to play audio from mysql blob without saving it first as a file? If so, I need sample codes, … | |
When I'm listening to music on my iphone and I pull up the control center It won't let me go to next track. Any solutions | |
Well, I am starting to get bored with my current rotation and want to update my collection. I like [weird](http://www.youtube.com/watch?v=2VnF9NeuhUE) music and I am especiall fond of German Industrial like [Rammstein](http://www.youtube.com/watch?v=RlOAMKTj0hU), [Kraftwerk](http://www.sonar.es/en/2013/prg/ar/kraftwerk-%283d-show%29_134), and [Einstürzende Neubauten](http://www.youtube.com/watch?v=ndK3BM77o5s) - at least for industrial I also like [California Guitar Trio](http://www.youtube.com/watch?v=xdEAccE7BMs) (can you tell the … | |
Hello Community, I was trying to play music throught my iPod dock with my new iPod (5th gen). The sound only comes throught the iPod and not the stereo. | |
Hi ..... i want to stream the audio to the socket stream in java...... how to do that.... | |
Heya guys, My onboard audio of my motherboard just died a few days ago. Now i'm forced to use an usb headset, which is fine for games, but music on the other hand... My motherboard is an P7P55D EVO, which has an VIA VT1828S on it. i'm looking for a … | |
<head> <script type="text/javascript"> function playPause(x) { var myAudio=document.getElementById(x); if (myAudio.paused) myAudio.play(); else myAudio.pause(); } </script> <head> <body> <audio id="Soundx1" src="../audio/2.mp3"></audio> <button style="background-image:url(../images/audio1.jpg); width:45px; height:45px; border:transparent; margin:0px 0px 0px 0px;background-repeat: no-repeat;background-color:white;" onclick="playPause('Soundx1');" ></button> <audio id="Soundx2" src="../audio/2.mp3"></audio> <button style="background-image:url(../images/audio2.jpg);background-color:white; width:45px; height:45px; border:transparent; margin:0px 0px 0px 0px;background-repeat: no-repeat;" onclick="playPause('Soundx2');" ></button> <body> <Article moved … | |
Is it possible to play or make music in Python? | |
Why in Internet Explorer on Windows Phone 8 HTML5 player for shoutcast stream does not work? <audio controls src="http://IPADRESS:PORT/;"></audio> Is there an alternative? | |
is there a possibility that a prpgram can be written to restrict file sharing(music) from phone to phone (bluetooth) or from laptop to CD (burning) | |
KitSound takes music seriously, so I wasn't that surprised when I read how in recent 'blind testing' consumers were unable to tell the difference between a set of KSDJ headphones costing under £20 and high end headphones costing up to £900 when it came to the audio output. I mention … | |
For the hundredth time I'm listening to **Blackstone Legacy** album (1971) by Afro-American jazz trumpeter Woody Shaw (1944-1989) and I like it exclusively. What kind of music I **don't** like is any sentimental music, so called "smooth" jazz, swing (in the 21st century it sounds too moth-eaten), 99.999% of rock … |
The End.