


Recently, we are studying the use of video to replace animation, and the use of video to replace sprite animation. We call this kind of video interactive video.
Traditional sprite animation:
The disk space is large and the download is slow, especially when played online, it will be even slower
-
There are too many files. When playing online, too many http requests will lead to slow response or abnormal behavior.
Therefore, it is urgent to develop a set of technologies to use Video instead of sprite animation. We call this kind of video interactive video
The problem with traditional video:
Traditional video can only be played in a square area
Traditional videos are played in windows on the iPad. On iPhone, they can only be played in full screen.
Traditional videos will definitely appear when playing. At the front end
audio and video during the years of mobile H5 development and give my own solutions
Look at the final actual effect: compatible with PC (>IE9), iPhone, iPad, Android 5.0It solves the problems of manual, automatic, windowing, etc. on iPhone, and can basically be used Actual productionThe right side is the original video mp4 fileThe video on the left replaces the animation, and then supports the background mask effect, which can reveal the base map and support a series of interactive operationsH5 audio audio
# Each time an audio object is passed through new Audio, you can see it on IOS A new thread will be generated, which is disgusting
Solution: new Audio object, by replacing different audio addresses, to achieve The purpose of not opening more threads
- The support on Android is not strong
Solution: The problem on lower versions of Android is not solved. Generally, hybrid development can be handled by adjusting the underlyinginterface. For example, phonegap
- cannot be automatically used on iPhone Play
Solution: Automatic playback on iPhone is a process done when IOS was designed. It seems to be to prevent automatic theft of trafficTo put it simply, you need to simulate the user to trigger it manuallySo we need to call this piece of code at the beginning:This is from my project, I just deducted it directly
//修复ios 浏览器不能自动播放音频的问题 在加载时创建新的audio 用的时候更换src即可 Xut.fix = Xut.fix||{}; if (Xut.plat.isBrowser && Xut.plat.isIOS) { var isAudio = false var fixaudio = function() { if (!isAudio) { isAudio = true; Xut.fix.audio = new Audio(); document.removeEventListener('touchstart', fixaudio, false); } }; document.addEventListener('touchstart', fixaudio, false); }If such a code is bound to the body: create an audio object through manual triggering, and then save it in the globalWhen used, it is as follows
//如果为ios browser 用Xut.fix.audio 指定src 初始化见app.js if (Xut.fix.audio) { audio = Xut.fix.audio; audio.src = url; } else { audio = new Audio(url); } audio.autoplay = true; audio.play();Just replace the audio object directly. To put it simply, the object created by the user must be triggered automatically to play
H5 video audio
video Tags may be rarely used on mobile devices, and Android support is terrible. It is visually improved with version 5.0An old problem on iPhone, it cannot play automatically (save data, save your sister!!!), and the default is Full-screen control playbackFor a long time, I ignored this video processing. Android uses the bottom layer, and iPhone uses VideoJS directly. It has built-in flash and h5 switching, and flash also has support issuesbefore Recently, the boss had a request. We have too many application animations, all of which are combination animations of sprite routes. One app can range from hundreds of megabytes to hundreds of megabytes, so we urgently need a solution to compressThe final solution is to use video instead of animation, because video compression technology has been developed for many years and has become very mature. Current video compression technology can easily compress 7Detailed explanation of HTML5 mobile audio and video problems and solutions0P high-definition movies to 10M/minute, or 160K/second. It is at least dozens of times smaller than the file size of the image sequence. At the same time, most devices support hardware decompression of videos. In this way, the CPU consumption of video playback is very low, the battery consumption is also very low, and the playback speed is still fast. Even full-screen playback of Detailed explanation of HTML5 mobile audio and video problems and solutions5 frames can be easily achieved.
After the plan is finalized, several problems need to be solved.
The entire video, including certain objects in the video, can respond to the user’s clicks and slides. Class operations
On the iPhone, it can be played in a window
The background can be filtered out, so it can be used like a PNG image
The final actual effect is also shown in the starting gif animation:
The video replaces the animation, and then supports the background mask effect, which can reveal the base image
Also solved the problem of manual, automatic and not full screen
iphone windowing
Solution:
Passcanvas + video tag combined processing
Principle: Get the original frame of the video and draw it to the page through canavs
Video instead of animation
This is a bit troublesome. It requires interaction and dragging the canvas to control the image. I haven't finished writing it all yet, and general company needs will not have this
Here is a brief description, it is also processed by canvas + video, but a cached canvas container is required for preprocessing
Through preprocessing, get By changing the RBG value of each pixel of each image, the background can be filtered out,
so that it can be used like a PNG image
The above is the detailed content of Detailed explanation of HTML5 mobile audio and video problems and solutions. For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

因为html5不基于SGML(标准通用置标语言),不需要对DTD进行引用,但是需要doctype来规范浏览器的行为,也即按照正常的方式来运行,因此html5只需要写doctype即可。“!DOCTYPE”是一种标准通用标记语言的文档类型声明,用于告诉浏览器编写页面所用的标记的版本。


Hot AI Tools

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

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

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
