Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

Firefox spews AbortError when scrubbing video (example code)

  • 1 svar
  • 1 har detta problem
  • 2 visningar
  • Senaste svar av oije2333

more options

Recent versions of Firefox continuously spew the following message in the console while scrubbing video:

    AbortError: The operation was aborted.

This occurs while dragging the progress bar handle along the progress bar in a video element.

Example code follows. After video loads, move the progress bar handle and observe the errors in the console.

<title>Video.js example</title> <meta charset="UTF-8"> <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet"> <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script>

Recent versions of Firefox continuously spew the following message in the console while scrubbing video: AbortError: The operation was aborted. This occurs while dragging the progress bar handle along the progress bar in a video element. Example code follows. After video loads, move the progress bar handle and observe the errors in the console. <!DOCTYPE html> <html> <head> <title>Video.js example</title> <meta charset='UTF-8'> <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet"> <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script> </head> <body> <video id="videojs_example" class="video-js vjs-default-skin" controls preload="auto" width=640 height=360 data-setup='{ "example_option": true, "controlBar": { "volumePanel": { "inline": false }} }'> <source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" type="video/mp4"> </video> </body> </html>

Alla svar (1)

more options

The code:

     <!DOCTYPE html>
     <html>
     <head>
       <title>Video.js example</title>
       <meta charset='UTF-8'>
       <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet">
       <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script>
     </head>
     <body>
       <video id="videojs_example" class="video-js vjs-default-skin"
        controls preload="auto" width=640 height=360
        data-setup='{ "example_option": true, "controlBar": { "volumePanel": { "inline": false }} }'>
        <source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
          type="video/mp4">
     </video>
     </body>
     </html>