Skip to content

Commit

Permalink
🎉 init version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed Feb 26, 2022
1 parent 0ec474b commit f714188
Show file tree
Hide file tree
Showing 98 changed files with 8,921 additions and 7,360 deletions.
14 changes: 0 additions & 14 deletions .editorconfig

This file was deleted.

36 changes: 26 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# IDEs
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.vscode
.vs
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# assets
src/annotation/*
!src/annotation/.gitkeep
src/config/*
!src/config/.gitkeep
src/video/*
!src/video/.gitkeep
src/annotation
src/public/annotation
src/public/config
src/public/video
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<a href="https://www.anu.edu.au/" target="_blank">
<img src="src/img/logo.svg" alt="ANU logo">
<img src="src/public/logo.svg" alt="ANU logo">
</a>

# Vidat
Expand Down Expand Up @@ -56,7 +56,6 @@ Video tutorials will be posted on [YouTube](https://www.youtube.com/playlist?lis
| `muted` | `true`/`false` | mute video or not |
| `grayscale` | `true`/`false` | grayscale or not |
| `showPopup` | `true`/`false` | show popup or not |
| `debug` | `true`/`false` | auto load a video and no cache |
| `submitURL` | `http%3A%2F%2Flocalhost%3Ftoken%3D123456` | URL for submit |

notes:
Expand Down
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vidat</title>
<meta
name="keywords"
content="
video annotation tool,
action,
temporal segments,
object bounding boxes,
semantic,
instance regions,
tracklets,
human pose,
skeleton,
in browser,
backend free,
Amazon Mechanical Turk,
compatible,
open-source
"
>
<meta
name="description"
content="An in-browser video annotation tool developed by ANU CVML."
>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;"
/>
<link
rel="shortcut icon"
href="img/logo.svg"
>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.js"
></script>
</body>
</html>
10 changes: 10 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
}
}
}

0 comments on commit f714188

Please sign in to comment.