You are viewing our Forum Archives. To view or take place in current topics click here.
Autoplay music in HTML help
Posted:
Autoplay music in HTML helpPosted:
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
I would like to have mucic autoplay when you enter my site.
Source
[ Register or Signin to view external links. ]
I have the mp3 in my 'assets' folder
I can get the audio to work if it is an embedded link but then there is a large player at the top of the site, I don't want that.
I don't really care if there is an audio control or not I just want it to autoplay.
Source
[ Register or Signin to view external links. ]
I have the mp3 in my 'assets' folder
I can get the audio to work if it is an embedded link but then there is a large player at the top of the site, I don't want that.
I don't really care if there is an audio control or not I just want it to autoplay.
#2. Posted:
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 2,900
Reputation Power: 3713
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 2,900
Reputation Power: 3713
change <audio> to <audio controls autoplay> and let me know what happens! also remove line 4 and tab out 5 6 and 7 looks cleaner, easier to read.
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
#4. Posted:
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 2,900
Reputation Power: 3713
Status: Offline
Joined: Jun 03, 201014Year Member
Posts: 2,900
Reputation Power: 3713
#5. Posted:
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
Status: Offline
Joined: May 29, 201014Year Member
Posts: 4,173
Reputation Power: 9399
#6. Posted:
Status: Offline
Joined: Aug 19, 201014Year Member
Posts: 5,243
Reputation Power: 532
Status: Offline
Joined: Aug 19, 201014Year Member
Posts: 5,243
Reputation Power: 532
Sundown wrote Same thing happened :/
Player appears but not able to click play or anything
[ Register or Signin to view external links. ]
You said your folder was called "assets". Change your src attribute to match it accordingly.
You are also missing your first quote mark for the src attribute.
<source src="assets/ChildishGambinoxmaxCut.mp3" type="audio/mpeg">
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Oct 22, 201014Year Member
Posts: 830
Reputation Power: 458
Status: Offline
Joined: Oct 22, 201014Year Member
Posts: 830
Reputation Power: 458
Well, your code is all over the place so let me help you out.
[ Register or Signin to view external links. ]
As you can see, I have sorted your code into a more easier format which makes it easier to understand what is happening on the page. You don't have to follow this but from my experience as a web developer creating a standard for yourself to code by helps you a lot more if you want to come back to something or even continue working on your work the next day.
Hope I helped!
[ Register or Signin to view external links. ]
As you can see, I have sorted your code into a more easier format which makes it easier to understand what is happening on the page. You don't have to follow this but from my experience as a web developer creating a standard for yourself to code by helps you a lot more if you want to come back to something or even continue working on your work the next day.
Hope I helped!
- 1useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Apr 09, 20168Year Member
Posts: 54
Reputation Power: 3
Status: Offline
Joined: Apr 09, 20168Year Member
Posts: 54
Reputation Power: 3
Just wondering but why on line 3 is there a randomly placed </audio> ??
- 1useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Sep 01, 201410Year Member
Posts: 268
Reputation Power: 15
Status: Offline
Joined: Sep 01, 201410Year Member
Posts: 268
Reputation Power: 15
You must use the correct attributes in your <audio> tag(s). Also, as _Ashwee said:
You have to make sure you don;t have random tags anywhere. To ensure there aren;t any other random tags floating about, becauee I assume that is just a snippet of your page, youcan use the W3 validator, [ Register or Signin to view external links. ] . But then again, your webpage must be uploaded to a server/domain.
You can use this code to fix your problem:
You can read W3Schools on more information about the audio tags: [ Register or Signin to view external links. ]
_Ashwee wrote Just wondering but why on line 3 is there a randomly placed </audio> ??
You have to make sure you don;t have random tags anywhere. To ensure there aren;t any other random tags floating about, becauee I assume that is just a snippet of your page, youcan use the W3 validator, [ Register or Signin to view external links. ] . But then again, your webpage must be uploaded to a server/domain.
You can use this code to fix your problem:
<audio controls autoplay>
<source src="path/to/sound.ogg" type="audio/ogg">
Your browser does not support the audio element.
</audio>
You can read W3Schools on more information about the audio tags: [ Register or Signin to view external links. ]
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Dec 19, 201410Year Member
Posts: 1,783
Reputation Power: 102
Status: Offline
Joined: Dec 19, 201410Year Member
Posts: 1,783
Reputation Power: 102
I am doing a new site, to get the mp3 file to play consistently without a control panel use this code.
<audio autoplay loop>
<source src="your song" type="audio/ogg">
<source src="Your song.mp3" type="audio/mpeg">
</audio>
<audio autoplay loop>
<source src="your song" type="audio/ogg">
<source src="Your song.mp3" type="audio/mpeg">
</audio>
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.