본문 바로가기

찐s/Raspberry Pi

[RPi] Lab.04-3: piCamera

라즈베리파이 CSI 기반 카메라를 파이썬으로 제어한다.

 

[RPi]

[playVedio.py]

카메라에서 들어오는 영상을 녹화하여 H264 파일로 저장한다. 

#####playVedio-------------------------------##### 
import picamera
import time

#####----------------------------------------##### 
camera = picamera.PiCamera()

camera.resolution = (300, 400)
camera.start_preview()
filename = input('File Name:')
camera.start_recording(output = filename + '.h264')
recodingTime =input('Recoding Time(1~9):')
camera.wait_recording(int(recodingTime))
camera.stop_preview()
camera.stop_recording()

 

[Test Result]

터미널에 playVedio.py 를 실행하면 영상(test.h264)이 녹화된다. 

$ python3 playVedio.py
 



[참조]

www.raspberrypi.org

 

'찐s > Raspberry Pi' 카테고리의 다른 글

[RPi] Lab.05-1: GUI (matplotlib)  (0) 2021.07.03
[RPi] Lab.04-4: piCamera  (0) 2020.12.13
[RPi] Lab.04-2: piCamera  (0) 2020.12.06
[RPi] Lab.04-1: piCamera  (0) 2020.12.05