This commit is contained in:
indigo 2026-03-20 02:31:34 +08:00
parent ae2c388716
commit 15127115bb
3 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="64" height="64" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="64" height="64" rx="8" fill="#1E3A5F"/>
<!-- Video Frame / Screen -->
<rect x="8" y="12" width="48" height="32" rx="2" fill="#2D5A87" stroke="#4A90D9" stroke-width="2"/>
<!-- Video Play Symbol (Triangle) -->
<path d="M26 22 L42 28 L26 34 Z" fill="#4A90D9"/>
<!-- Frame Lines -->
<line x1="8" y1="48" x2="56" y2="48" stroke="#4A90D9" stroke-width="2"/>
<line x1="8" y1="52" x2="56" y2="52" stroke="#4A90D9" stroke-width="2"/>
<line x1="8" y1="56" x2="56" y2="56" stroke="#4A90D9" stroke-width="2"/>
<!-- Film Strip Holes (Left) -->
<circle cx="6" cy="22" r="2" fill="#4A90D9"/>
<circle cx="6" cy="28" r="2" fill="#4A90D9"/>
<circle cx="6" cy="34" r="2" fill="#4A90D9"/>
<!-- Film Strip Holes (Right) -->
<circle cx="58" cy="22" r="2" fill="#4A90D9"/>
<circle cx="58" cy="28" r="2" fill="#4A90D9"/>
<circle cx="58" cy="34" r="2" fill="#4A90D9"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -43,6 +43,10 @@ set(MEL_SCRIPTS
AETemplateMediaPlane.mel AETemplateMediaPlane.mel
) )
set(ICON_FILES
resources/icons/out_MediaPlane.svg
)
# ============================================ # ============================================
# Build Plugin # Build Plugin
# ============================================ # ============================================
@ -102,6 +106,11 @@ install(FILES ${MEL_SCRIPTS}
DESTINATION "scripts" DESTINATION "scripts"
) )
# Install icon files
install(FILES ${ICON_FILES}
DESTINATION "icons"
)
# Install FFmpeg DLLs # Install FFmpeg DLLs
if(EXISTS "${FFMPEG_DLL_DIR}") if(EXISTS "${FFMPEG_DLL_DIR}")
file(GLOB FFMPEG_DLLS "${FFMPEG_DLL_DIR}/*.dll") file(GLOB FFMPEG_DLLS "${FFMPEG_DLL_DIR}/*.dll")

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="64" height="64" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="64" height="64" rx="8" fill="#1E3A5F"/>
<!-- Video Frame / Screen -->
<rect x="8" y="12" width="48" height="32" rx="2" fill="#2D5A87" stroke="#4A90D9" stroke-width="2"/>
<!-- Video Play Symbol (Triangle) -->
<path d="M26 22 L42 28 L26 34 Z" fill="#4A90D9"/>
<!-- Frame Lines -->
<line x1="8" y1="48" x2="56" y2="48" stroke="#4A90D9" stroke-width="2"/>
<line x1="8" y1="52" x2="56" y2="52" stroke="#4A90D9" stroke-width="2"/>
<line x1="8" y1="56" x2="56" y2="56" stroke="#4A90D9" stroke-width="2"/>
<!-- Film Strip Holes (Left) -->
<circle cx="6" cy="22" r="2" fill="#4A90D9"/>
<circle cx="6" cy="28" r="2" fill="#4A90D9"/>
<circle cx="6" cy="34" r="2" fill="#4A90D9"/>
<!-- Film Strip Holes (Right) -->
<circle cx="58" cy="22" r="2" fill="#4A90D9"/>
<circle cx="58" cy="28" r="2" fill="#4A90D9"/>
<circle cx="58" cy="34" r="2" fill="#4A90D9"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB