
插件目录如下
Win版 v25.08 包含以下插件:
- DEFlicker v2.3.2 (去闪烁插件)
- DE:Noise v3.7.1 (降噪插件)
- FieldsKit v4.2.0 (隔行扫描去场插件)
- ReelSmart Motion Blur Pro v6.4.4 (运动模糊插件)
- RE:Fill v3.0.4 (智能修补填充插件)
- RE:Flex v5.6.1 (变形扭曲变脸插件)
- RE:Grade v1.3.1 (调色插件)
- RE:Lens v2.4.3 (鱼眼广角镜头畸变扭曲修复插件)
- RE:Match v2.7.3 (色彩匹配插件)
- RE:MAP v4.2.2 (UV贴图映射插件)
- PV Feather v1.8.1 (逐点羽化插件)
- Shade/Shape 5.1.0 (阴影/形状立体效果插件)
- Smoothkit v4.1.0 (人像皮肤平滑降噪磨皮插件)
- Twixtor Pro v8.0.7 (超级变速慢动作插件)
- Video Gogh v4.0.1 (水彩油画效果插件)
- RE:Zup v2.0.1 (无损放大插件)
Mac版 v25.08 包含以下 插件:
- ……
插件效果预览
兼容
- After Effects:CS6, CC, CC 2014, CC 2015, CC 2017, CC 2018, CC 2019, 2020, 2021, 2022-25
- Premiere Pro:CS6, CC, CC 2014, CC 2015, CC 2017, CC 2018, CC 2019, 2020, 2021, 2022-25
我有话要说
- RE:VisionFX 的每一个插件都很强大,特别是大家熟悉的ReelSmart Motion Blur Pro、Twixtor Pro、Flex……
- 2025-08-29 更新了Win的v25.08版
- 2025-11-18 更新了Mac的v25.08版
下载地址
| 资源名称 | 版本号 | 兼容 | 下载地址 | 提取码 |
|---|---|---|---|---|
| REVisionFX Effections Plus (Adobe插件) | v25.08 | · Win · After Effects · Premiere Pro | 百度网盘 | 2333 |
| 城通网盘 | 397432 | |||
| 夸克网盘 | ||||
| v25.08 | · Mac · After Effects · Premiere Pro | 百度网盘 | 2333 | |
| 城通网盘 | 397432 | |||
| 夸克网盘 | ||||
- 网站默认解压密码:jpsmile.com
- 密码是对的。Mac用户请不要使用系统自带的垃圾解压功能。推荐使用免费的Keka解压。





文章评论
什么时候可以有mac版
提醒一下老大,更新一下 Mac 版本哦
@rzcool 计划明天更新👌
@捡屁笑 嗯嗯,期待哈,现在只有安装新软件后才能激起一点重新学习的热情了
@rzcool 计划有变,等我新的Mac到了再更新😂
应该快了……
@捡屁笑 恭喜拿到新Mac,感觉 Mac 的内存对 AE 比 Windows 要友好,稳定性更高
If you;re encountering issues in Apple Silicon like:-e Warning: Codesigning failed for RSMB64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RSMBPro64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensMirrorsAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensFromLatLongAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensChromaAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensToLatLongAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensDefishAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensSuperFishAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensSetBoundsAE64
-e Error: Failed to codesign.
-e Warning: Codesigning failed for RELensReframeAE64
replace patch_binaries() function in patch script as:
patch_binaries() {
local file="$1"
# --- 아키텍처 정리: x86_64 슬라이스 제거 ---
local arch_info=$(lipo -info "$file" 2>/dev/null)
if [[ "$arch_info" == *"x86_64"* && "$arch_info" == *"arm64"* ]]; then
warning "Stripping x86_64 slice, keeping arm64 only: $(basename "$file")"
# 임시 파일에 arm64 추출 후 덮어쓰기
local tmp_file="${file}.arm64tmp"
lipo -thin arm64 "$file" -output "$tmp_file" || {
error "Failed to extract arm64 slice"
return 1
}
mv "$tmp_file" "$file" || {
error "Failed to replace with arm64 binary"
return 1
}
elif [[ "$arch_info" == *"arm64"* ]]; then
debug "Already arm64 single-arch binary"
else
error "No arm64 architecture found in $(basename "$file")"
return 1
fi
# --- arm64 전용 패턴 배열 ---
declare -a arm_patterns=(
'([00-ff]{2})00b4080040391f490171'
'fc6fbaa9fa6701a9f85f02a9f65703a9f44f04a9([00-ff]{10})8452'
'ff4300d1e00300f9e80340f9080100f1e8079f1ae8000037'
'fc6fbea9fd7b01a9fd43009109f28452702900'
)
declare -a arm_substitutions=(
'200080d2c0035fd61f490171'
'c0035fd6fa6701a9f85f02a9f65703a9f44f04a9$(1)8452'
'200080d2c0035fd6e80340f9080100f1e8079f1ae8000037'
'c0035fd6fd7b01a9fd43009109f28452702900'
)
local total_matches=0
local changes_made=0
local pattern_statuses=()
for ((i = 0; i < ${#arm_patterns[@]}; i++)); do
local pattern="${arm_patterns[i]}"
local hex_pattern=$(hex "$pattern")
local count=$(perl -0777 -ne 'while(/'"$hex_pattern"'/gs){$count++} END {print $count}' "$file")
if [[ $count -eq 0 ]]; then
debug "ARM64 Pattern $((i+1)): NOT FOUND"
pattern_statuses+=("0")
else
debug "ARM64 Pattern $((i+1)): FOUND ($count time(s))"
pattern_statuses+=("$count")
total_matches=$((total_matches + count))
if [[ $count -gt 1 ]]; then
error "Pattern $((i+1)) found $count times, skipping file for safety"
return 1
fi
fi
done
if [[ $total_matches -eq 0 ]]; then
error "No ARM64 patterns found in $(basename "$file")"
return 1
fi
info "Found $total_matches ARM64 patterns in $(basename "$file")"
for ((i = 0; i < ${#arm_patterns[@]}; i++)); do
if [[ ${pattern_statuses[i]} -gt 0 ]]; then
debug "Applying ARM64 patch $((i+1))..."
if ! replace "$file" "${arm_patterns[i]}" "${arm_substitutions[i]}"; then
error "Failed to apply patch $((i+1))"
return 1
fi
changes_made=1
fi
done
if [[ $changes_made -eq 1 ]]; then
if ! codesign_binary "$file"; then
warning "Codesigning failed for $(basename "$file")"
return 1
fi
info "Patch done for $(basename "$file")"
else
info "No changes made to $(basename "$file")"
fi
return 0
}
Then reinstall plugin, and patch it again. This removes Intel binaries, so Rosetta 2 environment or Intel Macs are no longer being supported.