http://www.youtube.com/user/SMCslevelengine
Post whatever possible suggestions that are safe and free out there.

Levelengine

BowserJr wrote:What are you using? I used to use and recommend glc on Linux, which was designed for capturing GL applications, and worked great with SMC, but hasn't been updated for a while and doesn't seem to even have a website anymore. You can still get the code from GIT: https://github.com/nullkey/glc/wiki, or it might be in your package manager. Unfortunately nothing else for linux works anywhere near as well. You can also try the obvious things such as reducing resolution
levelengine wrote:With this new channel (link below) and me making videos, I really need to reduce lag while I record SMC footage.
http://www.youtube.com/user/SMCslevelengine
Post whatever possible suggestions that are safe and free out there.![]()
Levelengine
sudo apt-get install build-essential cmake libx11-dev libxxf86vm-dev libgl1-mesa-dev libasound2-dev libpng12-dev
sudo apt-get install gcc-multilib
sudo ln -s /usr/lib32/libGL.so.1 /usr/lib32/libGL.so
sudo ln -s /usr/lib32/libasound.so.2 /usr/lib32/libasound.so
sudo ln -s /usr/lib32/libXxf86vm.so.1 /usr/lib32/libXxf86vm.so
sudo ln -s /usr/lib32/libX11.so.6 /usr/lib32/libX11.so
sudo ln -s /usr/lib32/libpng12.so.0 /usr/lib32/libpng.so
wget https://github.com/nullkey/glc/raw/master/scripts/glc-build.sh
chmod a+x glc-build.sh
./glc-build.sh
justin@justin-desktop:~$ ./glc-build.sh
info : Welcome to glc install script!
Enter path where glc will be installed.
(leave blank to install to root directory)
> /home/justin/glc
Enter compiler optimizations.
(-O2 -msse -mmmx -fomit-frame-pointer)
>
Use git (y/n)
(git contains latest unstable development version)
> n
info : Fetching sources...
error : Can't fetch elfhacks
download () {
[ -f "$1.tar.gz" ] && rm -f "$1.tar.gz"
wget -q "http://nullkey.ath.cx/$1/$1.tar.gz" || die "Can't fetch $1"
}
USE_GIT="n"
ask "Use git (y/n)"
ask " (git contains latest unstable development version)"
ask-prompt
read USE_GIT
if [ "${USE_GIT}" == "y" ]; then
if [ -x "`which git 2> /dev/null`" ]; then
gitfetch glc
gitfetch glc-support
gitfetch elfhacks
gitfetch packetstream
cd glc && ln -sf ../glc-support ./support && cd ..
else
die "git not found (Ubuntu users: sudo apt-get install git-core)"
fi
else
info "Fetching sources..."
download elfhacks
download packetstream
download glc
info "Unpacking sources..."
unpack elfhacks
unpack packetstream
unpack glc
fi
justin@justin-desktop:~/nullkey-glc-5a4f81b$ cd
justin@justin-desktop:~$ ./glc-build.sh
info : Welcome to glc install script!
Enter path where glc will be installed.
(leave blank to install to root directory)
> /home/justin
Enter compiler optimizations.
(-O2 -msse -mmmx -fomit-frame-pointer)
>
Use git (y/n)
(git contains latest unstable development version)
> y
fatal: Not a git repository (or any of the parent directories): .git
error : Can't update glc
justin@justin-desktop:~$
Users browsing this forum: No registered users and 1 guest