2024年11月30日 星期六

WebCam, IP Cam, Live stream 網路相機,監視攝影機,視訊直播,大眾使用 即時影像監視 研究

 WebCam, IP Cam, Live stream 

 網路相機,監視攝影機,視訊直播 

 大眾使用 即時影像監視 研究 


 



***********************************************************************
** IPcam、Webcam分不出來差別? 

***********************************************************************
***********************************************************************

IP Camera 與 Webcam 的比較 

https://cctv.ojos.cc/TECH_wp_ipcam-webcam.php

***********************************************************************


WebCam 一般是指 用 USB 連至電腦的攝影機,如:


適合 視訊會議 使用




WebcamViewer (用電腦看) 

https://download.cnet.com/webcamviewer/3000-12510_4-75324168.html




***********************************************************************
IP Camera Viewer (用電腦看 WebCam ) 







***********************************************************************

IP Camera 一般是指 用 網路線
無線網路 Wi-Fi 連至電腦的攝影機,



通常用手機觀看 監視畫面或錄影,






***********************************************************************


***********************************************************************

Webcam 視訊鏡頭選購要點|視訊鏡頭推薦 2023 

https://techteller.com/review/best-webcam-2/

適合 視訊會議 使用

***********************************************************************

WebCam 直接就可以放上 Youtube 直播 


***********************************************************************

將 webcam ( USB攝影鏡頭 ) 改成 IPcam 使用 

CameraFTP

https://www.cameraftp.com/CameraFTP/Features/UseWebcamAsIPCamera.aspx

( 看來不錯,但是要 訂閱付費 )



***********************************************************************
***********************************************************************

Raspberry Pi 樹莓派 使用 Webcam 

***********************************************************************

Working with USB webcams on your Raspberry Pi  ( fswebcam , ffmpeg )

https://raspberrypi-guide.github.io/electronics/using-usb-webcams

sudo apt install fswebcam

fswebcam --device /dev/video0 ~/images/image01.jpg

fswebcam -r 1280x720 --no-banner ~/images/image1.jpg


( fswebcam ,  ffmpeg 安裝成功,都可拍照片 )

https://www.sigmdel.ca/michel/ha/rpi/streaming_en.html

( mjpeg-streamer 安裝比較複雜 )


Raspberry Pi 筆記(19):Webcam 拍照與瀏覽串流媒體 ( fswebcam, motion )

https://atceiling.blogspot.com/2014/04/raspberry-pi-webcam.html

sudo apt update 

sudo apt upgrade 

( motion 安裝成功拍影片串流了! )


How to Stream Live Video Using Raspberry Pi  ( motion )

https://automaticaddison.com/how-to-stream-live-video-using-raspberry-pi/


Live Cam with Raspberry Pi ( motion )

https://www.hackster.io/sushree-subhasmita-jena/live-cam-with-raspberry-pi-e9f43d


Raspberry Pi Live Streaming with USB Webcam  ( ffmpeg )

https://www.dynamsoft.com/codepool/raspberry-pi-live-streaming-usb-webcam.html

( 失敗,不能拍影片 )


Secure Webcam streaming with MJPG-Streamer on a Raspberry Pi

https://www.sigmdel.ca/michel/ha/rpi/streaming_en.html


Working with Webcam using OpenCV ( python OpenCV )


7 Simple Steps: Connect Raspberry Pi to IP Cameras Easily

https://reolink.com/blog/connect-raspberry-pi-to-ip-cameras/



***********************************************************************

Raspberry Pi 樹莓派 使用 Camera module 相機模組 


***********************************************************************

How to control the Camera Module via the command line

https://projects.raspberrypi.org/en/projects/getting-started-with-picamera/3

https://www.raspberrypi.com/documentation/computers/camera_software.html


拍相片

rpicam-jpeg --output test.jpg --timeout 2000 --width 640 --height 480


