Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 985 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 985 Bytes

video-annotator

Live preview

Video annotation portable web app (A canvas based timeline for controlling and annotating video)

This app is a part of RapidAnnotator (GSoC'22 project) and it is an extending work on videotimeline.js

Features:

  • Timeline
  • Frame/Seconds seeking
  • Zoom in/out video timeline
  • Annotation add/edit/delete
  • Multiple tracks support

Usage:

// singltone object
var videoId = "video"
var timeline = new Timeline(videoId); 
// add intial tracks and their annotation (load)
timeline.addTrack(3, "track 03", [{
		text: "text dsadasdasd",
		backgroundColor: "white",
		startTime: 0,
		endTime: 10.5,
	}]);
// add track without annotations (empty list)
timeline.addTrack(2, "track 02", []);

image