Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

How to loop webm videos?

more options

I've opened a webm video file in a new tab. It plays well, but only once and doesn't loop. How do I make it loop?

I've opened a webm video file in a new tab. It plays well, but only once and doesn't loop. How do I make it loop?

Ausgewählte Lösung

I wanted Webm files to loop as well and I created a userscript for this. You can find it here: https://github.com/WhatIsThisImNotGoodWithComputers/webm-looper-userscript

Diese Antwort im Kontext lesen 👍 11

Alle Antworten (3)

more options

When a page contains the <video src="some.webm"> tag, it can easily set loop to true.

However, when media is opened in a tab directly in the "stand-alone player", it is governed by Firefox's default HTML. I'm not aware of any available setting to turn on looping in this context. Someone else might have an idea, or perhaps there is an add-on to do it.

As a workaround, what do you think about a bookmarklet? You would click this to turn on looping (before the video ends). Here's how to test it out:

(1) Select and copy the script (it's all one line)

javascript:var vids=document.getElementsByTagName("video"); for (i=0; i<vids.length; i++) vids[i].setAttribute("loop", "true"); void 0;

(2) Right-click your Bookmarks Toolbar and choose New Bookmark

If you do not normally display the Bookmarks Toolbar, then you can create it on the Bookmarks Menu instead. You can create it somewhere on the menu in the Library dialog (Ctrl+Shift+b) and then drag it to the preferred position.

(3) Paste the script into the Location field

(4) Type the name of your choice into the Name field, for example, LoopVids

(5) Click Add to save it

To run the script on a page, click the button. That's it.

more options

That works, thanks. I'd rather have some setting i could set once, but this works too.

more options

Ausgewählte Lösung

I wanted Webm files to loop as well and I created a userscript for this. You can find it here: https://github.com/WhatIsThisImNotGoodWithComputers/webm-looper-userscript