07-01-2016, 06:15 PM
I got mine working!!
cat /etc/modules
#blah blah
#
s5k4ec
vfe_v4l2
#
cat /etc/apt/sources.list
deb http://ftp.us.debian.org/debian jessie main contrib non-free
I looked through my history and here are the commands that got it going:
(of course, I tried to remove the other million commands that did not work, I hope I didn't remove a command that's is needed)
================
apt-get install intltool autotools-dev libsdl1.2-dev libgtk-3-dev portaudio19-dev libpng12-dev libavcodec-dev libavutil-dev libudev-dev libusb-1.0-0-dev libpulse-dev libgsl0-dev libv4l-dev libv4l2rds0 libsdl2-dev
# a bazillon un-met dependencies
wget https://github.com/avafinger/guvcview/ar...master.zip
unzip master.zip
cd guvcview/
# install one at a time to work through the unmet dependencies
apt-get install intltool
apt-get install autotools-dev
apt-get install libgtk2.0-dev
apt-get install libv4l-dev
apt-get install libudev-dev
apt-get install libusb-1.0-0-dev
apt-get install libavcodec-dev
apt-get install libpng12-dev
aptitude install libsdl2-dev
# aptitude gives you suggestions, I answered no to leaving it alone & yes to overwrite with older versions
apt-get install libgsl0-dev
apt-get install libportaudio2
apt-get install portaudio19-dev
apt-get install libgtk-3-dev
apt-get install libsdl1.2-dev
aptitude install libsdl2
./bootstrap.sh
./configure --prefix=/usr --enable-yuyv --disable-sdl2
make
make install
guvcview --version
ls -l /dev/vid*
guvcview --guvcview -d /dev/video0 -x 1280x720 -r sdl -f yu12
======
Good Luck
![Big Grin Big Grin](https://forum.pine64.org/images/smilies/biggrin.png)
cat /etc/modules
#blah blah
#
s5k4ec
vfe_v4l2
#
cat /etc/apt/sources.list
deb http://ftp.us.debian.org/debian jessie main contrib non-free
I looked through my history and here are the commands that got it going:
(of course, I tried to remove the other million commands that did not work, I hope I didn't remove a command that's is needed)
================
apt-get install intltool autotools-dev libsdl1.2-dev libgtk-3-dev portaudio19-dev libpng12-dev libavcodec-dev libavutil-dev libudev-dev libusb-1.0-0-dev libpulse-dev libgsl0-dev libv4l-dev libv4l2rds0 libsdl2-dev
# a bazillon un-met dependencies
wget https://github.com/avafinger/guvcview/ar...master.zip
unzip master.zip
cd guvcview/
# install one at a time to work through the unmet dependencies
apt-get install intltool
apt-get install autotools-dev
apt-get install libgtk2.0-dev
apt-get install libv4l-dev
apt-get install libudev-dev
apt-get install libusb-1.0-0-dev
apt-get install libavcodec-dev
apt-get install libpng12-dev
aptitude install libsdl2-dev
# aptitude gives you suggestions, I answered no to leaving it alone & yes to overwrite with older versions
apt-get install libgsl0-dev
apt-get install libportaudio2
apt-get install portaudio19-dev
apt-get install libgtk-3-dev
apt-get install libsdl1.2-dev
aptitude install libsdl2
./bootstrap.sh
./configure --prefix=/usr --enable-yuyv --disable-sdl2
make
make install
guvcview --version
ls -l /dev/vid*
guvcview --guvcview -d /dev/video0 -x 1280x720 -r sdl -f yu12
======
Good Luck