วันเสาร์ที่ 23 เมษายน พ.ศ. 2565

python สร้าง capture video รูปตัวเอง สำหรับ อัด Video

ต้องลง OpenCv ตาม python version 

import cv2

  

cap = cv2.VideoCapture(1)


# Check if the webcam is opened correctly

if not cap.isOpened():

    raise IOError("Cannot open webcam")


while True:

    ret, frame = cap.read()

    frame = cv2.resize(frame, None, fx=0.25, fy=0.25, interpolation=cv2.INTER_AREA)

    sky = frame[0:200, 70:270]

    sky = cv2.flip(sky,1)

    cv2.namedWindow('Thanaphan',cv2.WINDOW_NORMAL)

    cv2.imshow('Thanaphan', sky)

    cv2.setWindowProperty('Thanaphan', cv2.WND_PROP_TOPMOST, 1)

    c = cv2.waitKey(1)

    if c == 27:

        break


cap.release()

cv2.destroyAllWindows()


วันจันทร์ที่ 11 เมษายน พ.ศ. 2565

Upload file size ของ Node และ IIS

Upload ของ Node จะใช้ express ต้องตั้ง Global ที่ start.js


app.use(express.json({ limit: "150mb" }));

app.use(express.urlencoded({ extended: true, limit: '150mb' }));

และที่ multer

router.post('/upload', userMiddlewares, multer({ dest: 'uploads/', limits: { fileSize: 150000000 } }).single('fileToUpload'), async (req, res, next) => { ....


สำหรับ IIS ต้องตั้งที่ web.config จะใช้ทั้ง Host รวม reverse proxy ด้วย

Request filtering