Skip to content

Commit a8804a4

Browse files
Initial commit
0 parents  commit a8804a4

12 files changed

+1652
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.DS_Store
3+
dist
4+
dist-ssr
5+
*.local

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TODO
2+
3+
- Allow setting custom ffmpeg config

index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<title>Compress Videos</title>
14+
</head>
15+
<body>
16+
<div id="app" class="bg-gradient-to-br from-cyan-400 via-sky-500 to-blue-600 text-white"></div>
17+
<script type="module" src="/src/main.js"></script>
18+
</body>
19+
</html>

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "compress",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"dev": "vite",
6+
"build": "vite build",
7+
"serve": "vite preview"
8+
},
9+
"dependencies": {
10+
"@ffmpeg/core": "^0.10.0",
11+
"@ffmpeg/ffmpeg": "^0.10.1",
12+
"@headlessui/vue": "^1.4.1",
13+
"nprogress": "^0.2.0",
14+
"vue": "^3.2.6"
15+
},
16+
"devDependencies": {
17+
"@tailwindcss/forms": "^0.3.3",
18+
"@vitejs/plugin-vue": "^1.6.0",
19+
"@vue/compiler-sfc": "^3.2.6",
20+
"autoprefixer": "^10.3.3",
21+
"postcss": "^8.3.6",
22+
"tailwindcss": "^2.2.9",
23+
"vite": "^2.5.2",
24+
"vite-plugin-cross-origin-isolation": "^0.1.1"
25+
}
26+
}

0 commit comments

Comments
 (0)