3

I have Ubuntu 12.04 32-bit with Unity. My system configuration is:

  • CPU: Core 2 Quad Q6600 (2.4 GHz)
  • RAM: 8192 Mb DDR2 Kingston
  • Video: Palit GeForce GTX 260 216 SP, and my screen resolution is 1680x1050.

I also have Window 7 Ulitimate installed, and I can see the same files in Media Player Classic without any horizontal lines.

I've installed vdpau driver, NVIDIA drivers 304.51, and MPlayer 2 (within SMPlayer). I've disabled "Sync to VBlank" option in CCSM (because in other way, by default, MPlayer process use about 50-60 percents of my processor load), tried to swich between different deinterlace options in SMPlayer, used "-vc ffh264vdpau,ffmpeg12vdpau" (without quotes) parameters for MPlayer, switched to "Ubuntu 2D", but, finally, have no results.

Any suggestions? How must I to set up MPlayer?

I also attach screenshots of my SMPlayer's options:

enter image description here

Full size

1 Answers1

2

One (drastic) change which can help is to disable Compositing completely via xorg.conf:

  1. Open the file /etc/X11/xorg.conf with an editor using sudo, for example by executing this command in a terminal: gksudo gedit /etc/X11/xorg.conf

    Note: If the file does not exist yet, you need to create it by following these instructions.

  2. Add these lines to the end of the file and save it:

    Section "Extensions"
        Option  "Composite" "Disable"
    EndSection
    
  3. Reboot (Alternative: Close all applications and force-restart the X Server itself by executing sudo service lightdm restart

Note that this procedure will make your desktop unable to display any kind of transparency or smooth desktop animations.

zerwas
  • 3,943