--30--
Showing posts with label video. Show all posts
Showing posts with label video. Show all posts
Wednesday, May 15, 2024
Wednesday, June 5, 2019
Raspberry Pi zero video notes
Mpeg video
MJPG Streamer
To run the camera stream from a USB webcam we'll make use of the packagemjpg-streamer. Before we can install this we'll need to install a few dependencies first.sudo apt-get update
sudo apt-get install libjpeg8-dev imagemagick libv4l-dev uvcdynctrl git cmake -y
After installing the dependencies, run the following commands to install mjpg-streamer.git clone https://github.com/jacksonliam/mjpg-streamer.git
cd mjpg-streamer/mjpg-streamer-experimental
make USE_LIBV4L2=true clean all
sudo make install
sudo usermod -aG video pi
sudo modprobe bcm2835-v4l2
cd ../../
rm -rf mjpg-streamer
Start the camera livestream by running the following command.mjpg_streamer -i 'input_uvc.so --device /dev/video0 --fps 30 --resolution VGA --quality 65' -o 'output_http.so'
If you followed all above instructions and everything went ok, you should now be able to see the stream when browsing to http://your-raspberry-pi.local:8080?action=stream. After you verified the stream is working, cancel by running ctrl+c and move on to the next section.https://wouterdeschuyter.be/blog/how-to-create-a-15-dollar-web-controllable-camera-with-a-raspberry-pi-zero
--30--
Monday, October 3, 2016
Upload Youtube videos from Linux command line
This might be handy for uploading surveillance videos or the like, generated on a system.
From Jean-Luc
http://www.cnx-software.com/2014/02/09/how-to-upload-youtube-videos-with-the-command-line-in-linux/
mkdir youtube-upload
cd youtube-upload
wget https://github.com/youtube/api-samples/raw/master/python/upload_video.py
Google API download
wget https://google-api-python-client.googlecode.com/files/google-api-python-client-1.2.tar.gz
tar xzvf google-api-python-client-1.2.tar.gz
cd google-api-python-client-1.2/
mv apiclient/ oauth2client/ uritemplate/ ..
cd ..
From Jean-Luc
http://www.cnx-software.com/2014/02/09/how-to-upload-youtube-videos-with-the-command-line-in-linux/
mkdir youtube-upload
cd youtube-upload
wget https://github.com/youtube/api-samples/raw/master/python/upload_video.py
Google API download
wget https://google-api-python-client.googlecode.com/files/google-api-python-client-1.2.tar.gz
tar xzvf google-api-python-client-1.2.tar.gz
cd google-api-python-client-1.2/
mv apiclient/ oauth2client/ uritemplate/ ..
cd ..
Tuesday, February 16, 2016
Facebook Video Downloader
Facebook video downloader
unfortunately a web site, but it works.
Once you have the video, you have to click till you get the URL link to it.
Paste it into the box on this site. It will present a page with two options, one
for high def video and one for normal. You click on them like they are video
links and save them. MP4 files are the result.
http://www.fbdown.net/index.php?error=1
zz
Subscribe to:
Posts (Atom)