拍相片

  • Type in the following command to take a still picture and save it to the Desktop:
rpicam-still -o ~/Desktop/image.jpg


拍相片

How to control the Camera Module via the command line

https://projects.raspberrypi.org/en/projects/getting-started-with-picamera/3

raspistill -o /home/pi/Pictures/image01.jpg 


拍縮時攝影

First, create a directory where you can store your time lapse photos:

$ mkdir timelapse

Run the following command to create a time lapse over 30 seconds, recording a photo every two seconds, saving output into image0000.jpg through image0013.jpg:

$ rpicam-still --timeout 30000 --timelapse 2000 -o timelapse/image%04d.jpg


拍影片

  • Now record a video with the Camera Module by using the following rpicam-vid command:
rpicam-vid -o ~/Desktop/video.mp4

I'm not using a Raspberry Pi 5

You will need to use libav

rpicam-vid -t 10000 --codec libav --libav-format mp4 -o ~/Desktop/video.mp4

Tip: The 10000 is the number of milliseconds to record

  • Play the video file by typing the following command:
vlc ~/Desktop/video.mp4

拍影片

rpicam-vid

rpicam-vid helps you capture video on Raspberry Pi devices. rpicam-vid displays a preview window and writes an encoded bitstream to the specified output. This produces an unpackaged video bitstream that is not wrapped in any kind of container (such as an mp4 file) format.

Note
When available, rpicam-vid uses hardware H.264 encoding.

For example, the following command writes a ten-second video to a file named test.h264:

$ rpicam-vid -t 10s -o test.h264

You can play the resulting file with VLC and other video players:

$ vlc test.h264

On Raspberry Pi 5, you can output to the MP4 container format directly by specifying the mp4 file extension for your output file:

$ rpicam-vid  -t 10s -o test.mp4

Encoders

rpicam-vid supports motion JPEG as well as both uncompressed and unformatted YUV420:

$ rpicam-vid -t 10000 --codec mjpeg -o test.mjpeg
$ rpicam-vid -t 10000 --codec yuv420 -o test.data

The codec option determines the output format


拍影片

Image and video recording with the Raspberry PI

https://raspberrypi-guide.github.io/electronics/image-and-video-recording

raspivid -o video.h264 


拍 高速攝影影片

Capture high framerate video

To minimise frame drops for high framerate (> 60fps) video, try the following configuration tweaks:

  • Set the H.264 target level to 4.2 with --level 4.2.

  • Disable software colour denoise processing by setting the denoise option to cdn_off.

  • Disable the display window with nopreview to free up some additional CPU cycles.

  • Set force_turbo=1 in /boot/firmware/config.txt to ensure that the CPU clock does not throttle during video capture. For more information, see the force_turbo documentation.

  • Adjust the ISP output resolution with --width 1280 --height 720 or something even lower to achieve your framerate target.

  • On Raspberry Pi 4, you can overclock the GPU to improve performance by adding gpu_freq=550 or higher in /boot/firmware/config.txt. See the overclocking documentation for further details.

The following command demonstrates how you might achieve 1280×720 120fps video:

$ rpicam-vid --level 4.2 --framerate 120 --width 1280 --height 720 --save-pts timestamp.pts -o video.264 -t 10000 --denoise cdn_off -n


影片串流

Video Streaming with Raspberry Pi Camera

https://randomnerdtutorials.com/video-streaming-with-raspberry-pi-camera/

pi@raspberrypi:~ $ python3 rpi_camera_surveillance_system.py

http://192.168.1.110:8000/index.html



How To Stream Live Video From Your Raspberry Pi Camera

https://www.tomshardware.com/how-to/stream-live-video-raspberry-pi

raspivid -o - -t 0 -w 800 -h 600 -fps 12  | cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8080/}' :demux=h264

install VLC and then open VLC.

Go to Media >> Open Network Stream, or press CTRL + N.

Enter the rtsp address and port: rtsp://raspberrypi:8080/ 




