Hackster will be offline on Monday, June 15 from 5pm to 7pm PDT to perform some scheduled maintenance.
kily
Published © CC BY

Raspberry Pi AI Video Translation Kiosk for Multilingual Dem

A Raspberry Pi kiosk that records short demo videos, sends them through an AI video translation workflow, and plays back translated subtitle

IntermediateFull instructions provided24 hours11
Raspberry Pi AI Video Translation Kiosk for Multilingual Dem

Things used in this project

Hardware components

translate a video
×1

Story

Read more

Schematics

Attachments

Setup guide for the Raspberry Pi AI video translation kiosk, including hardware scope, workflow map, testing checklist, failure cases, and the AI video translator reference workflow used for subtitle translation, AI dubbing, SRT/VTT export, voice cloning review, and lip-sync output.

The button wiring is minimal. Connect one side of the momentary button to GPIO17 and the other side

Code

Raspberry Pi video capture and playback commands

Powershell
mkdir -p ~/video-kiosk/source ~/video-kiosk/translated

# Pi Camera Module test capture
libcamera-vid -t 30000 --codec h264 -o ~/video-kiosk/source/test.h264
ffmpeg -i ~/video-kiosk/source/test.h264 -c copy ~/video-kiosk/source/test.mp4

# USB webcam example; adjust devices before use
ffmpeg -f v4l2 -i /dev/video0 -f alsa -i default -t 30 ~/video-kiosk/source/test.mp4

# Play dubbed output
vlc --fullscreen ~/video-kiosk/translated/translated-demo.mp4

# Play original video with translated subtitles
vlc ~/video-kiosk/source/test.mp4 --sub-file ~/video-kiosk/translated/test.en.srt

Credits

kily
1 project • 0 followers
I document practical AI, video, and hardware workflows for small teams, creators, and education use cases.
Thanks to .

Comments