From 980fe00a74a9ad013b945755415ace2e5429c3c2 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Oct 2021 02:31:24 +0300 Subject: [RU] Remove notranslate (#2874) --- .../guide/audio_and_video_manipulation/index.html | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'files/ru/web/guide/audio_and_video_manipulation/index.html') diff --git a/files/ru/web/guide/audio_and_video_manipulation/index.html b/files/ru/web/guide/audio_and_video_manipulation/index.html index 4fafc4e8d9..116ca50d1d 100644 --- a/files/ru/web/guide/audio_and_video_manipulation/index.html +++ b/files/ru/web/guide/audio_and_video_manipulation/index.html @@ -41,7 +41,7 @@ translation_of: Web/Guide/Audio_and_video_manipulation

We can set up our video player and <canvas> element like this:

-
<video id="my-video" controls="true" width="480" height="270" crossorigin="anonymous">
+
<video id="my-video" controls="true" width="480" height="270" crossorigin="anonymous">
   <source src="http://jplayer.org/video/webm/Big_Buck_Bunny_Trailer.webm" type="video/webm">
   <source src="http://jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v" type="video/mp4">
 </video>
@@ -52,7 +52,7 @@ translation_of: Web/Guide/Audio_and_video_manipulation
 
 

This code handles altering the frames.

-
var processor = {
+
var processor = {
   timerCallback: function() {
     if (this.video.paused || this.video.ended) {
       return;
@@ -97,7 +97,7 @@ translation_of: Web/Guide/Audio_and_video_manipulation
 
 

Когда страница загрузилась осуществите вызов:

-
processor.doLoad()
+
processor.doLoad()

Результат

@@ -127,19 +127,19 @@ translation_of: Web/Guide/Audio_and_video_manipulation

HTML

-
<video id="my-video" controls
+
<video id="my-video" controls
        src="http://jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v">
 </video>

JavaScript

-
var myVideo = document.getElementById('my-video');
+
var myVideo = document.getElementById('my-video');
 myVideo.playbackRate = 2;