Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Firefox spews AbortError when scrubbing video (example code)

  • 1 antwoord
  • 1 heeft dit probleem
  • 120 weergaven
  • Laatste antwoord van 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>

Alle antwoorden (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>