본문 바로가기

3Dsoftware120

[ComfyUI] KSampler - 오류 KSampler 오류 내용.[ The size of tensor a (45) must match the size of tensor b (44) at non-singleton dimension 4 ] input video의 resolution의 원인이 16으로 나누어 떨어지지 않기 때문에 문제가 발생한다.예를 들서 width 712 x height 720의 영상이라고 하면. Width (가로): 712712 \16 = 44.516의 배수가 아닙니다.Height (세로): 720720 \16 = 4516의 배수입니다. ✅ 해결책해결하려면 영상을 인코딩하기 전에 가로 해상도를 16의 배수로 조정해야 합니다. 712 > 704 or 688 로 줄여서 영상의 양쪽 끝을 자른다. or 720으로 늘려서 검은색으.. 2025. 10. 31.
ComfyUI dwpreprocessor 오류 경로의 길이가 너무 길어서 발생하는 오류.예를 들어: ComfyUI_windows_portable_nvidia (바깥 폴더에 이와 같은 긴 폴더명이 있으면 간단하게 ComfyUI로 폴더명을 변경하면 해결된다. 2025. 10. 30.
Unity 3D - Api 36 [Target Android SDK not installed] Target Android SDK not installed Unity version 2022.3.8f1Target Api Level 36 필요사항: Android Studio 설치 > more Action > SDK Manager - Android SDK Api Lvel 36 체크 > SDK Tools - Andorid SDK-Tools 36, Android SDK Command-line Tools 체크 > Apply. --- Android Studio SDK Location (C:\Users\XXXX\AppData\Local\Android\Sdk)으로 이동해서 platforms 폴더 내부의 android-36 과 build-Tools 폴더의 36.0.0 폴더를 > Unity3D의 내장된 android.. 2025. 7. 4.
RTX 5090 SageAttention 설치방법. python 3.12ver, ComfyUI portable, triton 3.3.11. Cuda: 12.9 ver C드라이브에 설치 2. pyTorch는 Nightly cuda12.8 버전만약 (venv) 또는 Python Embeded 폴더가 내장된 가상환경 프로그램 이라면 파이썬 실행파일이 있는 곳에서 아래 예시와 같이 위 Command를 실행해야한다.cd C:\Python\Python310 .\python.exe -m pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu1283. SageAttention 설치 - E:\Ai\ComfyUI_windows_portabl.. 2025. 6. 18.
SBP Error Error 해결 방법 위 그림은 Windows 플랫폼 기준이다.Build Profiles 와 Addressable의 PackAssets의 Compression Method가 일치 해야한다.빌드 오류가 발생한다. 2025. 5. 14.
[Unity 3D] Android 14(API 34) 업데이트시 App crash 강제종료 (해결) 플레이 콘솔에 aab 빌드 파일을 업로드시 다음과 같은 경고가 뜹니다. "Play Asset Delivery library 가 Android 14(API 34) 와 호환되지 않는다. App Crashes를 피하기 위해서는 최신 라이브러리 버전으로 업데이트해라." 아래는 원문입니다. 실제로 앱 실행시 Crash가 발생합니다.  (원문) Update your Play Asset Delivery Maven dependency to an Android 14 compatible version! Your current Play Asset Delivery library is incompatible with targetSdkVersion 34 (Android 14), which introduces a backwards.. 2024. 7. 9.