***********************************************************************
***********************************************************************

IP Camera 常用於 監視設備 

IP Camera 一般是指 用 網路線,或 無線網路 Wi-Fi 連至電腦的攝影機,
比較常用於 監視設備,如:

相當好的 入門款 網路攝影機

Tapo C100 | 家庭安全防護/ Wi-Fi 網路攝影機






通常用手機觀看 監視畫面或錄影,





 


改機 *** 
想換鏡頭,或是取消紅外線照明燈,
撬開黑色前蓋,



把那層電路板向上拔起,即可取出,即可取消紅外線照明燈,


改機 *** 
想換鏡頭,






若要用電腦螢幕看,需要用 VLC media player 或 iSpy 軟體 


Tapo攝影機的RTSP即時串流的URL(網址)為:

對於1080P(1920 * 1080)串流:rtsp://使用者名稱:密碼@IP位址:554/stream1

rtsp://helloshiau:public@192.168.1.117:554/stream1


對於360P(640 * 360)串流:rtsp://使用者名稱:密碼@IP位址:554/stream2

rtsp://helloshiau:public@192.168.1.117:554/stream1



或是使用 VLC media player 或 iSpy 軟體 觀看





***********************************************************************

***********************************************************************
IP Camera 做成 Youtube 直播 

5 Steps to Stream IP Cameras to YouTube/FB & Set up RTSP URLs

主要是需要安裝 Open Broadcast Softwre ( OBS ) 





Youtube 直播:

https://youtube.com/live/9zr59ewpSd0

( Youtube 直播很容易就會斷線 )



( Youtube 直播很容易就會斷線 )





***********************************************************************

***********************************************************************
IP Camera 做成 Facebook Live 直播 

也是使用 Open Broadcast Softwre ( OBS ) 

( 最長可以撥放 8 小時 ) 




***********************************************************************
Live stream 視訊直播 (視頻直播) 

理論上的程式方案
7 ways to stream RTSP on the page

程式實例
Embed RTSP stream directly from camera into webpage


自己 DIY RTMP 伺服器 範例
How to set up your own private RTMP server using nginx


ipcamlive  
( ip cam 要有對外網址才可以用 )



Restream


可以用 google 帳號登入,但是

( 但是結果 Restream 的視訊也是要用 Youtube 觀看! )













***********************************************************************

***********************************************************************
自己 DIY RTMP 直播伺服器 做視訊直播 (視頻直播) 




How To Set Up a Video Streaming Server using Nginx-RTMP on Ubuntu 20.04


Nginx 搭配 RTMP HLS 建立簡易直播 Server


Build your own Raspberry Pi NGINX Web Server




***********************************************************************

***********************************************************************

米家 小白 EC3 Pro 戶外攝影機 戶外雲台版

https://www.mijia.com.tw/product/%E5%B0%8F%E7%99%BDec3%E5%85%A8%E6%88%B6%E5%9E%8B%E7%9B%A3%E6%8E%A7%E6%94%9D%E5%BD%B1%E6%A9%9F%E9%9B%B2%E5%8F%B0%E7%89%88/

地表最強攝影機「小白 EC3」夜的黑就和白天一樣清晰

https://ahui3c.com/74106/ec3



夜晚可以拍到 獵戶座、大犬座、與 天狼星 



小米攝影機電腦端觀看程式

https://www.mobile01.com/topicdetail.php?f=634&t=6831435

版主使用,一直無法成功登入。 或許還沒開放台灣地區使用。


***********************************************************************

朋友分享,需安裝「夜神模擬器」,再安裝「米家」,就可以看小米攝影機

夜神模擬器

https://tw.bignox.com/

( 實際使用,會非常耗用電腦資源,整個電腦的速度會變慢。)

模擬器 裡面 安裝「米家」即可秀出攝影機畫面:







