Home Web Front-end HTML Tutorial How to add music mp3 in html

How to add music mp3 in html

Jun 04, 2021 pm 01:38 PM
html

In HTML, you can use the embed tag to add music. You only need to add the "" code in the body area. The embed tag can be used to insert various multimedia, and the formats can be Midi, Wav, AIFF, AU, MP3, etc.

How to add music mp3 in html

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

You can use the embed tag to add music. The tag defines embedded content, such as plug-ins.

Grammar:

embed src=url

Description: embed can be used to insert various multimedia, the format can be Midi, Wav, AIFF, AU, MP3, etc., Netscape and new versions of IE support it. The url is the audio or video file and its path, which can be a relative path or an absolute path.

Example:

The code is as follows:

<embed src="your.mid">

2. Attribute settings

1. Autoplay:

Syntax: autostart=true , false

Description: This attribute specifies whether the audio or video file will automatically play after downloading.

  • true: The music file will play automatically after downloading;

  • false: The music file will not play automatically after downloading.

Example:

The code is as follows:

<embed src="your.mid" autostart=true>
<embed src="your.mid" autostart=false>

2. Loop playback:

Syntax: loop=positive integer, true, false

Description: This attribute specifies whether the audio or video file is looped and the number of loops.

When the attribute value is a positive integer value, the number of loops of the audio or video file is the same as the positive integer value;

When the attribute value is true, the audio or video file loops;

When the attribute value is false, the audio or video file does not loop.

Example:

The code is as follows:

<embed src="your.mid" autostart=true loop=2>
 <embed src="your.mid" autostart=true loop=true>
 <embed src="your.mid" autostart=true loop=false>

3. Panel display:

Syntax: hidden=ture, no

Description: This attribute specifies whether the control panel is displayed. The default value is no.

  • ture: hide the panel;

  • no: show the panel.

Example:

The code is as follows:

<embed src="your.mid" hidden=ture>
 <embed src="your.mid" hidden=no>

4. Start time:

Syntax: starttime=mm:ss (min. : seconds)

Description: This attribute specifies the time when the audio or video file starts playing. If not defined, play from the beginning of the file.

Example:

The code is as follows:

<embed src="your.mid" starttime="00:10">

5. Volume size:

Syntax: volume=an integer between 0-100

Description: This attribute specifies the volume of audio or video files. If not defined, the system's own settings will be used.

Example:

The code is as follows:

<embed src="your.mid" volume="10">

6. Container attributes:

Syntax: height=# width=

# Description : The value is a positive integer or percentage, and the unit is pixels. This property specifies the height and width of the control panel.

height:控制面板的高度;
 width:控制面板的宽度。

Example:

The code is as follows:

<embed src="your.mid" height=200 width=200>

7. Container unit:

Syntax: units=pixels, en

Description : This attribute specifies the unit of height and width as pixels or en.

Example:

The code is as follows:

<embed src="your.mid" units="pixels" height=200 width=200>
 <embed src="your.mid" units="en" height=200 width=200>

8. Appearance settings:

Syntax: controls=console, smallconsole, playbutton, pausebutton, stopbutton, volumelever Description: This property specifies the appearance of the control panel. The default value is console.

  • console: normal panel;

  • smallconsole: smaller panel;

  • playbutton : Only the play button is displayed;

  • pausebutton: Only the pause button is displayed;

  • stopbutton: Only the stop button is displayed;

  • volumelever: Only the volume adjustment buttons are displayed.

Example:

The code is as follows:

<embed src="your.mid" controls=smallconsole>
 <embed src="your.mid" controls=volumelever>

9. Description text:

Syntax: title=

# Description: # is the text of the description. This attribute specifies the description text of the audio or video file.

Example:

The code is as follows:

<embed src="your.mid" title="第一首歌">

Extended information:

WebM advocacy

Due to the licensing issues of AVC (H.264), the open source camp headed by Chrome, Firefox, and Opera began to waver in their support for AVC. Although these browsers can still support AVC, they also prefer an open source multimedia called WebM. project, which includes a new open source video codec scheme called VP8. Currently VP8 has developed to VP9. WebM as an encapsulated format has the .webm suffix and the video/webm MIME type. For audio, you can use Vorbis/Opus. From a compatibility perspective, Chrome, Firefox, and Opera are very compatible with VP8, but Safari and IE are almost unable to support it.

Open source Ogg

Ogg is almost the same as WebM, open source, and is widely supported on open source platforms. Its video encoding scheme is called Theora (developed from VP3, developed by the Xiph.org Foundation, and can be used in any packaging format), and its audio is Vorbis. The suffix is ​​usually .ogv or .ogg, and the MIME type is video/ogg. In terms of compatibility, Chrome, Firefox, and Opera can support it (but Opera cannot support it on mobile platforms), but Safari and IE are almost unable to support it.

Html5方案

以上的讨论实际上的大前提是:视频基于Html5的

Codecs/container

IE

Firefox

Safari

Chrome

Opera

iPhone

Android

Theora+Vorbis+Ogg

·

3.5+

5.0+

10.5+

·

·

H.264+AAC+MP4

9.0+

·

3.0+

5.0+‡

·

3.0+

2.0+

WebM

9.0+*

4.0+

6.0+

10.6+

·

2.3+

* IE9 “只有当用户安装了VP8的编解码器时”才能支持VP8。

