Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
Kamrat
Nov 27, 2012

Thanks for playing Alone in the dark 2.

Now please fuck off

Robobot posted:

It's raining and she's all wet. We've all been there. Being wet in a car sucks.

Just rub one out, no need to bring the icepick into this

Edit:

gently caress, new page... here, have a gif

Kamrat has a new favorite as of 20:38 on Oct 9, 2022

Adbot
ADBOT LOVES YOU

Cartoon Man
Jan 31, 2004


https://i.imgur.com/E6qFNeE.mp4

Jabberlock
Nov 29, 2014




Even simpler solution: wear shorter boots

Beachcomber
May 21, 2007

Another day in paradise.


Slippery Tilde

Jabberlock posted:

Even simpler solution: wear shorter boots

:wrong:

Azhais
Feb 5, 2007
Switchblade Switcharoo
https://i.imgur.com/oiUEMTy.mp4

mobby_6kl
Aug 9, 2009

by Fluffdaddy

What a week, huh?

everydayfalls
Aug 23, 2016
While sound is not required it is highly recomneded.

https://i.imgur.com/2ti4dB3.mp4

Kheldarn
Feb 17, 2011



https://i.imgur.com/uAQun9j.mp4

Inceltown
Aug 6, 2019


When they do it it's adorable but when I just start sniffing cracks everyone calls me a pervert.

deoju
Jul 11, 2004

All the pieces matter.
Nap Ghost
Weird question: I'm using Chrome and for every gif with sound I have to right-click, show controls, and then un-mute. Is there a way to show control by default?

hooah
Feb 6, 2006
WTF?

deoju posted:

Weird question: I'm using Chrome and for every gif with sound I have to right-click, show controls, and then un-mute. Is there a way to show control by default?

Same bit for Firefox.

liquidypoo
Aug 23, 2006

Chew on that... you overgrown son of a bitch.

deoju posted:

Weird question: I'm using Chrome and for every gif with sound I have to right-click, show controls, and then un-mute. Is there a way to show control by default?

I have Tampermonkey installed on my Chrome and use a script seemingly written by a goon specifically to fix this! It's not a 100% fix, but most will show their controls by default

code:
// ==UserScript==
// @name               video resizing and sound
// @namespace          https://forums.somethingawful.com/
// @description        loving giant vertical recording
// @include            https://forums.somethingawful.com/*
// @grant              GM_addStyle
// ==/UserScript==

GM_addStyle("video { max-height: 700px; max-width: 800px;} ");

window.addEventListener("load", function() {
    $("video").attr("controls", "controls");
}, false);

Unperson_47
Oct 14, 2007



liquidypoo posted:

I have Tampermonkey installed on my Chrome and use a script seemingly written by a goon specifically to fix this! It's not a 100% fix, but most will show their controls by default

code:
// ==UserScript==
// @name               video resizing and sound
// @namespace          https://forums.somethingawful.com/
// @description        loving giant vertical recording
// @include            https://forums.somethingawful.com/*
// @grant              GM_addStyle
// ==/UserScript==

GM_addStyle("video { max-height: 700px; max-width: 800px;} ");

window.addEventListener("load", function() {
    $("video").attr("controls", "controls");
}, false);

This worked for a few months for me but just broke recently.

Inceltown
Aug 6, 2019

Unperson_47 posted:

This worked for a few months for me but just broke recently.

Are you using Chrome or FF? It works for me in FF 105.0.3.

Garrand
Dec 28, 2012

Rhino, you did this to me!

I don't remember who posted this one but I've been using this script for a while now, in Chrome with Violentmonkey. Enables controls, volume, and immediately pauses the video. I realized it doesn't cap the size of the video but I also haven't had that issue so I wonder if that was fixed within SA itself?

code:
// ==UserScript==
// @name        Fix videos - somethingawful.com
// @namespace   Violentmonkey Scripts
// @match       https://forums.somethingawful.com/*
// @version     1.0
// @author      -
// @description 2/27/2020, 11:56:31 PM
// ==/UserScript==

const fixVideos = setTimeout(function(){
  var videos = document.getElementsByTagName('video');
  for(var i = 0; i < videos.length; i++){
    videos[i].removeAttribute('loop');
    videos[i].controls = true;
    videos[i].pause();
    videos[i].currentTime = 0;
    videos[i].volume = 0.2;
    videos[i].muted = false;
  }
}, 500);

Megillah Gorilla
Sep 22, 2003

If only all of life's problems could be solved by smoking a professor of ancient evil texts.



Bread Liar
That's the one I use and it's great.

Only two small issues - it pauses all MP4's by default so you'll need to get used to clicking on every image to see if it starts moving.