電腦故障,改用了另一台電腦,再安裝「夜神模擬器」,再安裝「米家」,

結果打開「米家」會閃退!


The best Android emulators for PC and Mac of 2024

https://www.androidauthority.com/best-android-emulators-for-pc-655308/


安裝「BlueStacks」,一樣會閃退!


安裝「LDPlayer 9」,一樣會閃退!


[进阶教程] 破解小米小蚁智能摄像机支持rtsp、ftp、telnet

https://bbs.hassbian.com/thread-361-1-1.html

  • 到这个网站下载破解固件http://xiaoyi.querex.be/firmwares/,需要下载两个。一个原版官方固件、一个破解版对应版本的固件。
  • 先刷官方固件、然后刷一次破解版固件。刷固件教程在这个网址http://bbs.xiaomi.cn/t-11501508
  • 刷好破解固件,开机提示音会变成英文。小米米家app还是可以连接到摄像头。可以在电脑下载一个vlc播放器测试一下rtsp播放流
  • rtsp播放地址如下
  • Main stream: rtsp://ipaddress:554/ch0_0.h264
    Minor stream: rtsp://ipaddress:554/ch0_1.h264
    Audio stream: rtsp://ipaddress:554/ch0_3.h264
  • 安装了sudo apt-get -t jessie-backports install ffmpeg 、sudo apt-get install libav-tools ,



********************************************************

********************************************************

手機 

**************************************************

用手機當電腦的Webcam或實物投影機 ( iVCam )

https://book.whsh.tc.edu.tw/books/google-meet/page/webcam


使用手機當電腦的攝影機或麥克風 ( DroidCam )

https://hackmd.io/@flagmaker/HkI_6xc9O


將手機或是IPCAM 做為 電腦WebCam 使用


手機使用軟體 IP WEBCAM PRO

PC使用軟體 IP Camera Adapter 4.9


***********************************************************************

***  阿福管家 設定不難,使用也算方便,但舊手機上線 二、三天就會離線, ***

很難遠端重置,然後一直跳廣告出來。其實感覺不好用。 

阿福管家-舊手機變成 CCTV 監視器、居家防護、寵物攝影機

https://play.google.com/store/apps/details?id=com.ivuu&hl=zh_TW&gl=US&pli=1

如何第一次使用阿福管家就上手?

https://alfredcamera.zendesk.com/hc/zh-tw/articles/360039719851-%E5%A6%82%E4%BD%95%E7%AC%AC%E4%B8%80%E6%AC%A1%E4%BD%BF%E7%94%A8%E9%98%BF%E7%A6%8F%E7%AE%A1%E5%AE%B6%E5%B0%B1%E4%B8%8A%E6%89%8B-





***********************************************************************

***********************************************************************

【2023最新】十大監視器推薦排行榜

https://tw.my-best.com/1591



如何透過網頁瀏覽器遠端檢視網路攝影機

https://www.tp-link.com/tw/support/faq/304/




***********************************************************************

 DDNS : 各種影像與視訊,如果想做成視訊串流,

通常會需要用到 DDNS 動態DNS  

https://zh.wikipedia.org/zh-tw/%E5%8B%95%E6%85%8BDNS

DDNS的作用

https://kknews.cc/zh-tw/digital/pg669p2.html


DDNS 排名較前面為 DynuDNS

https://www.dynu.com/en-US/DynamicDNS



DYN DDNS 相當有名,但是需要付費

https://account.dyn.com/




如何設定DDNS? [情境1] 僅有一台數據機分接電腦、設備

https://blog.ite2.com/ddns-settings-1/




如何在無線路由器上設定 DDNS(DynDNS)

https://www.tp-link.com/tw/support/faq/297/



***********************************************************************


********************************

大眾使用 即時影像 監視器 

********************************


即時影像監視器 - - 台北市 中正區

https://tw.live/city/taipeicity/zhongzheng/


