In HTML, you can use the embed tag to add music. You only need to add the "
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
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 “只有當(dāng)用戶安裝了VP8的編解碼器時”才能支持VP8。 | |||||||
? Google Chrome 2011年宣布 放棄H.264, 但是“還沒兌現(xiàn)”。 |
可以看出現(xiàn)在主流的仍然是MP4(AVC),但是為了解決“開源陣營”對AVC的搖擺不定,可以選擇利用video的多源方案,在AVC的基礎(chǔ)上額外提供對webm或ogg的支持:
<video poster="movie.jpg" controls> <source src="movie.webm" type='video/webm; codecs="vp8.0, vorbis"'> <source src="movie.ogg" type='video/ogg; codecs="theora, vorbis"'> <source src="movie.mp4" type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"'> <p>This is fallback content</p> </video>
瀏覽器會根據(jù)自己的偏好來選擇具體加載那種格式的流媒體文件,當(dāng)然服務(wù)端必須對同一個視頻提供多種格式的支持,具體可以這么做:
提供一個WebM的視頻版本(VP8+Vorbis)
提供一個MP4的視頻版本(H.264+AAC(low complexity))
提供Ogg版本(Theora+Vorbis)
服務(wù)端推薦使用nginx,盡量注意MIME類型的配置正確
推薦學(xué)習(xí):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!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

To reduce the size of HTML files, you need to clean up redundant code, compress content, and optimize structure. 1. Delete unused tags, comments and extra blanks to reduce volume; 2. Move inline CSS and JavaScript to external files and merge multiple scripts or style blocks; 3. Simplify label syntax without affecting parsing, such as omitting optional closed tags or using short attributes; 4. After cleaning, enable server-side compression technologies such as Gzip or Brotli to further reduce the transmission volume. These steps can significantly improve page loading performance without sacrificing functionality.

HTMLhasevolvedsignificantlysinceitscreationtomeetthegrowingdemandsofwebdevelopersandusers.Initiallyasimplemarkuplanguageforsharingdocuments,ithasundergonemajorupdates,includingHTML2.0,whichintroducedforms;HTML3.x,whichaddedvisualenhancementsandlayout

It is a semantic tag used in HTML5 to define the bottom of the page or content block, usually including copyright information, contact information or navigation links; it can be placed at the bottom of the page or nested in, etc. tags as the end of the block; when using it, you should pay attention to avoid repeated abuse and irrelevant content.

ThetabindexattributecontrolshowelementsreceivefocusviatheTabkey,withthreemainvalues:tabindex="0"addsanelementtothenaturaltaborder,tabindex="-1"allowsprogrammaticfocusonly,andtabindex="n"(positivenumber)setsacustomtabbing

Adeclarationisaformalstatementthatsomethingistrue,official,orrequired,usedtoclearlydefineorannounceanintent,fact,orrule.Itplaysakeyroleinprogrammingbydefiningvariablesandfunctions,inlegalcontextsbyreportingfactsunderoath,andindailylifebymakingintenti

The standard way to add titles to images in HTML is to use and elements. 1. The basic usage is to wrap the image in the tag and add a title inside it, for example: this is the title of the image; 2. The reasons for using these two tags include clear semantics, convenient style control, and strong accessibility, which helps the browser, crawler and screen readers to understand the content structure; 3. Notes include that it can be placed up and down but needs to maintain logical order, cannot replace the alt attribute, and can contain multiple media elements to form a whole unit.

loading="lazy" is an HTML attribute for and which enables the browser's native lazy loading function to improve page performance. 1. It delays loading non-first-screen resources, reduces initial loading time, saves bandwidth and server requests; 2. It is suitable for large amounts of pictures or embedded content in long pages; 3. It is not suitable for first-screen images, small icons, or lazy loading using JavaScript; 4. It is necessary to cooperate with optimization measures such as setting sizes and compressing files to avoid layout offsets and ensure compatibility. When using it, you should test the scrolling experience and weigh the user experience.

The key to using elements to represent navigation link areas is semantics and clear structure, usually in conjunction with organizational links. 1. The basic structure is to put the parallel links in and wrap them inside, which is friendly to auxiliary tools and is conducive to style control and SEO; 2. Commonly used in or, for placing main navigation or footer link collections; 3. A page can contain multiple areas, such as main menu, sidebar or footer independent navigation.
