Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 682 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 682 Bytes

Landmark Recordings

A demo for building recordings from landmark information provided by mediapipe.

Requirements

  • FFMPEG
  • python 3.9 64-bit (mediapipe requires 64bit)
  • Golang 1.17 (I'm sure most versions would work, this is just whats on my machine.)

Processessing Recordings

Deconstruct the Video

ffmpeg -i in.mp4 frames/frame_%04d.png -hide_banner

Run the Landmark Identification Software

python pose/pose.py

Rebuilding the Video

ffmpeg -y -r 29 -i frames_out/frame_%04d.png -c:v libx264 -vf fps=29 -pix_fmt yuv420p out.mp4

Buiding a Recolude Recording

go run pose.go