Flash Plugin constantly crashing on youtube

i686
extra/flashplugin 11.2.202.297-1
crashes with Opera, Chromium and Firefox almost every time on Youtube since an update in the last two days.
EnableLinuxHWVideoDecode=0 already set in /etc/adobe/mms.cfg
also tried re-installing flashplugin and libvdpau
found no interesting error messages when starting firefox from console
Last edited by cro (2013-08-30 23:01:56)

I was with similar problem (i have a FX5200 / NV34), and all time than mesa get update stop my flash and my mplayer like i have reported here:
https://bugs.archlinux.org/task/36004
https://bbs.archlinux.org/viewtopic.php?id=166269
https://bugs.archlinux.org/task/36712
https://bugs.freedesktop.org/show_bug.cgi?id=64582
The problem is, mesa and/or nouveau-dri don´t detect my videocard correctly and/or not consider NV34 can´t handle vdpau driver, and try force use vdpau on it. It is a bug in mesa or nouveau-dri i think.
This problem occur only using xf86-video-nouveau, because nvidia proprietary detect videocard vdpau correctly (mesa/nouveau don´t).
So, my solution was modify mesa PKGBUILD removing vdpau from the package and recompiling it.
In my modification, using abs i compile with makepkg -sr, then i install mesa-9.2.0-1-i686.pkg.tar.xz and nouveau-dri-9.2.0-1-i686.pkg.tar.xz.
Optionally you can install mesa-libgl-9.2.0-1-i686.pkg.tar.xz too. I am. Because all is compiled in same place.
Actually i don´t have more problems. My problem is solved!
Sorry for my bad english, i don´t speak english very well.
# $Id: PKGBUILD 193703 2013-08-28 15:19:08Z andyrtr $
# Maintainer: Jan de Groot <[email protected]>
# Maintainer: Andreas Radke <[email protected]>
pkgbase=mesa
pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl')
pkgver=9.2.0
pkgrel=1
arch=('i686' 'x86_64')
makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'libxxf86vm' 'libxdamage'
'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd')
url="http://mesa3d.sourceforge.net"
license=('custom')
options=('!libtool')
source=(ftp://ftp.freedesktop.org/pub/mesa/9.2/MesaLib-${pkgver}.tar.bz2
LICENSE)
md5sums=('4185b6aae890bc62a964f4b24cc1aca8'
'5c65a0fe315dd347e09b1f2826a1df5a')
build() {
cd ${srcdir}/?esa-*
autoreconf -vfi # our automake is far too new for their build system :)
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-dri-driverdir=/usr/lib/xorg/modules/dri \
--with-gallium-drivers=r300,r600,radeonsi,nouveau,svga,swrast \
--with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
--with-egl-platforms=x11,drm,wayland \
--with-llvm-shared-libs \
--enable-gallium-llvm \
--enable-egl \
--enable-gallium-egl \
--enable-shared-glapi \
--enable-gbm \
--enable-glx-tls \
--enable-dri \
--enable-glx \
--enable-osmesa \
--enable-gles1 \
--enable-gles2 \
--enable-texture-float \
--enable-xa \
--disable-vdpau \
# --help
make
# fake installation
mkdir $srcdir/fakeinstall
make DESTDIR=${srcdir}/fakeinstall install
package_ati-dri() {
pkgdesc="Mesa drivers for AMD/ATI Radeon"
depends=("mesa-libgl=${pkgver}")
optdepends=('libtxc_dxtn: S3 Texture Compressed support')
conflicts=('xf86-video-ati<6.9.0-6')
# install -m755 -d ${pkgdir}/usr/lib/vdpau/
# mv -v ${srcdir}/fakeinstall/usr/lib/vdpau/libvdpau_{r300,r600,radeonsi}.* ${pkgdir}/usr/lib/vdpau/
install -m755 -d ${pkgdir}/usr/lib/xorg/modules/dri
mv -v ${srcdir}/fakeinstall/usr/lib/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so ${pkgdir}/usr/lib/xorg/modules/dri/
install -m755 -d ${pkgdir}/usr/lib/gallium-pipe
mv -v ${srcdir}/fakeinstall/usr/lib/gallium-pipe/pipe_{r300,r600,radeonsi}* ${pkgdir}/usr/lib/gallium-pipe/
install -m755 -d "${pkgdir}/usr/share/licenses/ati-dri"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/ati-dri/"
package_intel-dri() {
pkgdesc="Mesa drivers for Intel"
optdepends=('libtxc_dxtn: S3 Texture Compressed support')
depends=("mesa-libgl=${pkgver}")
install -m755 -d ${pkgdir}/usr/lib/xorg/modules/dri
mv -v ${srcdir}/fakeinstall/usr/lib/xorg/modules/dri/{i915,i965}_dri.so ${pkgdir}/usr/lib/xorg/modules/dri/
install -m755 -d "${pkgdir}/usr/share/licenses/intel-dri"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/intel-dri/"
package_nouveau-dri() {
pkgdesc="Mesa drivers for Nouveau"
optdepends=('libtxc_dxtn: S3 Texture Compressed support')
depends=("mesa-libgl=${pkgver}")
# install -m755 -d ${pkgdir}/usr/lib/vdpau/
# mv -v ${srcdir}/fakeinstall/usr/lib/vdpau/libvdpau_nouveau.* ${pkgdir}/usr/lib/vdpau/
install -m755 -d ${pkgdir}/usr/lib/xorg/modules/dri
mv -v ${srcdir}/fakeinstall/usr/lib/xorg/modules/dri/nouveau_{dri,vieux_dri}.so ${pkgdir}/usr/lib/xorg/modules/dri/
install -m755 -d ${pkgdir}/usr/lib/gallium-pipe
mv -v ${srcdir}/fakeinstall/usr/lib/gallium-pipe/pipe_nouveau* ${pkgdir}/usr/lib/gallium-pipe/
install -m755 -d "${pkgdir}/usr/share/licenses/nouveau-dri"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/nouveau-dri/"
package_svga-dri() {
pkgdesc="Gallium3D VMware guest GL driver"
depends=('libdrm' 'expat' 'llvm-libs')
install -m755 -d ${pkgdir}/usr/lib/xorg/modules/dri
mv -v ${srcdir}/fakeinstall/usr/lib/xorg/modules/dri/vmwgfx_dri.so ${pkgdir}/usr/lib/xorg/modules/dri/
install -m755 -d ${pkgdir}/usr/lib/gallium-pipe
mv -v ${srcdir}/fakeinstall/usr/lib/gallium-pipe/pipe_vmwgfx* ${pkgdir}/usr/lib/gallium-pipe/
install -m755 -d "${pkgdir}/usr/share/licenses/svga-dri"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/svga-dri/"
package_mesa() {
pkgdesc="an open-source implementation of the OpenGL specification"
depends=('libdrm' 'libvdpau' 'wayland' 'libxxf86vm' 'libxdamage' 'systemd' 'elfutils' 'llvm-libs')
optdepends=('opengl-man-pages: for the OpenGL API man pages')
provides=('libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel')
conflicts=('libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel')
replaces=('libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel')
mv -v ${srcdir}/fakeinstall/* ${pkgdir}
# rename libgl.so to not conflict with blobs - may break gl.pc ?
mv ${pkgdir}/usr/lib/libGL.so.1.2.0 ${pkgdir}/usr/lib/mesa-libGL.so.1.2.0
rm ${pkgdir}/usr/lib/libGL.so{,.1}
install -m755 -d "${pkgdir}/usr/share/licenses/mesa"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa/"
package_mesa-libgl() {
pkgdesc="Mesa 3-D graphics library"
depends=("mesa=${pkgver}")
provides=("libgl=${pkgver}")
replaces=('libgl')
# See FS#26284
install -m755 -d "${pkgdir}/usr/lib/xorg/modules/extensions"
ln -s libglx.xorg "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"
ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/libGL.so
ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/libGL.so.1
ln -s mesa-libGL.so.1.2.0 ${pkgdir}/usr/lib/libGL.so.1.2.0
install -m755 -d "${pkgdir}/usr/share/licenses/mesa-libgl"
install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa-libgl/"
Last edited by semeion (2013-09-06 08:44:11)

Similar Messages

  • Adobe flash plugin CONSTANTLY crashing

    It seems like every time Firefox does any upgrades, or if any of my add-ons update, I go through a few days of having the Adobe Flash plugin crashing non-stop. No video clips, nothing on Facebook works (games). I've made sure the latest Flash plugin is installed, but that doesn't help.
    Any suggestions?

    Any suggestions/solutions? And why is this cropping up ''now'' instead of back in early December when I upgraded?

  • I have the latest plugins and firefox but it still says 'adobe flash plugin has crashed' How do i fix this?

    Every time I go on YouTube, it comes up with: 'adobe flash plugin has crashed'. I have tried refreshing and restarting my laptop, I have also got all the latest flash and Firefox, but it still won't work.

    I'd start with disabling Hardware Acceleration, as described in the video troubleshooting guide below:
    Video playback issues
    If that solves the problem, make sure that your graphics drivers are current. 
    If it *still* happens with current drivers, please give us detailed information on the graphics card and driver, so that we can disable hardware acceleration on this configuration and start a conversation with the appropriate vendor.
    The best way to get this information is to do the following (on Windows):
    Open a command prompt
    Type: dxdiag
    Hit Enter
    This should launch the DirectX Diagnostic Tool
    Click Save All Information (or whatever that save button says).
    Paste the contents into a reply here, or you can click Use Advanced Editor in the upper right of the reply window, and then attach the file using the link at the bottom right of the reply window.

  • In Gmail. "Adobe Flash PLUGIN has Crashed" trying to ATTACH a file

    "Adobe Flash PLUGIN has Crashed" error message in Gmail when trying to attach a large file. Error pops up after 7 to 8 megs are uploaded.

    Thanks for that, I had this problem too and it solved it out for me.
    The only problem was to be able to find a flash video that would work,
    you might want to try to open a youtube link that somebody posted on facebook,
    and than right click it and disable hardware accelaration.

  • Error, The Adobe Flash plugin has crashed. Where do I go to down load it or how do I fix it??

    Error, "The Adobe Flash plugin has crashed." I get this error when I try to watch a video even on YouTube. Where do I go to down load it or how do I fix it??

    I'd start with disabling Hardware Acceleration, as described in the video troubleshooting guide below:
    Video playback issues
    If that solves the problem, make sure that your graphics drivers are current. 
    If it *still* happens with current drivers, please give us detailed information on the graphics card and driver, so that we can disable hardware acceleration on this configuration and start a conversation with the appropriate vendor.
    The best way to get this information is to do the following (on Windows):
    Open a command prompt
    Type: dxdiag
    Hit Enter
    This should launch the DirectX Diagnostic Tool
    Click Save All Information (or whatever that save button says).
    Paste the contents into a reply here, or you can click Use Advanced Editor in the upper right of the reply window, and then attach the file using the link at the bottom right of the reply window.

  • The Adobe Flash plugin keeps crashing on Firefox 12.0

    The Adobe Flash plugin keeps crashing on Firefox 12.0, and my Plugin Check link in Addons Manager directs to https://www.mozilla.com/en/404 .
    Is this a hack attempt? Is Firefox 3.6 safer than the release channel?

    Thankss, but it sounds a bit complicated for me. Maybe I can just reinstall FF?
    ~And would switching back to FF 3.6 (or whatever the latest Official release is), rather than being on the new Release Channel be safer than FF 12?

  • Firefox crashes: "Adobe Flash Plugin has Crashed" (in safemode)

    In Gmail / compose / attach a file (about 11 Megs)
    about 3/4 of file is uploaded when a bar opens at the top with error message. "Adobe Flash Plugin has crashed" ... click to reload the page (reload never works & "attach file" button is dead)

    You can also set the pref dom.ipc.plugins.timeoutSecs to -1 to disable the timeout.

  • "Adobe flash plugin has crashed" error. Help?

    I have tried a bunch of fixes I found searching through the web, but nothing so far has worked. I thought you fine fellow Apple folks might know what the heck is going on. After the last update, I started getting the error message "Adobe flash plugin has crashed" in both Firefox and Safari (both updated fully). I'm running Snow Leopard on a Mac Pro. Using latestet version of the Flash plugin. And, I have uninstalled and installed again per Adobe's website... not helpful, still having the issue.
    Funny thing is, I have all the same software, updgrades, etc. on my Macbook Pro, and the Flash plugin works fine. Can anyone help me find out what might be causing this issue?

    I cannot recall ever being this frustrated with my Mac and I have been faithfully using Mac for 20+ years!!
    I am currently using a Macbook Pro 2.3 Ghz intel Core i7 4GB RAM Mac OSX 10.7.5
    Problems encountered:
    Very slow browsers chrome, safari, firefox - have tried them all in hopes of finding one that works with no luck!!
    Adobe Flash crash error codes all the time.  I receive update request links from all three browsers asking me to update adobe flash software which I have done repeatedly numerous times with absolutely no success, just a waste of time and lots of frustration.
    Spinning rainbow sprocket is a common thing on my macbook, drives me insane!!
    I found this thread and followed the instructions to go into "System Preferences, Flash Player, selecting the Advanced tab, and delete all browser data and settings."  I then updated my Adobe Flash in my System Preferences, not the typical browser update method.
    So far, this method appears to be working - will keep my fingers crossed!!!

  • The Adobe Flash plugin has crashed! Help please.

    I can't load any flash content within Firefox. I instantly get the following error: "The Adobe Flash plugin has crashed. Reload the page to try again.".
    So far I've uninstalled and reinstalled Flash, restarted my computer, and disabled hardware acceleration all to no avail. Any help would be appreciated.

    Ok, so scratch my last response. Disabling hardware acceleration through Firefox (orange Firefox button (or Tools menu) > Options > Advanced > General > "Use hardware acceleration when available" ) did not work however step 3B did. Following your link, right clicking on the Flash logo and disabling hardware acceleration there has fixed my issue.
    Thanks!

  • My adobe flash plugin is crashing.And i need to know how to fix it

    My adobe flash plugin is crashing.And i need to know how to fix it

    What operating system?  What browser?  What Flash Player version?
    [topic moved to Flash Player forum]

  • Problem with Adobe Flash (plugin has crashed). Have updated, uninstalled etc.

    Recently I keep getting the Adobel Flash plugin has crashed message. Not aware I have changed any programs or software.
    I have ensured every thing in uptodate. Tried uninstalling and re-downloading. No success.
    Read your help page.
    Are there suitable alternatives to Adobe or is this limited by the websites that use Adobe?

    I am adding screen shot of Yahoo messenger to my previous question. Though it is in Japanese but there is a little English too which will be helpful to those who could not read Japanese.

  • Why does Adobe flash plugin keep crashing?

    Why does Adobe flash plugin keep crashing?

    What is your operating system, version & edition?
    What is your web browser?
    What is your Flash Player version?
    → http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main_Find_the_Flash_ Player_version_installed_on_your_machine

  • The Adobe Flash plugin has crashed and it do that several times in a day

    The Adobe Flash plugin has crashed and it do that several times in a day my dom.ipc.plugins.timeoutSecs;60 . What to do?
    version 7.0.1
    Win 7

    Your installed plugins list shows two different versions of Flash. Use the Adobe uninstaller program to entirely remove Flash and then install the latest version.
    http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html#main_Download_the_Adobe_Flash_Player_uninstaller

  • The Adobe Flash Plugin has Crashed. Submission Failed.

    The Adobe Flash Plugin has crashed. Submission failed. I tried to copy the Send Report link and send the report using another browser, but there was no way to copy it, since that option was not given. The Plugin was for a John Deere add in the following web page:http://www.accuweather.com/blogs/news/story/34316/exploding-thunderstorm-cause-u.asp
    == This happened ==
    A few times a week
    == When there are ads using the Adobe Flash pugin. It has also happend with wunderground.com

    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • Flash Drive Plugin constantly crashes, nothing you suggested works to stop this from happening, what should I do? There is also a game that pops up

    I am suddenly having all kinds of issues with the Flash plug in crashing constantly and a game that doesn't show what it is, or let you play pops up and controls the window. You have to hit control alt a to quit the game or escape which either way you go the results are a crash and firefox locks up. I changed my default browser and the same thing happened. Frustrated, a little angry, and a lot fed up. What can I do to correct this problem and how do I find out what the game is so I can delete it? HELP! Please.

    Whilst I usually run Beta Versions of Firefox I have had this problem occurring for several versions now. I have been able to resolve all crashing issues 100% SO FAR by following Adobe's "Flash Player Help /
    Uninstall Flash Player | Windows" on website:
    http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    for a total un-install of flash followed by an installation of the new Flash version (FOR ME usually needed for most updates recently).
    However, It is getting tedious doing all these manual procedures each time Adobe update its Flash Plug-in, '''and it should not be necessary'''.
    To be honest, as this Adobe recommended solution has always worked for me, so far, I feel this is an Adobe issue, rather than a Firefox one, otherwise things would not be resolved. (having said that, Flash does seem more likely to crash on Firefox than Internet Explorer on MY system, however)
    Adobe offers several installation files on its download page and IMHO I feel it should offer an update version (for users who experience Flash crashes) that will AUTOMATICALLY download the Flash un-installer, run its, clean out the 4 folders (it says should be cleared) and then download the new Flash plug-in version and install it..
    Adobe clearly understands some/many users have crashing issues for some/many Firefox updates who need to follow their "clean" installation procedures (assuming f they know about them and are capable).
    Why does Adobe not offer "an all in one"un-install/ install ".exe" to do all these procedures automatically (easy for them and would make our lives easier (especially for non PC savvy users).
    Regards to all.

Maybe you are looking for

  • Data usage analysis page. Doesn't match current usage page?

    O.K. Here's what I'm going through. Verizon tells me I'm way over my 5.0 limit. Right now I am close to 9GB. So to check I click on usage, This is what I get. Data Allowance Exceeded. Additional data usage will be billed at $10 per 1.000 GB. Current

  • External Freecom drive not recognized

    Hi, I have a couple of new external Freecom 1.5 TB USB drives, and neither is recognized by my TC (running v7.4.2). They do not show up in the disks panel of the airport utility, only the internal drive does. Nothing in the log window either. They ar

  • How to export the data as integer into excel sheet?

    Hi All,      I am working on export to excel functionality and using JEXCEL API to create it.  When I export the data to excel sheet, the data are stored in text format in the excel sheet.  If I click on summation button on excel sheet,  it is not su

  • I cannot connect any Apple device to my business network.  iPhone or iPad

    Several employees and the owner of the company have iPhones and iPads but not one single person can connect any of them to my Wi-Fi network.  All Android devices and all laptops (we do not have any Macs) can connect just fine.  What are we doing wron

  • 3 days of stuttering music (thanks v12) and finally have v11 installed again

    recent auto-upgrade to v12.0.1.26 was a horrible failure leading to days of uninstalling/deleting in specific orders. Over and over and over. finally have v11.4.0.18 installed and operating properly in the end, is XP going to be left in the dust when