Mostrando entradas con la etiqueta skype. Mostrar todas las entradas
Mostrando entradas con la etiqueta skype. Mostrar todas las entradas

sábado, 17 de mayo de 2014

Fix for noise on Skype for Ubuntu 14.04

Instead of running simply skype, run this:

env PULSE_LATENCY_MSEC=30 skype

Source: Get The Sound Working In Skype With Ubuntu 13.10

Together with the fix for the camera, the thing to run is:

export LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so && env PULSE_LATENCY_MSEC=30 skype

Which sucks.

A bit better is to have this in a script on the desktop that you can simply double click. So write the following in it.

#!/bin/bash
export LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so && env PULSE_LATENCY_MSEC=30 skype

And give it run permissions by doing right-click on the file > "Properties" > "Permissions" > and check "Execution permission".

I hate Skype.

sábado, 9 de noviembre de 2013

Fix for flipped (rotated 180º) webcam on Skype for Ubuntu

sudo apt-get install libv4l-0

sudo gedit /usr/share/applications/skype.desktop

Replace "Exec=skype" with the following.

Exec=bash -c 'LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so skype'

Source: How To Fix Webcam Problem In Skype.

Tested on Ubuntu 12.04