link/upload audio file
Page 1 of 1
link/upload audio file
hei how can i inbed a wave file into my site?(meaning that there is something to click on to start playing the file and liking the file to that button)
It must be different to a picture, because a picture is always there, doent need to be started and it doesnt need a player either..
thanks for your help
gruss jona
Re: link/upload audio file
well i think wav is not recommended for web and almost i think not able to embend it into web so you should convert all your wav file into mp3 which is widely supported format and you have to use any free web based video player for this here is 1 free video player which is able to play mp3 and have control panel like play,pause,forward, previous etc.But yah there is a good option for wav to play in web in HTML 5
http://www.w3schools.com/html5/html5_audio.asp
but older browsers and IE 9 will not support it..
Re: link/upload audio file
hei - I programmed an html5 version (according to the link above) but it is not working.It is opening a new page and it shows a player but it wont play the file and the player is not "active" as well meaning you can not press the buttons that are being shown
my code:
<!DOCTYPE html>
<html>
<head>
<title>letztes teil</title>
</head>
<body style="background-color: off white;">
<audio controls>
<source src="letztes teil.wav" type="audio/wav">
Your browser does not support the audio element.
</audio>
<br />
<br />
</body>
</html>
thanks for the help I appriciate it - Jona
Re: link/upload audio file
isletztes teil.wav
file exist in the same folder of html file ?
if then then try to remove space between file or check wav format.
Re: link/upload audio file
in internet explorerInternet Explorer 9+ wav is not playable as well.
Re: link/upload audio file
thanks, yes it is in the same folder. I ll try taking the space away. and I am viewing with google chrome. so that should be alright?!Re: link/upload audio file
still not working.( I always get an Error message like 'file not found' or: 'website not found'I am using this code now:
<html>
<head>
<title>letztes teil</title>
</head>
<body style="background-color: off white;">
<embed src="letztesteil.mp3" width="344" height="60" autostart="true">
you dont support the sound format</embed>
</body>
</html>
could it have to do with the page not being uploaded yet (but shouldnt it work with my browser and folder without internet?)
helpplease :j
Re: link/upload audio file
Yes it would work without internet What is the version of chrome you are using maybe your Browser is oldor the spelling of
letztesteil.mp3 are different from the file name spelling or maybe it would be case sensitive is all of your file name characters are lower case ?
Re: link/upload audio file
hei thanks for your post!! I have now pasted the file into a different folder and look: now it is working! weird thing, but somehow it did not like the path of the file.. programmes, so moody..anyways - I#ll probably keep (de)bugging here. I m getting hooked on that programming stuff making websites .)
cheerio JONA
Page 1 of 1