Two ways to remove the 30-second ad code from Youku video

Two ways to remove the 30-second ad code from Youku video
I believe everyone has had this feeling: watching a video with a 30-second advertisement makes people very uncomfortable. Similarly, for our front-end guys, in order to attract users, we embed the produced videos into the web page. As a result, because the video has a 30-second advertisement, it not only fails to attract many users, but may also lose some users, which will also make us feel unhappy. Below I will introduce two codes for removing advertisements:

The first one is more commonly used (but recently it seems to have some problems, so it is not recommended to use this method):

Copy code
The code is as follows:

<embed src="http://static.youku.com/v1.0.0149/v/swf/qplayer_rtmp.swf?VideoIDS=XNTk1MzQ1OTky&winType=adshow&isAutoPlay=false" quality="high" width="480" height="400" type="application/x-shockwave-flash"></embed>

Among them, XNTk1MzQ1OTky is your video id (XNTk1MzQ1OTky in the link http://v.youku.com/v_show/id_XNTk1MzQ1OTky.html is the video id).

The second method (has pause/play function, but cannot display in full screen):

Copy code
The code is as follows:

<embed src="http://static.youku.com/v/swf/qplayer.swf?VideoIDS=XNTk1MzQ1OTky&winType=adshow&isAutoPlay=false" quality="high" width="480" height="400" type="application/x-shockwave-flash"></embed>

Similarly, just replace XNTk1MzQ1OTky with your own video id.

PS:

The isAutoPlay parameter in src indicates whether to play automatically. It has two values: true (autoplay) and false (cancel autoplay).

<<:  Introduction to user management under Linux system

>>:  Implementation of inserting millions of records into MySQL database within 10 seconds

Recommend

Detailed explanation of CSS multiple three-column adaptive layout implementation

Preface In order to follow the conventional WEB l...

IIS and APACHE implement HTTP redirection to HTTPS

IIS7 Download the HTTP Rewrite module from Micros...

CentOS 8 is now available

CentOS 8 is now available! CentOS 8 and RedHat En...

Three ways to achieve background blur in CSS3 (summary)

1. Normal background blur Code: <Style> htm...

Detailed explanation of Kubernetes pod orchestration and lifecycle

Table of contents K8S Master Basic Architecture P...

MySQL SQL statement analysis and query optimization detailed explanation

How to obtain SQL statements with performance iss...

How to transfer files between Windows and Linux

File transfer between Windows and Linux (1) Use W...

Learn about TypeScript data types in one article

Table of contents Basic Types any type Arrays Tup...

MySQL Basics Quick Start Knowledge Summary (with Mind Map)

Table of contents Preface 1. Basic knowledge of d...

Tutorial on installing MySQL 8.0.11 using RPM on Linux (CentOS7)

Table of contents 1. Installation preparation 1. ...

How to implement animation transition effect on the front end

Table of contents Introduction Traditional transi...

Example of using js to natively implement year carousel selection effect

Preface Use js to achieve a year rotation selecti...

SQL method for calculating timestamp difference

SQL method for calculating timestamp difference O...