72

I've got movies playing in fast forward in YouTube HTML 5 mode if I play it in Google Chrome. If I open it with Firefox, it plays well. Any ideas?

Braiam
  • 67,791
  • 32
  • 179
  • 269

4 Answers4

65

If you're using Chrome from the dev or unstable channels, you probably have a bad Flash plugin enabled (this affects HTML5 audio as well for some obscure reason).

To fix it, go to chrome://plugins and disable all the flash plugins. Then click +Details to show the individual versions of Flash, enable them one at a time until the problem goes away.

This is the configuration that worked for me:

flash plugin configuration in chrome

If you none of the versions you have work, you may need to install the adobe-flashplugin package:

sudo apt-get install adobe-flashplugin
Jacob
  • 1,009
  • Sadly if you only have the NPAPI version enabled most websites seem to think you don't have flash at all! – Timmmm Jul 24 '12 at 21:05
  • 1
    Yes, disabling of Shockwave Flash 11.3 r31 helped me. The only difference is that I'm using OpenSUSE 12.1 distro. – George Gaál Jul 24 '12 at 23:30
41

Please note: sometimes if the problem still persists then this may be related to pulseaudio, in such case you can use

killall pulseaudio

pulseaudio would start automatically again

And restart the browser and it will work.

If this only works temporarily, you can try replacing pulse audio with the alsa module for good.

puneet
  • 1,302
  • 2
    This is the only solution that worked for me. Strange thing was that using Jacob's solution gave me either a really fast youtube or a really stuttery and slow one. – ubershmekel Aug 15 '12 at 07:35
  • 1
    Same as ubershmekel here. Selecting a specific flash plugin made it either very slow or even faster. Leaving the plugins as they were and just killing and starting pulseaudio did the trick. Note: sudo service pulseaudio restart did NOT help. – nem75 Aug 30 '12 at 22:36
  • 6
    You shouldn't need to explicitly restart it. It should start automatically as needed when not running.. – Timo Sep 04 '12 at 06:48
  • The problem just came back after a long hiatus. Any idea for a permanent fix? – ubershmekel Nov 08 '12 at 06:55
  • just killing worked for me. It seems it restarts itself – serengeti12 Dec 03 '12 at 16:23
17

I found some solutions:

  • Reset you're sound settings, (apparantly if you use hdmi for audio and video there is nothing slowing the playback down) so what you have to do is try changing audio playback device :)

  • One user found that "setting the specific speaker layout fixed my problem (from nothing to 5.1, as that is what I have)."

Eliah Kagan
  • 117,780
fenrig
  • 171
  • Here I am a year and a half later to find out that HDMI audio does screw up the playback. Is there a fix for this? – Lunyx Jan 05 '14 at 15:18
  • Audio playback configuration changed somehow and was indeed the reason video playback was going too fast. Something you wouldn't easily guess but thanks for this answer because it solved my problem! In my case I changed it back to line-out and playback was normal again. Thanks! – E.F. Nijboer Jul 01 '16 at 16:34
4

For me it was related to an install of Totem video player which installed a vlc multimedia plugin for chrome:

VLC Multimedia Plugin (compatible Totem 3.0.1)

Disabling this plugin made it work!

Sven
  • 41