Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

60%
+1 −0
Q&A Browser video sometimes stops working; how can I figure out why?

Does the Mac Mini have a GPU? This sounds like something that could happen due to a graphics driver issue. AFAIK Youtube relies on the HTML5 video element. If it freezes in all browsers, it's prob...

posted 2mo ago by matthewsnyder‭

Answer
#1: Initial revision by user avatar matthewsnyder‭ · 2024-03-04T16:13:01Z (about 2 months ago)
Does the Mac Mini have a GPU? This sounds like something that could happen due to a graphics driver issue.

AFAIK Youtube relies on the HTML5 `video` element. If it freezes in all browsers, it's probably not a browser problem. Nevertheless, most browsers (eg. Firefox) have a "Safe Mode" which starts the browser with a basic configuration, plugins disabled, and so on. This might be worth trying. You didn't mention restarting the browser, but since all the browsers freeze it seems beside the point. Also, check if there's a "hardware acceleration" setting and if disabling it helps.

Try to download one of the videos with Invidious or a tool like youtube-dl. See if they run from the hard drive, with QuickTime or mpv. If that freezes too it is definitely not a browser problem.

Incidentally, mpv can stream from Youtube directly. The command is `mpv https://www.youtube.com/...`. That would be another thing to try, and it would interrogate network issues as a suspect.

Lastly, try creating your own HTML file that points to a local video and seeing what that does. Maybe something like:
```
<body>
  <video controls>
    <source src="/Users/monica/movie.mp4" type="video/mp4">
  </video> 
<body/
```

You can open this file in a browser (File -> Open) and it should play the video same as Youtube does, but without any network requests involved. If it's really a video driver issue, this should also freeze.

If you do discover that it's a driver issue, there will not be much you can do. Essentially you will have to wait for Apple to publish an update, which may be after some months or years. I'm not sure if there's an easy way on Macs to downgrade to older driver versions, nor am I aware of an easy way to swap GPUs.