From 8f216b8513c9f28bb65d6f8174d575a1b4fcdf93 Mon Sep 17 00:00:00 2001 From: "haixin.yang" Date: Mon, 13 Jul 2026 10:19:37 +0800 Subject: [PATCH] docs: add MIT license and repository badges --- LICENSE | 21 +++++++++++++++++++++ README.md | 13 ++++++++++++- README.zh-CN.md | 13 ++++++++++++- package-lock.json | 1 + package.json | 10 ++++++++++ 5 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9c31cf1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 MartinDelophy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 00fa23c..cd78949 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ Language: **English** | [中文](README.zh-CN.md) +[![Live Demo](https://img.shields.io/badge/Live_Demo-Timeline_Studio-35ead9?style=flat-square)](https://video-editor.ai-creator.top/) +[![GitHub stars](https://img.shields.io/github/stars/MartinDelophy/ai-video-editor?style=flat-square)](https://github.com/MartinDelophy/ai-video-editor/stargazers) +[![GitHub forks](https://img.shields.io/github/forks/MartinDelophy/ai-video-editor?style=flat-square)](https://github.com/MartinDelophy/ai-video-editor/forks) +[![MIT License](https://img.shields.io/github/license/MartinDelophy/ai-video-editor?style=flat-square)](LICENSE) + A browser-first AI video editor for image/video timelines, AI voiceover generation, captions, source audio, background music, and MP4/WebM export. The current prototype is inspired by modern dark timeline editors such as CapCut, but focuses on client-side AI voiceover and lightweight video editing workflows. ## Demo Video @@ -217,4 +222,10 @@ The following are intentionally excluded from git: ## License -Prototype project. Add a license before public production use. +Released under the [MIT License](LICENSE). You may use, modify, and distribute this project with attribution. + +## Star History + +If Timeline Studio is useful to you, starring the repository helps more people discover it. + +[![Star History Chart](https://api.star-history.com/svg?repos=MartinDelophy/ai-video-editor&type=Date)](https://star-history.com/#MartinDelophy/ai-video-editor&Date) diff --git a/README.zh-CN.md b/README.zh-CN.md index 6f27b4a..11c00af 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -2,6 +2,11 @@ 语言:[English](README.md) | **中文** +[![在线体验](https://img.shields.io/badge/在线体验-Timeline_Studio-35ead9?style=flat-square)](https://video-editor.ai-creator.top/) +[![GitHub Stars](https://img.shields.io/github/stars/MartinDelophy/ai-video-editor?style=flat-square)](https://github.com/MartinDelophy/ai-video-editor/stargazers) +[![GitHub Forks](https://img.shields.io/github/forks/MartinDelophy/ai-video-editor?style=flat-square)](https://github.com/MartinDelophy/ai-video-editor/forks) +[![MIT License](https://img.shields.io/github/license/MartinDelophy/ai-video-editor?style=flat-square)](LICENSE) + 一个浏览器优先的 AI 视频编辑器,支持图片/视频时间线、AI 配音、字幕、视频原声、背景音乐以及 MP4/WebM 导出。当前原型参考了 CapCut/剪映一类深色时间线编辑器,但重点放在 Web 端 AI 配音和轻量视频编辑流程。 ## 演示视频 @@ -202,4 +207,10 @@ npx netlify-cli deploy --prod --dir=dist ## License -原型项目。公开生产使用前建议补充正式 License。 +本项目采用 [MIT License](LICENSE)。在保留版权声明的前提下,可以自由使用、修改和分发。 + +## Star 趋势 + +如果 Timeline Studio 对你有帮助,欢迎点一个 Star,这会帮助更多人发现这个项目。 + +[![Star History Chart](https://api.star-history.com/svg?repos=MartinDelophy/ai-video-editor&type=Date)](https://star-history.com/#MartinDelophy/ai-video-editor&Date) diff --git a/package-lock.json b/package-lock.json index 278c616..293848c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "web-player", "version": "0.0.0", + "license": "MIT", "dependencies": { "@diffusionstudio/vits-web": "^1.0.3", "@ffmpeg/ffmpeg": "^0.12.15", diff --git a/package.json b/package.json index f44773d..392ccaf 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,16 @@ "name": "web-player", "version": "0.0.0", "private": true, + "description": "A local-first browser AI video editor for voiceovers, captions, talking avatars, and multi-track timeline export.", + "license": "MIT", + "homepage": "https://video-editor.ai-creator.top/", + "repository": { + "type": "git", + "url": "https://github.com/MartinDelophy/ai-video-editor.git" + }, + "bugs": { + "url": "https://github.com/MartinDelophy/ai-video-editor/issues" + }, "type": "module", "scripts": { "dev": "vite --host 127.0.0.1",