Tool for creating GPX from TrueCam video subtitles.
- node.js (with npm)
- ffmpeg
- extract subtitles with
ffmpeg -i AMBA####.MOV -map 0:s:0 subs.srt
- download dependencies with
npm install
- create GPX with
node index.js < subs.srt > out.gpx
Mapillary has size limit 2.5 GB and format mp4. To split and convert the file run ffmpeg -y -i AMBA####.MOV -vcodec copy -acodec copy -ss 00:00:00 -t 00:15:00 -sn out1.mp4 -vcodec copy -acodec copy -ss 00:15:00 -t 01:00:00 -sn out2.mp4
.