The second is that, if the file has a few frames from a different video at the start, you might see it resize itself for an instant when you press play. Not, bad, just annoying. If it really bothers you, you could just limit the player size.

deoju
Jul 11, 2004

All the pieces matter.
Nap Ghost

Garrand posted:

I don't remember who posted this one but I've been using this script for a while now, in Chrome with Violentmonkey. Enables controls, volume, and immediately pauses the video. I realized it doesn't cap the size of the video but I also haven't had that issue so I wonder if that was fixed within SA itself?

code:
// ==UserScript==
// @name        Fix videos - somethingawful.com
// @namespace   Violentmonkey Scripts
// @match       https://forums.somethingawful.com/*
// @version     1.0
// @author      -
// @description 2/27/2020, 11:56:31 PM
// ==/UserScript==

const fixVideos = setTimeout(function(){
  var videos = document.getElementsByTagName('video');
  for(var i = 0; i < videos.length; i++){
    videos[i].removeAttribute('loop');
    videos[i].controls = true;
    videos[i].pause();
    videos[i].currentTime = 0;
    videos[i].volume = 0.2;
    videos[i].muted = false;
  }
}, 500);

This worked for me right way. Thanks!

Thanks to everybody who made suggestions.

Unperson_47
Oct 14, 2007



Inceltown posted:

Are you using Chrome or FF? It works for me in FF 105.0.3.

I somehow had deleted the last semicolon. Works now. :toot:

Samovar
Jun 4, 2011

When I want to relax, I read an essay by Engels. When I want something more serious, I read Corto Maltese.

everydayfalls posted:

While sound is not required it is highly recomneded.

https://i.imgur.com/2ti4dB3.mp4

It's nice when people can laugh at themselves.

Kheldarn
Feb 17, 2011



https://i.imgur.com/BclmhC1.mp4

Regular Wario
Mar 27, 2010

Slippery Tilde
The migration is starting

ComfyPants
Mar 20, 2002


Heading up!stream

RFC2324
Jun 7, 2012

http 418


at first I assumed this was in the denver thread

ThisIsJohnWayne
Feb 23, 2007
Ooo! Look at me! NO DON'T LOOK AT ME!



"Offroad isn't a capability / it's a lifestyle"

PainterofCrap
Oct 17, 2002

hey bebe




HOV qualifications are getting riduculous

haveblue
Aug 15, 2005



Toilet Rascal

PainterofCrap posted:

HOV qualifications are getting riduculous

Common mistake, that's actually the ROV lane

Esran
Apr 28, 2008

everydayfalls posted:

While sound is not required it is highly recomneded.

It clearly says "Yo" :smuggo:

RFC2324
Jun 7, 2012

http 418

Esran posted:

It clearly says "Yo" :smuggo:

Tribute to the old band "Yo Yo Ma"

Bad Munki
Nov 4, 2008

We're all mad here.


RFC2324 posted:

"Yo Ma Ma"

Hence the whale

Beachcomber
May 21, 2007

Another day in paradise.


Slippery Tilde

Esran posted:

It clearly says "Yo" :smuggo:

You idiot, the 'G' and Sothoth are missing.

pik_d
Feb 24, 2006

follow the white dove





TRP Post of the Month October 2021
Please turn on the sound and try to guess what happens

https://i.imgur.com/NyRoihV.mp4

mobby_6kl
Aug 9, 2009

by Fluffdaddy
https://i.imgur.com/BB9WXuq.mp4

Cartoon Man
Jan 31, 2004


https://i.imgur.com/29RTPVJ.mp4

ThisIsJohnWayne
Feb 23, 2007
Ooo! Look at me! NO DON'T LOOK AT ME!



"Judge us not for our failures, judge us for what we tried to achieve" #bitcoin
fygm money :ssh:

ThisIsJohnWayne has a new favorite as of 10:50 on Oct 13, 2022

Tenebrais
Sep 2, 2011


Heard water cooling would be helpful

Cartoon Man
Jan 31, 2004


https://i.imgur.com/DLixQ9V.mp4

Samovar
Jun 4, 2011

When I want to relax, I read an essay by Engels. When I want something more serious, I read Corto Maltese.

Reminds me of the short story Mimic.

ilmucche
Mar 16, 2016

What did you say the strategy was?

pik_d posted:

Please turn on the sound and try to guess what happens

https://i.imgur.com/NyRoihV.mp4

It certainly wasn't that


I like this bear!

HenryJLittlefinger
Jan 31, 2010

stomp clap



This bear is doing it right, he knows you have to spread your weight out when crossing thin ice.

Adbot
ADBOT LOVES YOU

MrMidnight
Aug 3, 2006

wanna follow that bear and see what other cool poo poo he does

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply