Sunday, August 8, 2021

Raspberry Pi Video Streaming Server





This video explains how to setup Raspberry Pi as Video streaming server using simple configuration and OBS studio

Steps to follow

sudo apt update
sudo apt upgrade

install Nginx web server:

sudo apt install nginx

Install RTMP module so Nginx can handle media stream:

sudo add-apt-repository universe
sudo apt install libnginx-mod-rtmp

Modify Nginx’s configuration so that it can support media stream.

sudo nano /etc/nginx/nginx.conf

Add the following code to the bottom of the config file:

rtmp {
        server {
                listen 1935;
                chunk_size 4096;

                application live {
                        live on;
                        record off;
                }
        }
}

Save the config file as shown in the video

Restart Nginx with this new configuration:

sudo systemctl restart nginx

Music: Paradise
Musician: @iksonmusic

Tuesday, August 3, 2021

Interfacing LCD and Camera with Raspberry PI and Perform Face Detection


This video demonstrates how to Interfacing LCD and Camera with Raspberry PI and Perform Face Detection using OpenCV and Python

Download LCD-Show below
http://fumacrom.com/1rwYb

Download Face Detection Python script below
http://fumacrom.com/1rwWl

Install OpenCV and numpy in Python using command below (pip for old python and pip3 for python3 )

pip install opencv-python
                    OR
pip3 install opencv-python

pip install numpy --upgrade
                     OR
pip3 install numpy --upgrade

Mine crypto on your android phone without draining your battery from link below
https://cryptotabbrowser.com/23696808

For more details on mining cypto refer link below
https://youtu.be/7y5US3Y90Fc

Tuesday, July 20, 2021

Network Attached (Addressable) Storage (NAS) On Raspberry PI


 

This video demonstrates How to get setup your Raspberry PI as NAS with simple steps

Get Raspberry Pi @ https://amzn.to/3kzJx6A

Commands to execute sudo apt update sudo apt upgrade wget -O - https://raw.githubusercontent.com/OpenMediaVault-Plugin-Developers/installScript/master/install | sudo bash RPI imager download https://downloads.raspberrypi.org/imager/imager_latest.exe https://downloads.raspberrypi.org/imager/imager_latest_amd64.deb https://downloads.raspberrypi.org/imager/imager_latest.dmg


Monday, July 19, 2021

Advanced Crypto Mining From Your Android Phone



This video demonstrates how to mine crypto currency directly from your Android phone.

Follow steps below to get started (paste commands accordingly)

sudo apt-get install git build-essential cmake automake libtool autoconf libuv1-dev libssl-dev libhwloc-dev wget

git clone https://github.com/xmrig/xmrig

mkdir xmrig/build && cd xmrig/scripts

./build_deps.sh && cd ../build

cmake .. -DXMRIG_DEPS=scripts/deps

make -j$(nproc)

sudo ./xmrig -o stratum+tcp://xmr.
pool.minergate.com:45700 -u worldomo@gmail.com --coin monero

Mine Crypto using browser (Android or PC)
https://youtu.be/7y5US3Y90Fc

Download Crypto Tab browser on your PC or phone to mine Bitcoin, use link below

https://cryptotabbrowser.com/23696808

Music: Another time
Musician: LiQWYD

Sunday, July 4, 2021

Crypto Mining from phone


Why use a power hungry PC when you can mine Crypto currency from Phone, you can achieve this with CryptoTab Pro mobile app using cloud Mining.

Download from link below https://cryptotabbrowser.com/23696808 Music: Another time Musician: LiQWYD

Sunday, June 27, 2021

Getting started with Teensy Board

 






The video gets you started with Teensy Board 4.0 on Arduino IDE

About Teensy -> https://www.pjrc.com/teensy/index.html
Download Teensyduino from https://www.pjrc.com/teensy/td_download.html
Teensy 4.0 PIN out https://www.pjrc.com/store/teensy40.html
Older release of Arduino
https://www.arduino.cc/en/main/OldSoftwareReleases

Key Aspects For Microcontroller Selection


 

This Video explains four key aspects to consider during microcontroller selection process

  1. GPIO availability
  2. Evaluation Board
  3. IDE/SDK
  4. Technical support

Watch the video for more details.

Thank You :)

How to add Wireless capability to legacy printers using Raspberry Pi

  This video tutorial demonstrates how to easily add wireless print capablity to your wired legacy printers using your Raspberry Pi. We hav...