‡ Google Chrome 2011年宣布 放弃H.264, 但是“还没兑现”。

可以看出现在主流的仍然是MP4(AVC),但是为了解决“开源阵营”对AVC的摇摆不定,可以选择利用video的多源方案,在AVC的基础上额外提供对webm或ogg的支持:

<video poster="movie.jpg" controls>
        <source src="movie.webm" type=&#39;video/webm; codecs="vp8.0, vorbis"&#39;>
        <source src="movie.ogg" type=&#39;video/ogg; codecs="theora, vorbis"&#39;>
        <source src="movie.mp4" type=&#39;video/mp4; codecs="avc1.4D401E, mp4a.40.2"&#39;>
        <p>This is fallback content</p>
</video>

浏览器会根据自己的偏好来选择具体加载那种格式的流媒体文件,当然服务端必须对同一个视频提供多种格式的支持,具体可以这么做:

  1. 提供一个WebM的视频版本(VP8+Vorbis)

  2. 提供一个MP4的视频版本(H.264+AAC(low complexity))

  3. 提供Ogg版本(Theora+Vorbis)

服务端推荐使用nginx,尽量注意MIME类型的配置正确

推荐学习:html视频教程

The above is the detailed content of How to add music mp3 in html. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Why is my HTML image not showing up? Why is my HTML image not showing up? Aug 16, 2025 am 10:08 AM

First, check whether the src attribute path is correct, and ensure that the relative or absolute path matches the HTML file location; 2. Verify whether the file name and extension are spelled correctly and case-sensitive; 3. Confirm that the image file actually exists in the specified directory; 4. Use appropriate alt attributes and ensure that the image format is .jpg, .png, .gif or .webp widely supported by the browser; 5. Troubleshoot browser cache issues, try to force refresh or directly access the image URL; 6. Check server permission settings to ensure that the file can be read and not blocked; 7. Verify that the img tag syntax is correct, including the correct quotes and attribute order, and finally troubleshoot 404 errors or syntax problems through the browser developer tool to ensure that the image is displayed normally.

How to use the bdo tag to override text direction in HTML How to use the bdo tag to override text direction in HTML Aug 16, 2025 am 09:32 AM

Thebdotagisusedtooverridethebrowser’sdefaulttextdirectionrenderingwhendealingwithmixedleft-to-rightandright-to-lefttext,ensuringcorrectvisualdisplaybyforcingaspecificdirectionusingthedirattributewithvalues"ltr"or"rtl",asdemonstrat

How to use the async attribute for script loading in HTML How to use the async attribute for script loading in HTML Aug 17, 2025 pm 12:52 PM

TheasyncattributeinHTMLisusedtoloadandexecuteexternalJavaScriptfilesasynchronously,allowingthebrowsertodownloadthescriptinparallelwithHTMLparsingandexecuteitimmediatelyuponcompletion,whichimprovespageloadperformancebypreventingrender-blocking;itisbes

How to set a default value for an HTML select element How to set a default value for an HTML select element Aug 17, 2025 pm 01:00 PM

To set the default value for HTMLselect elements, the corresponding option element must be marked with the selected attribute; 1. Add the selected attribute to the option you want to select by default, such as UnitedStates; 2. Ensure that only one option in a single select has selected attribute, and if there are multiple ones, the first one will be the source code order; 3. The selected attribute can be placed anywhere in the list, not limited to the first option; 4. This method is suitable for single-select and multiple-select select; 5. If you need to set it dynamically, you can use JavaScript to operate the value attribute, such as document.querySelec

How to create subscript and superscript in HTML How to create subscript and superscript in HTML Aug 20, 2025 am 11:37 AM

TocreatesubscriptandsuperscripttextinHTML,usetheandtags.1.Usetoformatsubscripttext,suchasinchemicalformulaslikeH₂O.2.Usetoformatsuperscripttext,suchasinexponentslike10²orordinalslike1ˢᵗ.3.Combinebothtagswhenneeded,asinscientificnotationlike²³⁵₉₂U.The

How to center a div in HTML5? How to center a div in HTML5? Aug 21, 2025 pm 05:32 PM

Tocenteradivhorizontally,usemargin:0autowithadefinedwidth.2.Forhorizontalandverticalcentering,applydisplay:flexontheparentwithjustify-content:centerandalign-items:center.3.Alternatively,useCSSGridwithplace-items:centerforbothdirections.4.Asafallback,

What is the HTML Small element for What is the HTML Small element for Aug 16, 2025 am 08:04 AM

Theelementisusedforsidecomments,fineprint,orlessimportantcontentwithsemanticmeaning,notjustvisualstyling;2.Itisappropriateforcopyrightnotices,legaldisclaimers,attributions,andlimitations;3.Itshouldnotbeusedsolelytoreducetextsize—CSSshouldhandlepresen

How to restrict file types for an upload input in HTML How to restrict file types for an upload input in HTML Aug 24, 2025 am 02:57 AM

Use the accept attribute to limit the upload type of HTML file, such as accept="image/*" only allows images, accept=".pdf" only allows PDF, accept=".doc,.docx,.pdf,.txt" allows multiple specified types, and can combine JavaScript to verify file types to improve user experience, but security verification must be performed on the server side, because the accept attribute is not secure and the browser supports are different, and it is only used to improve availability rather than replace server verification.

See all articles