【Taipei Live Cam】象山看台北 - 4K即時影像 | Overlooking Taipei at the top of Xiangshan | 象山から望む台北


【Taipei Live Cam】碧山巖 - 4K即時影像 | Bishan Temple | 碧山巌開漳聖王廟 | TAIPEI 101



即時影像監視器 - - 台北市 陽明山

https://tw.live/yms/



即時影像監視器 - - 新北市 板橋區

https://tw.live/city/newtaipeicity/banqiao/


即時影像監視器 - - 新北市 交通路況

https://tw.live/provincial-highway/newtaipei/


新北市 即時交通資訊網

https://atis.ntpc.gov.tw/


台北 天氣 與 路況

https://www.meteoblue.com/en/weather/webcams/taipei_taiwan_1668341


新北市淡水區景點(即時影像) 淡水渡船頭 直播 #淡水河 #夕陽 #觀音山 #台北港 #淡水老街河岸 #淡水渡し船乗り場 Du Chuan Tou, Tamsui


桃園國際機場 RCTP 即時影像

https://www.youtube.com/live/91PfFoqvuUk?si=3LhrTlaijh1hb9Lz


即時影像監視器 - - 基隆市 旅遊

https://tw.live/travel/keelung/



Shihmen Reservoir Live Cam 石門水庫即時影像

https://www.youtube.com/watch?v=GUCaVR88ZFU



即時影像監視器 - - 合歡山

https://tw.live/hhs/



【4K】台東南橫埡口即時影像 Taitung Southern Cross-Island Yakou Live Camera

https://www.youtube.com/live/LSkq-wHMxQY?si=QdkxV2sGG89A2B8V




即時影像監視器 - - 屏東 墾丁

https://tw.live/np/kenting/




********************************

私人 或 公眾服務 即時影像監視

********************************







【Live Cam】東海岸即時影像- 綠島南寮漁港 | Green Island Nanliao Fishing Harbor | 緑島南寮漁港 2160p | 台東綠島 | 石朗潛水區




https://www.youtube.com/live/LSkq-wHMxQY?si=Zc_wXOdNrR5OfuOI




********************************

NASA, 太空,天文 即時影像監視

********************************


Live High-Definition Views from the International Space Station (Official NASA Stream)


Starlink Mission 直播

https://www.youtube.com/watch?v=agYuEAkEljw



親子觀星會

https://familystar.org.tw/blog/?p=405&fbclid=IwAR382dnb-BrgVmNjPUVXj4fKfdqw_q7uyeqrUHzRxiOmgWfqVfY-kl40aSc_aem_AfyAUR2Si84cws72UEWIUrwyh5YHo9CWOrvh5R0LhadcbK-YRZqixvW0cJLIV4HmRnc


********************************

版主 Dr. 蕭 的 Youtube 頻道

www.youtube.com/@helloshiau


********************************

全台687支 IP 網路攝影機沒換密碼!《Insecam》LIVE 直播診所、7-11、辦公室、住宅窗戶等影像



10 款 ONVIF IP Cam 監視器影像管理軟體的使用心得

https://hipay0.com/onvif-surveillance-software-for-ip-camera/




How to Set Up a Live Camera Feed and Webcam Stream in 8 Steps

https://www.dacast.com/blog/how-to-set-up-a-live-webcam/




別用中國製網路監控攝影機! 南韓大量用戶私密影片被傳到色情網站

https://liff.line.me/1454987169-1WAXAP3K/v2/article/3Nmwj8r?utm_source=copyshare



2023-08-10

2023-12-18

2024-03-20

2024-06-26

2024-08-08




Dr. Shaw YC Shiau PhD 蕭醫師 蕭博士 蕭同學 首頁 置頂文 標籤 分類搜尋

There will be Advertisement  (personalized)   inserts in Google Blog. Sorry!  谷歌 的 部落格 會有 置入廣告 (個人化的) ,請見諒!    Information Service  b...