Tiny Core Linux

General TC => Programming & Scripting - Unofficial => Topic started by: jpeters on September 30, 2009, 01:05:49 AM

Title: skype install script
Post by: jpeters on September 30, 2009, 01:05:49 AM
This seems to work for getting skype_2.1.0.47 beta.  Makes a squash tcz extension, and puts it
in /tmp.  

uses bash.tcz

Code: [Select]
#!/bin/bash
# Installer of Skype.

set -e

NAME=skype
VERSION=2.1.0.47
DOWNLOAD=http://www.skype.com/go/getskype-linux-beta-static
SOURCE=skype_static-2.1.0.47.tar.bz2
MD5SUM=84cd16086d499b766a6ea9524271c0b9
TMPDIR=/tmp/skypedownload-2.1.0.47
PKG="$TMPDIR"/pkg
LIST="$TMPDIR"/"$NAME".list
SRCDIR=/tmp

download() {
cd "$SRCDIR"
if [ -e "$SOURCE" ]; then
  if [ $(md5sum "$SOURCE" | cut -c1-32) != "$MD5SUM" ]; then
    rm "$SOURCE"
  fi
fi
if [ ! -e "$SOURCE" ]; then
  wget "$DOWNLOAD"/"$SOURCE"
fi
if [ $(md5sum "$SOURCE" | cut -c1-32) = "$MD5SUM" ]; then
  echo "md5sum passed."
else
  echo "Download failed. aborting"
  exit 1;
fi
}


if [ -e "$TMPDIR" ]; then
 rm -r "$TMPDIR"
fi
mkdir -p "$TMPDIR"
if [ ! -e "$PKG"/usr/local/tce.menu ]; then
mkdir -p "$PKG"/usr/local/tce.menu
fi
download &&
tar xzvf "$SRCDIR"/"$SOURCE" -C "$PKG"/usr/local/
mv "$PKG"/usr/local/skype_static-2.1.0.47 "$PKG"/usr/local/skype
mkdir -p "$PKG"/usr/local/tce.menu
echo "<JWM>" > "$PKG"/usr/local/tce.menu/skype
echo "<Program label="\"Skype"\">/usr/local/skype/skype</Program>" >> "$PKG"/usr/local/tce.menu/skype
echo "</JWM>" >> "$PKG"/usr/local/tce.menu/skype
cd "$PKG"
sudo mksquashfs ./ /tmp/skype.tcz

rm -r "$TMPDIR" "$SRCDIR"/"$SOURCE"

echo "skype.tcz is now in your /tmp directory."

sleep 4


Title: Re: skype install script
Post by: alu on October 01, 2009, 03:57:03 AM
i must do dumb things, i can't get your script to be executed:

1. i copied the script in a file called skype.sh
2. i copied skype.sh to /usr/local/bin
3. made it executable (sudo chmod +x /usr/local/bin/skype.sh)
4. have the following permission on skype.sh: -rwxr-xr-x
5. sudo skype.sh gives me:

sudo: unable to execute /usr/local/bin/skype.sh: No such file or directory

what am i doing wrong? do i need an extension for tc to run the script?
Title: Re: skype install script
Post by: Juanito on October 01, 2009, 04:22:09 AM
Do you have the Xlibs_support and fontconfig extensions loaded?
Title: Re: skype install script
Post by: Jason W on October 01, 2009, 04:33:01 AM
Being a bash script you also need bash installed.
Title: Re: skype install script
Post by: alu on October 01, 2009, 05:36:19 AM
i have bash, Xlibs_support and fontconfig installed (running mc 2.3) as well as other common extensions (pango, expat2, atk, glib1, glib2, etc.)
Title: Re: skype install script
Post by: jpeters on October 01, 2009, 06:21:43 AM
are you using "./" ?    (eg, sudo ./skype.sh)
Title: Re: skype install script
Post by: alu on October 01, 2009, 07:57:40 AM
yep, also did that (cd to /usr/local/bin where the skype.sh script is, then: sudo ./skype.sh) with same result; don't know what i am missing
Title: Re: skype install script
Post by: jpeters on October 01, 2009, 09:17:08 AM
yep, also did that (cd to /usr/local/bin where the skype.sh script is, then: sudo ./skype.sh) with same result; don't know what i am missing

What happens if you copy script to your $HOME directory, "sudo chown tc:staff skype.sh" and run without sudo  eg "./skype.sh" while in $HOME.  Also, script will work with #!/bin/ash.  Make sure it copied/pasted correctly.  When I paste, often the first line doesn't make it, or there's a few characters missing.
Title: Re: skype install script
Post by: alu on October 01, 2009, 09:52:39 AM
i have copied skype.sh to home and changed owner to tc:staff with no result; the first line in the script is:

!/bin/bash

i think it should work since bash has been installed
Title: Re: skype install script
Post by: jpeters on October 01, 2009, 09:54:04 AM
i have copied skype.sh to home and changed owner to tc:staff with no result; the first line in the script is:

!/bin/bash

i think it should work since bash has been installed

should be "#!/bin/bash"    That would do it.   I have the same issue with pasting  :)      

I added a download link..
Title: Re: skype install script
Post by: jpeters on October 01, 2009, 12:00:18 PM
This script adds "/usr/local/bin/skype" script  (so it runs from terminal)

Code: [Select]
#!/bin/bash
# Installer of Skype.

set -e

NAME=skype
VERSION=2.1.0.47
DOWNLOAD=http://www.skype.com/go/getskype-linux-beta-static
SOURCE=skype_static-2.1.0.47.tar.bz2
MD5SUM=84cd16086d499b766a6ea9524271c0b9
TMPDIR=/tmp/skypedownload-2.1.0.47
PKG="$TMPDIR"/pkg
LIST="$TMPDIR"/"$NAME".list
SRCDIR=/tmp

download() {
cd "$SRCDIR"
if [ -e "$SOURCE" ]; then
  if [ $(md5sum "$SOURCE" | cut -c1-32) != "$MD5SUM" ]; then
    rm "$SOURCE"
  fi
fi
if [ ! -e "$SOURCE" ]; then
  wget "$DOWNLOAD"/"$SOURCE"
fi
if [ $(md5sum "$SOURCE" | cut -c1-32) = "$MD5SUM" ]; then
  echo "md5sum passed."
else
  echo "Download failed. aborting"
  exit 1;
fi
}


if [ -e "$TMPDIR" ]; then
 rm -r "$TMPDIR"
fi
mkdir -p "$TMPDIR"
if [ ! -e "$PKG"/usr/local/tce.menu ]; then
mkdir -p "$PKG"/usr/local/tce.menu
fi
download &&
tar xzvf "$SRCDIR"/"$SOURCE" -C "$PKG"/usr/local/
mv "$PKG"/usr/local/skype_static-2.1.0.47 "$PKG"/usr/local/skype
mkdir -p "$PKG"/usr/local/tce.menu
echo "<JWM>" > "$PKG"/usr/local/tce.menu/skype
echo "<Program label="\"Skype"\">/usr/local/skype/skype</Program>" >> "$PKG"/usr/local/tce.menu/skype
echo "</JWM>" >> "$PKG"/usr/local/tce.menu/skype

cd "$PKG"
######## Add Script

SCRIPT="usr/local/bin/skype"
sudo mkdir "usr/local/bin"
sudo echo "#!/bin/sh" >>"$SCRIPT"
sudo echo "/usr/local/skype/skype" >>"$SCRIPT"
sudo echo  "exit 0" >>"$SCRIPT"
sudo chmod +x "$SCRIPT"

####################
sudo mksquashfs ./ /tmp/skype.tcz

rm -r "$TMPDIR" "$SRCDIR"/"$SOURCE"

echo "skype.tcz is now in your /tmp directory."

sleep 4


Title: Re: skype install script
Post by: alu on October 01, 2009, 11:24:10 PM
thanks a lot for your new script, i can make it executable, everything works fine
Title: Re: skype install script
Post by: jpeters on October 02, 2009, 12:10:58 AM
thanks a lot for your new script, i can make it executable, everything works fine

I see you even cut/pasted it  :D
Title: Re: skype install script
Post by: jpeters on October 20, 2009, 11:46:55 PM
necessary skype_support libs  (included in Xlibs_support).  

usr/local/lib/libXss.so
usr/local/lib/libXss.so.1
usr/local/lib/libXss.so.1.0.0
usr/local/lib/libXv.so
usr/local/lib/libXv.so.1
usr/local/lib/libXv.so.1.0.0


If running OSS, needs libasound.tczl
edit: Present version might require alsa

Title: Re: skype install script
Post by: jpeters on November 17, 2009, 07:14:18 PM
Updated script.  Downloads &  builds skype.tcz in /tmp.  Run skype from  menu or terminal.      

Code: [Select]
#!/bin/bash
# Installer of Skype.

set -e

NAME=skype
VERSION=2.1.0.47
DOWNLOAD=http://www.skype.com/go/getskype-linux-beta-static
SOURCE=skype_static-2.1.0.47.tar.bz2
MD5SUM=84cd16086d499b766a6ea9524271c0b9
TMPDIR=/tmp/skypedownload-2.1.0.47
PKG="$TMPDIR"/pkg
LIST="$TMPDIR"/"$NAME".list
SRCDIR=/tmp

download() {
cd "$SRCDIR"
if [ -e "$SOURCE" ]; then
  if [ $(md5sum "$SOURCE" | cut -c1-32) != "$MD5SUM" ]; then
    rm "$SOURCE"
  fi
fi
if [ ! -e "$SOURCE" ]; then
  wget "$DOWNLOAD"/"$SOURCE"
fi
if [ $(md5sum "$SOURCE" | cut -c1-32) = "$MD5SUM" ]; then
  echo "md5sum passed."
else
  echo "Download failed. aborting"
  exit 1;
fi
}

if [ -e "$TMPDIR" ]; then
 rm -r "$TMPDIR"
fi
mkdir -p "$TMPDIR"
if [ ! -e "$PKG"/usr/local/tce.menu ]; then
mkdir -p "$PKG"/usr/local/tce.menu
fi
download &&
tar xjvf "$SRCDIR"/"$SOURCE" -C "$PKG"/usr/local/
mv "$PKG"/usr/local/skype_static-2.1.0.47 "$PKG"/usr/local/skype
mkdir -p "$PKG"/usr/local/tce.menu
echo "<JWM>" > "$PKG"/usr/local/tce.menu/skype
echo "<Program label="\"Skype"\">/usr/local/skype/skype</Program>" >> "$PKG"/usr/local/tce.menu/skype
echo "</JWM>" >> "$PKG"/usr/local/tce.menu/skype

cd "$PKG"
######## Add Script
mkdir   usr/local/bin
sudo chmod 775 usr/local/bin
cat <<EOF> usr/local/bin/skype
#!/bin/sh
/usr/local/skype/skype
exit 0
EOF

sudo chmod +x usr/local/bin/skype


sudo chown -R root:staff ./
sudo chmod 775 usr/local/tce.*  

####################
sudo mksquashfs ./ /tmp/skype.tcz

sudo rm -r "$TMPDIR" "$SRCDIR"/"$SOURCE"

echo "skype.tcz is now in your /tmp directory."

sleep 4


Title: Re: skype install script
Post by: jur on November 27, 2009, 01:20:37 AM
I get this message:
Code: [Select]
tc@box:~$ skype
/usr/local/skype/skype: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
I have Xlibs_support and a lot of other deps... am running OSS...  ???
Title: Re: skype install script
Post by: jpeters on November 27, 2009, 01:43:54 AM
yes...requires libasound.tczl   
Title: Re: skype install script
Post by: jur on November 27, 2009, 02:13:15 AM
Thanks very much for this!

Submit skype to the repo? Or is it better at this stage to rebuild it self?
Title: Re: skype install script
Post by: jur on November 27, 2009, 02:27:46 AM
I am not getting sound... but OSS sound works on my netbook. Does Skype require alsa sound or can it be configured?
Title: Re: skype install script
Post by: jpeters on November 27, 2009, 02:47:34 AM
I know the windows and old static versions were running with OSS, but not sure with the present version (I'm running alsa).  Leaving as a script has some advantages for quick updating, although it's true that some associate "terminal" with the disease model.    
Title: Re: skype install script
Post by: Tarkus on January 19, 2011, 03:04:16 AM
Hey! I know this is not a new thread, but I think it's the right place to post my problem... I tried to use the script but Skype does not get installed... I had to change the old version number of the Skype package in the script for the new one. Also, I commented the M5D lines as it always prompts the "Download failed. aborting" message (with the old and the new versions). The issue is that the installation stops after the following line:

Code: [Select]
skype_static-2.1.0.81/LICENSE
I attached the modified script and a files search that I performed.

Any suggestion is welcomed :)

[deleted duplicate attachments]
Title: Re: skype install script
Post by: Tarkus on January 23, 2011, 08:32:23 PM
Hey! I've updated the install script (including the checksum :P):

Code: [Select]
#!/bin/bash
# Installer of Skype.

set -e

NAME=skype
VERSION=2.1.0.81
DOWNLOAD=http://www.skype.com/go/getskype-linux-beta-static
SOURCE=skype_static-2.1.0.81.tar.bz2
MD5SUM=137a4a749c8fb3b76c3410514c7e2053
TMPDIR=/tmp/skypedownload-2.1.0.81
PKG="$TMPDIR"/pkg
LIST="$TMPDIR"/"$NAME".list
SRCDIR=/tmp

download() {
cd "$SRCDIR"
if [ -e "$SOURCE" ]; then
if [ $(md5sum "$SOURCE" | cut -c1-32) != "$MD5SUM" ]; then
rm "$SOURCE"
fi
fi
if [ ! -e "$SOURCE" ]; then
wget "$DOWNLOAD"/"$SOURCE"
fi
if [ $(md5sum "$SOURCE" | cut -c1-32) = "$MD5SUM" ]; then
echo "md5sum passed."
else
echo "Download failed. aborting"
exit 1;
fi
}

if [ -e "$TMPDIR" ]; then
rm -r "$TMPDIR"
fi
mkdir -p "$TMPDIR"
if [ ! -e "$PKG"/usr/local/tce.menu ]; then
mkdir -p "$PKG"/usr/local/tce.menu
fi
download &&
tar xjvf "$SRCDIR"/"$SOURCE" -C "$PKG"/usr/local/
mv "$PKG"/usr/local/skype_static-2.1.0.81 "$PKG"/usr/local/skype
mkdir -p "$PKG"/usr/local/tce.menu
echo "<JWM>" > "$PKG"/usr/local/tce.menu/skype
echo "<Program label="\"Skype"\">/usr/local/skype/skype</Program>" >> "$PKG"/usr/local/tce.menu/skype
echo "</JWM>" >> "$PKG"/usr/local/tce.menu/skype

cd "$PKG"
######## Add Script
mkdir   usr/local/bin
sudo chmod 775 usr/local/bin
cat <<EOF> usr/local/bin/skype
#!/bin/sh
/usr/local/skype/skype
exit 0
EOF

sudo chmod +x usr/local/bin/skype


sudo chown -R root:staff ./
sudo chmod 775 usr/local/tce.* 

####################
sudo mksquashfs ./ /tmp/skype.tcz

sudo rm -r "$TMPDIR" "$SRCDIR"/"$SOURCE"

echo "skype.tcz is now in your /tmp directory."

sleep 4

For newbies as me --> save the script (attached to the post) into the home directory, then run the following commands in the terminal:

Code: [Select]
cd ~
sh skype.sh

Finally, go to AppBrowser and click the Local entry, enter /tmp/skype.tcz in the Filename box and click the OK button.

In order to launch it, enter skype in the terminal.
Title: Re: skype install script
Post by: Lee on January 24, 2011, 03:12:49 AM
I tried the above script and he extension gets built and it loads OK, but when I try to make the test call to skype I get an error message indicating a problem with audio playback.

I'm on micro core 3.4.1 with core elements, jwm-snapshot and wbar.  I have qt-4.x-base.tcz, dbus.tcz, libasound.tcz and pulseaudio,tcz loaded.

Using OSS sound. And my headphones & microphone really do work.

Has anyone run into a similar problem?
Title: Re: skype install script
Post by: nick65go on January 24, 2011, 12:49:27 PM
Lee, I am using TC 3.4.1

you could read here:
http://www.opensound.com/wiki/index.php/Configuring_Applications_for_OSSv4#Skype
Skype versions from 1.4 to 2.0 support OSS using a separate OSS-enabled binary. The regular binary will not work!

or my post here
http://forum.tinycorelinux.net/index.php?topic=7006.msg37306#msg37306
Warning! delete alsa-module from v4l-dvb-2.6.33.3-tinycore.tcz.DEP first, it is not need
from command: cat /mnt/sda4/tceUSB/optional/skypeOSS.tcz.DEP manually created
OSS.tcz
v4l-dvb-2.6.33.3-tinycore.tcz
libasound.tcz
Xorg-7.5-lib.tcz
fontconfig.tcz

I think the modules  alsa-module or pulseaudio prevent OSS to do its job;
If you wish skype + OSS sound, then try my solution first ;)
Start TC with bootcodes base norestore, to be sure you pinpoint the offending modules, Good luck!
Title: Re: skype install script
Post by: grandma on May 01, 2011, 03:49:51 PM
Thank you tarkus for the script  - hugs from grandma(assuming your script works that is)...

...oops spoke too soon.

YES it downloaded - had to go hunt it down in /tmp and found it there - have moved a backup copy to hard drive

YES it made the folders - under /tmp

Nothing in the folders - just a string of empty sub folders

Any ideas or suggestions?

Installing Skype was (still is) one of the key missing links in my "TC is an office" migrations and I believe warrants a huge step-by-step multi-language tutorial and reliable script, since everyone I deal with in business around the world uses Skype - almost without fail. I would not try to develop a TCZ though - have found Skype buggy and warning - DO NOT give your credit card to them. Their database got hacked and I got whacked for charges - took me 4 months to straighten that out with Skype and my bank. Got an apology from the Skype Prez, but suggest you use a "throw away" credit card if you use Skype and pay for services - the hackers even hit my bank account after my bank and Skype were on to them - heads up.
Title: Re: skype install script
Post by: floppy on May 02, 2011, 11:57:19 AM
So far I remember, I used this script.
And I could not find where it was (not at boot if I remember).
Then I had to go to the appsaudit, the skype.tcz was in "local".
Then I installed it  with the option download.
And it was there for command line install.
I did not try to reproduce it.. just remembering.
Title: Re: skype install script
Post by: jur on May 02, 2011, 03:45:56 PM
I used it not so long ago... would have to go through it to see what was wrong... I think there was a problem with the web link - the newest version is at a different address. I replaced the one in the script with the correct one and it worked after that.
Title: Re: skype install script
Post by: stevesr0 on May 25, 2011, 11:10:14 AM
The script doesn't work for me.  I get "bus error".  Is this because I am running TCL (3.71rc1) as a live CD?

The errors seem to involve reading data or pages and reference the squash FS.  Or perhaps bad memory?

UPDATE: When I ran the command using sh first, I don't get the "bus error".  When I run the command without sh (or with bash before the command), I do.  The dmesg log looks the same in any event.

I haven't been able to capture most of the error that appears on the screen when I use "sh".  This indicates that the url for the download of the static skype app is incorrect, and thus the download fails.

I downloaded the app manually to the computer, so I can modify the script to the program location on the computer. 

But, for those using this script, the address listed doesn't get you to it without further modification.

Steve
Title: Re: skype install script
Post by: stevesr0 on May 25, 2011, 01:47:59 PM
After I wrote my earlier reply, I saw the thread which described success by downloading the static app (tar.bz2) and untarring it to launch skype.

I just tried that with the 2.2.0.25 beta and it seems to work.

Steve
Title: Re: skype install script
Post by: grandma on June 07, 2011, 01:35:33 PM
OK - so far my skype has been rather robust for over a month - used daily - no problems.

I also have Firefox and Flash running - and use ALSA modules.

Most of the problems I had were related to alsa - I had to write a script to automatically get the volume up (tired of poking around in there on each boot) - and I can actually hear my speakers POP to 80% when that runs. Basically the script loops through all alsa settings and if its boolean - goes to true - and if its an integer - reads the types of levels required and bumps them to 80% - you can always run alsagui after that to bring em down manually.

One of the things I added to that script was BEFORE bumping up volumes was related to the tce-unload.sh script I found here - I unload

flash
firefox
skype
all alsa mods

then I do everything in order

alsa stuff first
then flash
then firefox
then skype

It may work in a different sequence, but this seems to work well.

If you need copies of the various scripts - let me know - PM etc. and I will post them here. Since I USED to write shells scripts - and didn't for almost 15 years - my knitting may or may not suit your taste - but they work - darn near every time - and I always get mic and speakers and flash videos - all that - in firefox.

One warning: both in Windows and I find in TC - when you run skype all day things start to slow down - or get corrupt - or dysfunctional - not sure why but it seems to be a common issue with skype.

Second warning: December 2010 some Euro hackers hit my credit card and began making skype purchases. The folks at skype and my bank traced it back to Skype users - and the cc# was in the skype database. Even after dealing with that 9 hours of calls - and revoking/killing that card the same group hit my account again a month later - that was another nightmare of banking - I love skype, but the apology letter from the skype president and $30 voucher really didn't convince me to give them another credit card number and I suggest you don't either.

Heads up.
Title: Re: skype install script
Post by: cURIOUSgEORGE on October 28, 2011, 08:26:21 AM
I downloaded the skype install script and follow the directions by running cd ~ and sh skype.sh but I still get download failed aborting even after the download completes. So I changed the version in the script to the newest one skype_static-2.2.0.35.tar.bz but I can't figure out how to find the new md5sum from the website. And also is there anything else that I need to change in the script to get it working. Details pleaseeeeeee!

Thanks George, ;)
Title: Re: skype install script
Post by: floppy on October 28, 2011, 09:27:36 AM
I loaded skype statis according this advice  http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786 (http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786)
no md5 was required.
there was an issue with my pc (but nearly 100% sure not with skype).
So, have a look into the links given there?
Title: Re: skype install script
Post by: cURIOUSgEORGE on October 28, 2011, 04:45:44 PM
Thanks floppy but I believe I am all set now. I just simply downloaded the newest tar.bz2 and untard it. It seems good so far BUT I never made it into an extension. I did  NOT even use the script. I'm not sure if that matters. It actually seemed a little to easy. ???
Title: Re: skype install script
Post by: floppy on October 29, 2011, 12:18:01 PM
Thanks floppy but I believe I am all set now. I just simply downloaded the newest tar.bz2 and untard it. It seems good so far BUT I never made it into an extension. I did  NOT even use the script. I'm not sure if that matters. It actually seemed a little to easy. ???
you dont need an extension for this static. If you need it, I could search again how I started this static program (this is not on the pc I am currently in this forum)
Title: Re: skype install script
Post by: AbNoRMiS on November 25, 2011, 02:19:32 AM
Modified install script for make static Skype 2.0.0.72 wich work with OSS
Script gets Skype by link from here http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786 (http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786)
Work was tested under TCL 4.1
Title: Re: skype install script
Post by: jls on November 25, 2011, 04:55:09 AM
Modified install script for make static Skype 2.0.0.72 wich work with OSS
Script gets Skype by link from here http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786 (http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786)
Work was tested under TCL 4.x
why #!/bin/bash and not #!/bin/sh ?
Title: Re: skype install script
Post by: AbNoRMiS on November 25, 2011, 06:46:36 AM
why #!/bin/bash and not #!/bin/sh ?

bash has remained from the original script, but it still works ::)
Title: Re: skype install script
Post by: floppy on January 05, 2012, 08:00:11 AM
Modified install script for make static Skype 2.0.0.72 wich work with OSS
Script gets Skype by link from here http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786 (http://forum.tinycorelinux.net/index.php/topic,10034.msg54786.html#msg54786)
Work was tested under TCL 4.1
Thanks. Could you make an update for 4.2? (issue tce_dir since move from 4.1 to 4.2)
Title: Re: skype install script
Post by: AbNoRMiS on January 06, 2012, 06:24:47 PM
of course :)
now script works for tcl 4.2

merry christmas! :)
Title: Re: skype install script
Post by: floppy on January 07, 2012, 12:20:37 AM
A Big Thank you.
Title: Re: skype install script
Post by: paxrex33 on January 17, 2012, 02:05:34 AM
Thank you AbNoRMiS...
Script is working very well!!!
Title: Re: skype install script
Post by: floppy on January 30, 2012, 10:47:49 AM
of course :)
now script works for tcl 4.2

merry christmas! :)
thanks for it. I can receive video and sound. But I have still issues in sending my picture.
But, could we have the version for the latest skype (no OSS). This oss-version dont have a screen capture function of my wxcam picture (or at least.. I did not find it..)
Title: Re: skype install script
Post by: AbNoRMiS on February 03, 2012, 01:05:37 AM
if i understand correctly, then wxcam shows,
but skype doesn't send a picture
really, for me skype gives an errors in console
Code: [Select]
tc@box:~$ skype
Skype V4L2: Could not find a suitable capture format
Skype V4L2: Could not find a suitable capture format
Starting the process...
Skype Xv: Xv ports available: 33
Skype XShm: XShm support enabled
Skype Xv: Using Xv port 63
Skype Xv: No suitable overlay format found

maybe should try to run skype, as recommended in this case
Code: [Select]
LD_PRELOAD=/usr/local/lib/libv4l/v4l1compat.so /usr/local/bin/skypeor
Code: [Select]
LD_PRELOAD=/usr/local/lib/libv4l/v4l2convert.so /usr/local/bin/skype
this must be tested, because unfortunately i'm can't test this now
now test picture is not visible for me, but possible that video is sent