diff --git a/README.md b/README.md index 664dfe0f..94e217ff 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,14 @@ Platform notes: Recordly can automatically emphasize activity with zoom suggestions, smooth cursor movement, add motion effects, and place the final composition inside a styled frame with wallpapers, colors, gradients, blur, padding, and shadows.
-
+
-
+
-
+
@@ -11,20 +9,19 @@
-
+
-
+
-
+
-
+
-
+
@@ -321,12 +318,12 @@ Recordly 将平台相关的捕获层与基于渲染器的编辑、导出流程 **捕获** - Electron 负责录制流程和应用级控制 -- macOS 使用原生的 ScreenCaptureKit 辅助程序 -- Windows 在可用时使用原生 Windows Graphics Capture(WGC)以及原生音频辅助程序 +- macOS 使用原生 ScreenCaptureKit 辅助程序 +- Windows 在可用时使用原生 Windows Graphics Capture(WGC)辅助程序和原生音频辅助程序 **编辑** - 时间线区域定义缩放、裁剪、变速、音频叠加和注释 -- 光标和摄像头样式由编辑器状态统一控制 +- 光标和摄像头样式都保存在编辑器状态中 **渲染** - 场景合成由 **PixiJS** 负责 @@ -375,6 +372,8 @@ https://github.com/webadderallorg/Recordly/issues - buildwithfur - Tobias - Anonymous Supporter +- Tandava Appadoo +- Digitalfastmind - Roberto Marcelino - Rajan RK - Francesco @@ -389,13 +388,11 @@ Recordly 基于 **AGPL 3.0** 发布。 --- ---- - # 致谢 ## 鸣谢 -Recordly 最初是从 [OpenScreen](https://github.com/siddharthvaddem/openscreen) 分叉而来,之后已逐步演变为不同的项目。 +Recordly 最初是从 [OpenScreen](https://github.com/siddharthvaddem/openscreen) 分叉而来,之后已逐步演变为一个不同的项目。 创建者 [@webadderall](https://x.com/webadderall) diff --git a/CursorLoop.gif b/docs/media/CursorLoop.gif similarity index 100% rename from CursorLoop.gif rename to docs/media/CursorLoop.gif diff --git a/CursorSwayDemo.gif b/docs/media/CursorSwayDemo.gif similarity index 100% rename from CursorSwayDemo.gif rename to docs/media/CursorSwayDemo.gif diff --git a/demo.gif b/docs/media/demo.gif similarity index 100% rename from demo.gif rename to docs/media/demo.gif diff --git a/feature1.gif b/docs/media/feature1.gif similarity index 100% rename from feature1.gif rename to docs/media/feature1.gif diff --git a/feature2.gif b/docs/media/feature2.gif similarity index 100% rename from feature2.gif rename to docs/media/feature2.gif diff --git a/feature3.png b/docs/media/feature3.png similarity index 100% rename from feature3.png rename to docs/media/feature3.png diff --git a/Minimal Cursor.svg b/src/assets/cursors/custom/minimal-cursor.svg similarity index 100% rename from Minimal Cursor.svg rename to src/assets/cursors/custom/minimal-cursor.svg diff --git a/src/components/video-editor/SettingsPanel.tsx b/src/components/video-editor/SettingsPanel.tsx index d7bdef8c..71c9ce53 100644 --- a/src/components/video-editor/SettingsPanel.tsx +++ b/src/components/video-editor/SettingsPanel.tsx @@ -40,7 +40,7 @@ import { isVideoWallpaperSource, } from "@/lib/wallpapers"; import { type AspectRatio } from "@/utils/aspectRatioUtils"; -import minimalCursorUrl from "../../../Minimal Cursor.svg"; +import minimalCursorUrl from "@/assets/cursors/custom/minimal-cursor.svg"; import { useI18n, useScopedT } from "../../contexts/I18nContext"; import type { AppLocale } from "../../i18n/config"; import { SUPPORTED_LOCALES } from "../../i18n/config"; diff --git a/src/components/video-editor/videoPlayback/cursorRenderer.ts b/src/components/video-editor/videoPlayback/cursorRenderer.ts index f463c3f0..0402c412 100644 --- a/src/components/video-editor/videoPlayback/cursorRenderer.ts +++ b/src/components/video-editor/videoPlayback/cursorRenderer.ts @@ -2,7 +2,7 @@ import { Assets, BlurFilter, Container, Graphics, Sprite, Texture } from "pixi.j import { MotionBlurFilter } from "pixi-filters/motion-blur"; import { getRenderableAssetUrl } from "@/lib/assetPath"; import { extensionHost } from "@/lib/extensions"; -import minimalCursorUrl from "../../../../Minimal Cursor.svg"; +import minimalCursorUrl from "@/assets/cursors/custom/minimal-cursor.svg"; import { type CursorStyle, type CursorTelemetryPoint,