3

Is there any way to improve the Adobe flash player hardware acceleration in Ubuntu, with an Intel graphics card?

Glutanimate
  • 21,183
  • 13
  • 100
  • 153
Raja G
  • 100,643
  • 105
  • 254
  • 328

1 Answers1

3

By using libvdpau-va-gl is a VDPAU driver we can accelerate the flash player in terms of increasing its decoding speed.

To install it and configure the instruction are here . Open your terminal and type as To install the latest Intel Drivers( if already installed , no need)

sudo apt-get install i965-va-driver

Then install libvdpau-va-gl

sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install libvdpau-va-gl1

instruct the adobe flash for hardware acceleration

sudo mkdir -p /etc/adobe
echo "EnableLinuxHWVideoDecode=1" | sudo tee /etc/adobe/mms.cfg
echo "OverrideGPUValidation=1" | sudo tee -a /etc/adobe/mms.cfg 

suggest your browser for acceleration

VDPAU_DRIVER=va_gl firefox

Note: chrome was not up to this.

That's it. your flash will be fast more than usual.

credit goes

Raja G
  • 100,643
  • 105
  • 254
  • 328
  • For the Chrome/Chromium browsers see [this question](http://askubuntu.com/q/325431/178596) – Wilf Apr 19 '15 at 14:31