32.0.2 won't display WebM/MP4 video even when playing audio

I just downloaded/installed Firefox today to test web design for a class. This is not an upgrade but a clean install of 32.0.2. I'm running Win7 32-bit (6.1SP1)
I can not see any video in Firefox, though the files' audio routinely plays just fine. I have tested with files generated by me, and test files from the following sites:
http://camendesign.com/code/video_for_everybody/test.html
http://www.htmlandcssbook.com/code-samples/chapter-09/example.html
The player controls come up, a grey box for the video player area comes up with a play button in it, but when I push play, there is just blank/white space, and the audio. I have tested both with the VLC plugin (2.1.3.0) and without - it makes no difference. All videos play just fine for me using IE and Chrome.
Any suggestions on why I'm the only person I know who can't view these videos in FF?

You have a very old video card with very old drivers. It's so old in fact, that looks like Nvidia doesn't even have drivers available that are certified for your operating system.
* http://www.nvidia.com/Download/Find.aspx?lang=en-us
Graphics failures are listed in your system details, so this would be the first thing to try:
# Click the ≡ Menu Button and choose Options.
# Click the Advanced icon.
# Click the General tab.
# Uncheck "Use hardware acceleration when available".
# Restart Firefox.
If that doesn't help, try this:
# Click the ≡ Menu Button and choose Add-ons.
# Click Plugins.
# Set every plug-in to "Never Activate".
# Click Extensions.
# Click the Disable button next to every extension.
# Restart Firefox.
* [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

Similar Messages

  • My iPhone 5 won't send texts without wifi, even when I have 4G. It also won't make calls. Any ideas?

    My iPhone 5 won't send texts without wifi, even when I have 4G. It also won't make calls. Any ideas?

    Do you have a cellular plan with data and SMS activated?

  • With the latest upgrade to iPhoto, Keywords no longer display under the photo, even when Display Keywords is turned on. Does anyone know why?

    With the latest upgrade to iPhoto, Keywords no longer display under the photo, even when Display Keywords is turned on. Does anyone know why?

    Keywords have been moved into the Info tray at the right.  Don't know why it was changed.  You can send a request to change it back to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How can I keep the quality of an MP4 video high when I export an interactive PDF from InDesign?

    I am making an Interactive PDF with embedded MP4 video using InDesign.  When I view the video in the PDF it has degraded the quality and the colour contrast is poorly affected.  I can have the video as a floating window but this gives a harsh black line around the video when it plays which is not acceptable.
    Can anyone advise how to maintain the quality of the original video when it is embedded?

    You can control the quality of the video (aspect ratio, pixel dimensions, frames/minute, etc.) by using the Adobe Media Encoder which comes with InDesign CS5 or later installations, including InDesign CC. InDesign only includes what you have placed and passes it on to the PDF file. There are no video quality controls in InDesign.
    You cannot change the way Adobe Acrobat or Adobe Reader displays the MP4. If you don't like the way Acrobat/Reader handles display of a floating window, then you'll have to display it within the page. For more info, inquire in the Rich Media Acrobat forum.

  • MP4 videos refuse to play.

    I have updated my plugins and extensions multiple times to no avail. I have accelerate hardware unchecked. I just cannot get MP4 videos to play, regardless the site.

    Is a Flash player used on the HTML5 media player if you check that via the right-click context menu?
    You can check the media prefs on the <b>about:config</b> page to see if the HTML5 media player is enabled.
    *media.windows-media-foundation.enabled
    *media.directshow.enabled
    Are there any errors in the Web Console (Firefox/Tools > Web Developer)?
    *https://developer.mozilla.org/Tools/Web_Console

  • My program always displays the same image, even when I change th image file

    I'm making a program that chooses an image file from a dialog, resize it and copy it into a folder. When the image is needed to be displayed, the image file is read and a JLabel displays it on screen.
    When I upload the first image, everything works fine. The problem appears when I upload another picture: the displayed image is still the first image, even when the old file doesn't exist anymore (because it has been overwritten). It looks like the image has been "cached", and no more image are loaded after the first one.
    This function takes the image picture chosen by the user, resizes it, and copy it into the pictures folder:
        private void changeProfilePicture() {
            JFileChooser jFileChooser = new JFileChooser();
            jFileChooser.setMultiSelectionEnabled(false);
            jFileChooser.setFileFilter(new ImageFileFilter());
            int result = jFileChooser.showOpenDialog(sdbFrame);
            if (JFileChooser.APPROVE_OPTION == result) {
                try {
                    //upload picture
                    File file = jFileChooser.getSelectedFile();
                    InputStream is = new BufferedInputStream(new FileInputStream(file));
                    //resize image and save
                    BufferedImage image = ImageIO.read(is);
                    BufferedImage resizedImage = resizeImage(image, 96, 96);
                    String newFileName = sdbDisplayPanel.getId() + ".png";
                    String picFolderLocation = db.getDatabaseLocation() + "/" +
                            PROFILE_PICTURE_FOLDER;
                    java.io.File dbPicFolder = new File(picFolderLocation);
                    if(!dbPicFolder.exists())  {
                        dbPicFolder.mkdir();
                    String newFilePath = picFolderLocation + "/" + newFileName;
                    File newFile = new File(newFilePath);
                    FileOutputStream fos = new FileOutputStream (newFilePath);
                    DataOutputStream dos = new DataOutputStream (fos);
                    ImageIO.write(resizedImage, "png", dos);
                    dos.close();
                    fos.close();
                    //set picture
                    sdbDisplayPanel.setImagePath(newFilePath);
                } catch (IOException ex) {
                    System.err.println("Could'nt print picture");
                }This other class actually displays the image file in a JLabel:
        public void setImagePath(String imagePath) {
            count++;
            speaker.setImagePath(imagePath);
            this.imagePath = imagePath;
            if(imagePath != null)   {
                //use uploaded picture
                try {
                    File tempFile = new File(imagePath);
                    System.out.println(tempFile.length());
                    java.net.URL imgURL = tempFile.toURI().toURL();
                    ImageIcon icon = new ImageIcon(imgURL);
                    pictureLbl.setIcon(icon);
                    // Read from a file
                } catch (IOException ex) {
                    Logger.getLogger(SDBEventClass.class.getName()).log(Level.SEVERE, null, ex);
            else    {
                //use default picture
                URL imgURL = this.getClass().getResource("/edu/usal/dia/adilo/images/noProfile.jpg");
                ImageIcon icon = new ImageIcon(imgURL, "Profile picture");
                pictureLbl.setIcon(icon);
        }

    When you flush() the image, you don't need to construct a new ImageIcon each time, a simple repaint() will suffice.
    Run this example after changing the URL to an image you can edit and update while the program is running.import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.*;
    public class FlushImage {
       Image image;
       JLabel label;
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new FlushImage().makeUI();
       public void makeUI() {
          try {
             ImageIcon icon = new ImageIcon(new URL("file:///e:/java/dot.png"));
             image = icon.getImage();
             label = new JLabel(icon);
             JButton button = new JButton("Click");
             button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                   image.flush();
                   label.repaint();
             JFrame frame = new JFrame("");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.add(label, BorderLayout.NORTH);
             frame.add(button, BorderLayout.SOUTH);
             frame.pack();
             frame.setLocationRelativeTo(null);
             frame.setVisible(true);
          } catch (MalformedURLException ex) {
             ex.printStackTrace();
    }db

  • How do I get audio from mp4 video to stop playing on other slides? URGENT

    I have imported an mp4 video into my Captivate file, and it plays well. But when I get to slides after that one, the audio from the video file repeats on several other slides. How do I get this ugly behavior to stop?
    I don't want to unsync the audio and video because it could get out of sync on playback.
    Please advise ASAP. I am supposed to be handing this in tomorrow and have spent countless hours doing workarounds on this project already...
    Thank you very much for any help you can give me.
    Ellen

    Hello Ellen,
    What is your Captivate version and what option did you choose to insert the video?
    If it is Captivate 6, Can you use the Multi Slide Synchonize video. If it is a Previous version, can you select the Video and from properties choose to synchronize with project?
    Does the audio play on other slides when you jump from an incomplete video to other slides or when you view the complete video and then move to rest of the slides.
    Thanks,
    Anjaneai

  • Uploaded mp4 video is not played by swf-player

    Guys,
    can you help me please?
    I've uploaded a video produced by Camtasia, but it's not played at all!
    Have a look:
    http://bigcompanyjob.com/guide02-2-4/guide02-2-4.html
    You see that the video is being downloaded, but not played.
    The player is ARPlayer 1.7. The video is a mp4 file.
    The file is perfectly played on a local computer, but after uploading to ftp stops being played. I don't why...
    Could you help me please?
    Thanks!!
    Vadim
    P.S. It's interesting that if I make simply an swf-video file, it's played good: http://bigcompanyjob.com/guide02-2-3/guide02-2-3.html . But I don't like this option, because the swf-video is 30MB vs 5MB of the mp4-video.

    Yeah, this is because I have already solved the problem:)
    It turned out it's a hosting problem. I put .htaccess file, containing only one line:
    AddType "video/mp4" .mp4
    in the folder with video. And it works! Now everything plays good!

  • My flat screen won't connect to the internet, even when I use the cord from my working iMac.

    I have an old dome base flat screen running Tiger and a newer intel iMac running Snow Leopard. My newer model connects to the internet just fine and my old one did too, until recently. Both work off the same Comcast modem and one will connect and the old one won't, even when I take the cord from the new one and plug it into the old. I didn't make any changes to it so I don't know what the problem is. Any suggestions?

    I think what happened is I had Hide My *** Proxy running and for some reason it won't let me get on line with it running, although it used to so I don't know what the deal with that is. On my other computer I can get on line with it running. Anyway, after I quit HMA I could get on line. Thanks for your reply. By the way, my other computer is not connected to a hub, but to the Comcast modem/wireless device that my other computer is connected to.

  • Pages won't display only in Firefox, even in safe mode (I can see requests and replies coming back but it seems like the page rendering cancels).

    I have tried safe mode, all the options outlined here: https://support.mozilla.org/en-US/kb/firefox-cant-load-websites-other-browsers-can
    This doesn't seem to be related to any particular site. When I try to access a web server running locally on my machine, I can see that the request is sent and the server responds as well. But the page will not render.
    What I'm trying to do:
    1. Open firefox, navigate somewhere (works)
    2. Browse around
    3. Seemingly at random, when clicking a link, it will stay in the state a:active and the new address will be displayed in the address bar, but page content will not be rendered (link still active, as I was holding the mouse button on it)
    One site that it happens with, is http://fortumo.com
    happens in safe mode, with or without addons and doesn't seem to be affected by the theme either.

    Anything unusual if you check the Net log or the Network tab in the Web Console (Firefox/Tools > Web Developer;Ctrl+Shift+K)?
    *https://developer.mozilla.org/Tools/Web_Console
    Note that you need to reload the page (F5 or Ctrl+F5) to create/update the log.

  • Help! Screen won't display title, artist etc only Now Playing.

    Hope you can help. I've only had my nano for a few days and it was great to start with, but when I'm playing music the screen will only display Now Playing and the album cover and the centre button does not do anything at all. Any suggestions?

    Try re-setting it first:
    1) Toggle the Hold switch on and off. (Slide it to Hold, then turn it off again.)
    2) Press and hold the Menu and Select buttons until the Apple logo appears, about 6 to 10 seconds. You may need to repeat this step.
    There's a fuller explanation of resetting here: http://docs.info.apple.com/article.html?artnum=61705
    If that doesn't work you may have to restore your iPod to factory settings. That will erase what is currently on it and return it to how it was when you first got it which should clear whatever is going on: http://docs.info.apple.com/article.html?artnum=60983

  • Safari won't display You tube videos

    I've upgraded to the latest version of Flash but still no joy - the loading wheel keeps spinning.  One thing I haven't been able to check is the default app for streaimg video.  Where I would do thst?
    Thanks
    David

    Hi,
    Your profile shows you are running 10.4.8. If that's the case, you need to update to v10.4.11.
    You can use Software Update from your Apple menu or the v10.4.11 combo (Intel) update  here.
    When you visit sites that require Flash, Safari auto detects that.
    You can try troubleshooting the Flash plugin which is required for a large percentage of YouTube content.
    Uninstall then reinstall then restart your Mac. Instructions  here.,
    Carolyn

  • Time capsule won't recognise external hard drive, even when formatted correctly and connected to a powered USB hub

    Hey
    i have an apple time capsule (not the very latest one, but the one before that) and i am trying to connect my 1.5TB toshiba hard drive to it. i understand that it needs to be powered, so i purchased a usb hub ("usb hub man" by Gadget Geek) and bought an adapter to power it.
    The hard drive won't show up in finder or disk utility, however i can see it in airport utility.
    it is formatted correctly - Mac OS Extended (Journaled, Encrypted) and works perfectly fine from my macbook pro usb port.
    Also, when i connect a smaller hard drive to the hub (16GB) that shows up in finder as normal.
    so it seems that everything is perfectly fine, however this 1.5TB hard drive just wont show up in finder.
    Does anyone have any suggestions as to why this is the case? my guesses are that i need to get a better quality usb hub, or that i might have to get a powered hard drive altogether rather than trying to power it with the hub.
    Thanks

    The hard drive won't show up in finder or disk utility, however i can see it in airport utility.
    You would not expect it to show up in disk utility .. it does not work on network drives.
    Finder may or may not be able to see it.
    If the airport utility is showing the drive you have some possibility.
    Did you GUID partition the drive .. or is it still MBR.. ie if it was originally formatted for PC it will be MBR and won't work.. so put it on the Mac again and change the GUID partition.. I would also set a smaller partition size.. the internal drive of the TC is partitioned though you cannot see them.. put a first partition less than 1TB and see how it goes.
    In finder.. don't forget ML has issues with network drive.. make sure you tick all the extras in finder preferences.. and if the drive won't mount try to do it manually.. go .. connect to server.
    AFP://TCname or TCIPaddress.. where you use the actual name or IP.
    Also is the power supply for the hub at least 2A preferably more.. so the hub is powered but the disk is not powered??

  • My new Nano won't show all the album artwork when playing

    When i'm listening to music on the nano, some album artworks will show and others won't. All my songs on iTunes have artwork so i don't understand why they won't show up on the iPod.
    This isn't a drastc problem, just really gay.
    If anyone knows how to fix the problem please let me know! Thanks!

    Hi csimiamifreak1,
    Is your iPod appearing in "My Computer" or not?
    If it isn't, then see this:
    iPod missing in "My Computer" or in iTunes for Windows
    If your iPod is showing up in "My Computer" as a device, but not in iTunes, then you may want to check out the suggestions in these articles:
    iPod is recognized by Windows but not iTunes
    iTunes 7 doesn't recognize iPod
    -Kylene

  • ITunes displaying artwork from previous song when playing list.

    Since updating to iTunes 10.5.1 yesterday, when streaming a playlist to the AppleTV, it is displaying the artwork from the previous song as it goes through the songs. Ideas?

    I'm having the same issue. First song played shows the correct artwork, but then it lags one behind each successive song. I've tried restoring the Apple TV, but that didn't help.

Maybe you are looking for

  • Please Help! Hard drive problem "Mystery Gb Space"

    I recently ripped a lot of CD's into itunes, so much that I filled up my hard drive. I cleaned up my music by deleting music I didn't need. I also burned a majority of music to CD so that I could delete it off my hard drive. I have a 80gb hard dive;

  • Macbook Pro to HDTV audio cable

    I'm currently trying to run my Macbook Pro display through a Vizio E370VL LCD HDTV, and while I do get full picture, there is no audio present. I have a Moshi Mini DP to HDMI Adapter I use that supports audio, but after doing some research I came to

  • HI performance issue.. getting time out error

    hi all. in below code..commented is my original one n i changed it to up to 1 rows. so is it rite this coding..? TABLES: DD03L. DATA: BEGIN OF WDD03M,           FIELDNAME LIKE DD03M-FIELDNAME,           TABNAME LIKE DD03M-TABNAME,           CHECKTABL

  • Old method of cloning a domain broken in 10.3.0?

    Up through 9.x, I "cloned" domains by copying the admin server's domain directory tree to the new machine, changing the directory paths, manually editing scripts and config.xml, etc. to reflect the new domain name, IP/ports, machine names, etc. Norma

  • Using Illustrator variables with n-up documents

    I have some Avery labels that use an Illustrator template. It's 6-up (six label per sheet). I want to put some variable text on them and use a spreadsheet so I don't have to manually enter 400 names one at a time on the labels. Is that possible with