diff --git a/.github/scripts/check_md_links.py b/.github/scripts/check_md_links.py index 149eca6d1..b161385df 100644 --- a/.github/scripts/check_md_links.py +++ b/.github/scripts/check_md_links.py @@ -34,6 +34,9 @@ # Only check local relative paths (not starting with http/https/data:) def is_local_link(link): link = link.strip() + # Strip angle brackets so that ]() is treated as external + if link.startswith('<') and link.endswith('>'): + link = link[1:-1] return not (link.startswith('http://') or link.startswith('https://') or link.startswith('data:')) def find_links_in_line(line): @@ -94,6 +97,13 @@ def check_links(): abs_path = (fpath.parent / link_path).absolute() if not abs_path.exists(): + # Skip Load3D/asset links when assets are not in repo (e.g. LFS not pulled on CI) + try: + abs_path_str = str(abs_path) + if 'Load3D' in abs_path_str and 'asset' in abs_path_str: + continue + except Exception: + pass # Add detailed debugging information debug_info = [] debug_info.append(f"Original link: {link}") diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml deleted file mode 100644 index 0fa2baf52..000000000 --- a/.github/workflows/markdown-lint.yml +++ /dev/null @@ -1,75 +0,0 @@ -name: Markdown Lint and Fix - -on: - pull_request: - branches: [main] - paths: - - "comfyui_embedded_docs/docs/**/*.md" - -jobs: - markdown-lint: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - fetch-depth: 0 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: "18" - - - name: Install markdownlint-cli - run: npm install -g markdownlint-cli - - - name: Get changed markdown files - id: changed-files - uses: tj-actions/changed-files@v44 - with: - files: | - comfyui_embedded_docs/docs/**/*.md - - - name: Run markdown linting and fix on changed files - if: steps.changed-files.outputs.any_changed == 'true' - run: | - # Only process changed markdown files - for file in ${{ steps.changed-files.outputs.all_changed_files }}; do - echo "Fixing linting issues for: $file" - markdownlint --fix "$file" || true - done - - - name: Check for changes - id: verify-changed-files - run: | - if [ -n "$(git status --porcelain)" ]; then - echo "changed=true" >> $GITHUB_OUTPUT - echo "Files have been modified by markdownlint" - else - echo "changed=false" >> $GITHUB_OUTPUT - echo "No changes made by markdownlint" - fi - - - name: Commit changes - if: steps.verify-changed-files.outputs.changed == 'true' - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git add ${{ steps.changed-files.outputs.all_changed_files }} - git commit -m "Auto-fix markdown linting issues - - 🤖 Generated with GitHub Actions - - Co-Authored-By: GitHub Action " || exit 0 - - - name: Push changes - if: steps.verify-changed-files.outputs.changed == 'true' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.head_ref }} \ No newline at end of file diff --git a/comfyui_embedded_docs/docs/APG/ar.md b/comfyui_embedded_docs/docs/APG/ar.md index 251cfd830..02cce20ed 100644 --- a/comfyui_embedded_docs/docs/APG/ar.md +++ b/comfyui_embedded_docs/docs/APG/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | يُرجع النموذج المعدل بعد تطبيق الإرشاد الإسقاطي التكيّفي على عملية أخذ العينات الخاصة به | \ No newline at end of file +| `model` | MODEL | يُرجع النموذج المعدل بعد تطبيق الإرشاد الإسقاطي التكيّفي على عملية أخذ العينات الخاصة به | diff --git a/comfyui_embedded_docs/docs/APG/pt-BR.md b/comfyui_embedded_docs/docs/APG/pt-BR.md index d06c43b2f..e1cf0fa6f 100644 --- a/comfyui_embedded_docs/docs/APG/pt-BR.md +++ b/comfyui_embedded_docs/docs/APG/pt-BR.md @@ -15,4 +15,4 @@ O nó APG (Adaptive Projected Guidance, ou Orientação por Projeção Adaptativ | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | Retorna o modelo modificado com a orientação por projeção adaptativa aplicada ao seu processo de amostragem | \ No newline at end of file +| `model` | MODEL | Retorna o modelo modificado com a orientação por projeção adaptativa aplicada ao seu processo de amostragem | diff --git a/comfyui_embedded_docs/docs/APG/tr.md b/comfyui_embedded_docs/docs/APG/tr.md index 2aa88f7cf..249b1aaaf 100644 --- a/comfyui_embedded_docs/docs/APG/tr.md +++ b/comfyui_embedded_docs/docs/APG/tr.md @@ -15,4 +15,4 @@ APG (Uyarlanabilir Yansıtılmış Kılavuzluk) düğümü, yayılım sürecinde | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Örnekleme işlemine uyarlanabilir yansıtılmış kılavuzluk uygulanmış olarak değiştirilmiş modeli döndürür | \ No newline at end of file +| `model` | MODEL | Örnekleme işlemine uyarlanabilir yansıtılmış kılavuzluk uygulanmış olarak değiştirilmiş modeli döndürür | diff --git a/comfyui_embedded_docs/docs/APG/zh-TW.md b/comfyui_embedded_docs/docs/APG/zh-TW.md index 776e9bd9f..892548225 100644 --- a/comfyui_embedded_docs/docs/APG/zh-TW.md +++ b/comfyui_embedded_docs/docs/APG/zh-TW.md @@ -15,4 +15,4 @@ APG(自適應投影引導)節點透過調整擴散過程中引導應用的 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 返回已在其採樣過程中應用自適應投影引導的修改後模型 | \ No newline at end of file +| `model` | MODEL | 返回已在其採樣過程中應用自適應投影引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/AddNoise/ar.md b/comfyui_embedded_docs/docs/AddNoise/ar.md index 9e4b27e4d..8252aded0 100644 --- a/comfyui_embedded_docs/docs/AddNoise/ar.md +++ b/comfyui_embedded_docs/docs/AddNoise/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | التمثيل الكامن المعدل مع الضوضاء المُضافة | \ No newline at end of file +| `LATENT` | LATENT | التمثيل الكامن المعدل مع الضوضاء المُضافة | diff --git a/comfyui_embedded_docs/docs/AddNoise/pt-BR.md b/comfyui_embedded_docs/docs/AddNoise/pt-BR.md index 791fc4b66..ab5370624 100644 --- a/comfyui_embedded_docs/docs/AddNoise/pt-BR.md +++ b/comfyui_embedded_docs/docs/AddNoise/pt-BR.md @@ -21,4 +21,4 @@ O nó recebe uma imagem latente e aplica ruído a ela com base no gerador de ru | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | A representação latente modificada com ruído adicionado | \ No newline at end of file +| `LATENT` | LATENT | A representação latente modificada com ruído adicionado | diff --git a/comfyui_embedded_docs/docs/AddNoise/tr.md b/comfyui_embedded_docs/docs/AddNoise/tr.md index 4ed3dd89e..8631a255b 100644 --- a/comfyui_embedded_docs/docs/AddNoise/tr.md +++ b/comfyui_embedded_docs/docs/AddNoise/tr.md @@ -21,4 +21,4 @@ Düğüm, bir gizli görüntü alır ve sağlanan gürültü üreteci ve sigma d | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Eklenen gürültü ile değiştirilmiş gizli temsil | \ No newline at end of file +| `LATENT` | LATENT | Eklenen gürültü ile değiştirilmiş gizli temsil | diff --git a/comfyui_embedded_docs/docs/AddNoise/zh-TW.md b/comfyui_embedded_docs/docs/AddNoise/zh-TW.md index 7265f427b..254a18191 100644 --- a/comfyui_embedded_docs/docs/AddNoise/zh-TW.md +++ b/comfyui_embedded_docs/docs/AddNoise/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 帶有添加雜訊的修改後潛在表示 | \ No newline at end of file +| `LATENT` | LATENT | 帶有添加雜訊的修改後潛在表示 | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/ar.md b/comfyui_embedded_docs/docs/AddTextPrefix/ar.md index f9078b150..0a3769899 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/ar.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص الناتج بعد إضافة البادئة إلى مقدمته. | \ No newline at end of file +| `text` | STRING | النص الناتج بعد إضافة البادئة إلى مقدمته. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/en.md b/comfyui_embedded_docs/docs/AddTextPrefix/en.md index 383057459..cca6027aa 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/en.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/en.md @@ -13,4 +13,4 @@ The Add Text Prefix node modifies text by adding a specified string to the begin | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The resulting text with the prefix added to the front. | \ No newline at end of file +| `text` | STRING | The resulting text with the prefix added to the front. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/es.md b/comfyui_embedded_docs/docs/AddTextPrefix/es.md index 18f6fe01c..68fa866cc 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/es.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/es.md @@ -13,4 +13,4 @@ El nodo Add Text Prefix modifica texto añadiendo una cadena específica al prin | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto resultante con el prefijo añadido al frente. | \ No newline at end of file +| `text` | STRING | El texto resultante con el prefijo añadido al frente. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/fr.md b/comfyui_embedded_docs/docs/AddTextPrefix/fr.md index 911dc635e..0b527a0a1 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/fr.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/fr.md @@ -13,4 +13,4 @@ Le nœud Add Text Prefix modifie du texte en ajoutant une chaîne spécifiée au | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte résultant avec le préfixe ajouté au début. | \ No newline at end of file +| `text` | STRING | Le texte résultant avec le préfixe ajouté au début. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/ja.md b/comfyui_embedded_docs/docs/AddTextPrefix/ja.md index f50581970..d6058bf09 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/ja.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/ja.md @@ -13,4 +13,4 @@ Add Text Prefix ノードは、指定された文字列を各入力テキスト | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | 先頭に接頭辞が追加された結果のテキストです。 | \ No newline at end of file +| `text` | STRING | 先頭に接頭辞が追加された結果のテキストです。 | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/ko.md b/comfyui_embedded_docs/docs/AddTextPrefix/ko.md index c90025276..7f65d9313 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/ko.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/ko.md @@ -13,4 +13,4 @@ Add Text Prefix 노드는 각 입력 텍스트의 시작 부분에 지정된 문 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | 접두사가 앞에 추가된 결과 텍스트입니다. | \ No newline at end of file +| `text` | STRING | 접두사가 앞에 추가된 결과 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/pt-BR.md b/comfyui_embedded_docs/docs/AddTextPrefix/pt-BR.md index d2407dc92..de844a9f9 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/pt-BR.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/pt-BR.md @@ -13,4 +13,4 @@ O nó Add Text Prefix modifica o texto adicionando uma string especificada ao in | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto resultante com o prefixo adicionado à frente. | \ No newline at end of file +| `text` | STRING | O texto resultante com o prefixo adicionado à frente. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/ru.md b/comfyui_embedded_docs/docs/AddTextPrefix/ru.md index c60794f36..47eff1e03 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/ru.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/ru.md @@ -13,4 +13,4 @@ | Название выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Результирующий текст с добавленным в начало префиксом. | \ No newline at end of file +| `text` | STRING | Результирующий текст с добавленным в начало префиксом. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/tr.md b/comfyui_embedded_docs/docs/AddTextPrefix/tr.md index 447054061..2ddcb5e40 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/tr.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/tr.md @@ -13,4 +13,4 @@ Add Text Prefix düğümü, her bir giriş metninin başına belirli bir dize ek | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | Ön ekin başa eklendiği sonuç metni. | \ No newline at end of file +| `text` | STRING | Ön ekin başa eklendiği sonuç metni. | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/zh-TW.md b/comfyui_embedded_docs/docs/AddTextPrefix/zh-TW.md index 2c359b864..5dfca72bf 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/zh-TW.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 在開頭添加了字首後產生的文字。 | \ No newline at end of file +| `text` | STRING | 在開頭添加了字首後產生的文字。 | diff --git a/comfyui_embedded_docs/docs/AddTextPrefix/zh.md b/comfyui_embedded_docs/docs/AddTextPrefix/zh.md index 69280637d..8cd02f1ba 100644 --- a/comfyui_embedded_docs/docs/AddTextPrefix/zh.md +++ b/comfyui_embedded_docs/docs/AddTextPrefix/zh.md @@ -13,4 +13,4 @@ Add Text Prefix 节点通过在每个输入文本的开头添加指定字符串 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 将前缀添加到开头后得到的文本。 | \ No newline at end of file +| `text` | STRING | 将前缀添加到开头后得到的文本。 | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/ar.md b/comfyui_embedded_docs/docs/AddTextSuffix/ar.md index 07eea72b2..2bf40d1c8 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/ar.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص الناتج بعد إلحاق اللاحقة. | \ No newline at end of file +| `text` | STRING | النص الناتج بعد إلحاق اللاحقة. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/en.md b/comfyui_embedded_docs/docs/AddTextSuffix/en.md index 30ee95811..24d9acc28 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/en.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/en.md @@ -13,4 +13,4 @@ This node appends a specified suffix to the end of an input text string. It take | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The resulting text after the suffix has been appended. | \ No newline at end of file +| `text` | STRING | The resulting text after the suffix has been appended. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/es.md b/comfyui_embedded_docs/docs/AddTextSuffix/es.md index e89ccc0fc..1364a112e 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/es.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/es.md @@ -13,4 +13,4 @@ Este nodo añade un sufijo especificado al final de una cadena de texto de entra | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto resultante después de haber añadido el sufijo. | \ No newline at end of file +| `text` | STRING | El texto resultante después de haber añadido el sufijo. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/fr.md b/comfyui_embedded_docs/docs/AddTextSuffix/fr.md index 6ef4ccc64..167ddb67d 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/fr.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/fr.md @@ -13,4 +13,4 @@ Ce nœud ajoute un suffixe spécifié à la fin d'une chaîne de texte d'entrée | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte résultant après l'ajout du suffixe. | \ No newline at end of file +| `text` | STRING | Le texte résultant après l'ajout du suffixe. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/ja.md b/comfyui_embedded_docs/docs/AddTextSuffix/ja.md index 17d8a2864..0a3b5905f 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/ja.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/ja.md @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | 接尾辞が追加された後の結果のテキストです。 | \ No newline at end of file +| `text` | STRING | 接尾辞が追加された後の結果のテキストです。 | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/ko.md b/comfyui_embedded_docs/docs/AddTextSuffix/ko.md index 8f7aff74a..632ac7fbf 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/ko.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | 접미사가 추가된 후의 결과 텍스트입니다. | \ No newline at end of file +| `text` | STRING | 접미사가 추가된 후의 결과 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/pt-BR.md b/comfyui_embedded_docs/docs/AddTextSuffix/pt-BR.md index 2a1599f6e..b9242f433 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/pt-BR.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/pt-BR.md @@ -13,4 +13,4 @@ Este nó adiciona um sufixo especificado ao final de uma string de texto de entr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto resultante após a adição do sufixo. | \ No newline at end of file +| `text` | STRING | O texto resultante após a adição do sufixo. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/ru.md b/comfyui_embedded_docs/docs/AddTextSuffix/ru.md index b739bd666..569a55b61 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/ru.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Полученный текст после добавления суффикса. | \ No newline at end of file +| `text` | STRING | Полученный текст после добавления суффикса. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/tr.md b/comfyui_embedded_docs/docs/AddTextSuffix/tr.md index 4d9f32917..c076900ac 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/tr.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/tr.md @@ -13,4 +13,4 @@ Bu düğüm, belirtilen bir soneki giriş metin dizisinin sonuna ekler. Orijinal | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | Sonek eklendikten sonra ortaya çıkan metin. | \ No newline at end of file +| `text` | STRING | Sonek eklendikten sonra ortaya çıkan metin. | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/zh-TW.md b/comfyui_embedded_docs/docs/AddTextSuffix/zh-TW.md index 33268d3a5..805e946d2 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/zh-TW.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 附加後綴後產生的文字結果。 | \ No newline at end of file +| `text` | STRING | 附加後綴後產生的文字結果。 | diff --git a/comfyui_embedded_docs/docs/AddTextSuffix/zh.md b/comfyui_embedded_docs/docs/AddTextSuffix/zh.md index c403e00cc..88cae994e 100644 --- a/comfyui_embedded_docs/docs/AddTextSuffix/zh.md +++ b/comfyui_embedded_docs/docs/AddTextSuffix/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 后缀追加后得到的最终文本。 | \ No newline at end of file +| `text` | STRING | 后缀追加后得到的最终文本。 | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/ar.md b/comfyui_embedded_docs/docs/AdjustBrightness/ar.md index 8af3ef489..2d0e81f6c 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/ar.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد تعديل السطوع. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد تعديل السطوع. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/en.md b/comfyui_embedded_docs/docs/AdjustBrightness/en.md index 9e9fbc111..64c15d5a9 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/en.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/en.md @@ -13,4 +13,4 @@ The Adjust Brightness node modifies the brightness of an input image. It works b | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The output image with adjusted brightness. | \ No newline at end of file +| `image` | IMAGE | The output image with adjusted brightness. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/es.md b/comfyui_embedded_docs/docs/AdjustBrightness/es.md index 6038defa3..9e44843e7 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/es.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/es.md @@ -13,4 +13,4 @@ El nodo Ajustar Brillo modifica el brillo de una imagen de entrada. Funciona mul | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen de salida con el brillo ajustado. | \ No newline at end of file +| `image` | IMAGE | La imagen de salida con el brillo ajustado. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/fr.md b/comfyui_embedded_docs/docs/AdjustBrightness/fr.md index 79abe0996..e36bbef72 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/fr.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/fr.md @@ -13,4 +13,4 @@ Le nœud Adjust Brightness modifie la luminosité d'une image d'entrée. Il fonc | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image de sortie avec la luminosité ajustée. | \ No newline at end of file +| `image` | IMAGE | L'image de sortie avec la luminosité ajustée. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/ja.md b/comfyui_embedded_docs/docs/AdjustBrightness/ja.md index e8e9bce83..3a2d51b67 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/ja.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/ja.md @@ -13,4 +13,4 @@ Adjust Brightnessノードは、入力画像の明るさを調整します。各 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | 明るさが調整された出力画像。 | \ No newline at end of file +| `image` | IMAGE | 明るさが調整された出力画像。 | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/ko.md b/comfyui_embedded_docs/docs/AdjustBrightness/ko.md index c768dd082..2829f5398 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/ko.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/ko.md @@ -13,4 +13,4 @@ Adjust Brightness 노드는 입력 이미지의 밝기를 조정합니다. 각 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 밝기가 조정된 출력 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 밝기가 조정된 출력 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/pt-BR.md b/comfyui_embedded_docs/docs/AdjustBrightness/pt-BR.md index d8d130c64..e700490a0 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/pt-BR.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/pt-BR.md @@ -13,4 +13,4 @@ O nó Ajustar Brilho modifica o brilho de uma imagem de entrada. Ele funciona mu | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída com o brilho ajustado. | \ No newline at end of file +| `image` | IMAGE | A imagem de saída com o brilho ajustado. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/ru.md b/comfyui_embedded_docs/docs/AdjustBrightness/ru.md index 813d3e935..5aacf5480 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/ru.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Выходное изображение с откорректированной яркостью. | \ No newline at end of file +| `image` | IMAGE | Выходное изображение с откорректированной яркостью. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/tr.md b/comfyui_embedded_docs/docs/AdjustBrightness/tr.md index 24c9add13..8703e4b3d 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/tr.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/tr.md @@ -13,4 +13,4 @@ Adjust Brightness düğümü, bir giriş görüntüsünün parlaklığını değ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Parlaklığı ayarlanmış çıkış görüntüsü. | \ No newline at end of file +| `image` | IMAGE | Parlaklığı ayarlanmış çıkış görüntüsü. | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/zh-TW.md b/comfyui_embedded_docs/docs/AdjustBrightness/zh-TW.md index 1af675e07..347222b57 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/zh-TW.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 亮度調整後的輸出圖像。 | \ No newline at end of file +| `image` | IMAGE | 亮度調整後的輸出圖像。 | diff --git a/comfyui_embedded_docs/docs/AdjustBrightness/zh.md b/comfyui_embedded_docs/docs/AdjustBrightness/zh.md index 12fe2bf46..c96770716 100644 --- a/comfyui_embedded_docs/docs/AdjustBrightness/zh.md +++ b/comfyui_embedded_docs/docs/AdjustBrightness/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 调整亮度后的输出图像。 | \ No newline at end of file +| `image` | IMAGE | 调整亮度后的输出图像。 | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/ar.md b/comfyui_embedded_docs/docs/AdjustContrast/ar.md index 656c42654..cef94fb09 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/ar.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد تعديل التباين. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد تعديل التباين. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/en.md b/comfyui_embedded_docs/docs/AdjustContrast/en.md index 883b837f2..e27e694dd 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/en.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/en.md @@ -13,4 +13,4 @@ The Adjust Contrast node modifies the contrast level of an input image. It works | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resulting image with adjusted contrast. | \ No newline at end of file +| `image` | IMAGE | The resulting image with adjusted contrast. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/es.md b/comfyui_embedded_docs/docs/AdjustContrast/es.md index 1d0940de5..3b5caa3f9 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/es.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/es.md @@ -13,4 +13,4 @@ El nodo Ajustar Contraste modifica el nivel de contraste de una imagen de entrad | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen resultante con el contraste ajustado. | \ No newline at end of file +| `image` | IMAGE | La imagen resultante con el contraste ajustado. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/fr.md b/comfyui_embedded_docs/docs/AdjustContrast/fr.md index d2a24be5d..128774c00 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/fr.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/fr.md @@ -13,4 +13,4 @@ Le nœud Adjust Contrast modifie le niveau de contraste d'une image d'entrée. I | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image résultante avec le contraste ajusté. | \ No newline at end of file +| `image` | IMAGE | L'image résultante avec le contraste ajusté. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/ja.md b/comfyui_embedded_docs/docs/AdjustContrast/ja.md index 08453473d..377e5bcce 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/ja.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/ja.md @@ -13,4 +13,4 @@ Adjust Contrastノードは、入力画像のコントラストレベルを調 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | コントラストが調整された結果の画像です。 | \ No newline at end of file +| `image` | IMAGE | コントラストが調整された結果の画像です。 | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/ko.md b/comfyui_embedded_docs/docs/AdjustContrast/ko.md index c0115168f..041782a43 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/ko.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/ko.md @@ -13,4 +13,4 @@ Adjust Contrast 노드는 입력 이미지의 대비 수준을 조정합니다. | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 대비가 조정된 결과 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 대비가 조정된 결과 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/pt-BR.md b/comfyui_embedded_docs/docs/AdjustContrast/pt-BR.md index 00dc13109..c6b52da11 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/pt-BR.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/pt-BR.md @@ -13,4 +13,4 @@ O nó Adjust Contrast modifica o nível de contraste de uma imagem de entrada. E | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem resultante com o contraste ajustado. | \ No newline at end of file +| `image` | IMAGE | A imagem resultante com o contraste ajustado. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/ru.md b/comfyui_embedded_docs/docs/AdjustContrast/ru.md index 0d33408f5..232e4da2d 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/ru.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Результирующее изображение с изменённой контрастностью. | \ No newline at end of file +| `image` | IMAGE | Результирующее изображение с изменённой контрастностью. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/tr.md b/comfyui_embedded_docs/docs/AdjustContrast/tr.md index 5e242adfa..89d58d722 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/tr.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/tr.md @@ -13,4 +13,4 @@ Adjust Contrast düğümü, bir giriş görüntüsünün kontrast seviyesini de | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Kontrastı ayarlanmış sonuç görüntüsü. | \ No newline at end of file +| `image` | IMAGE | Kontrastı ayarlanmış sonuç görüntüsü. | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/zh-TW.md b/comfyui_embedded_docs/docs/AdjustContrast/zh-TW.md index 6685ef9dd..a41263322 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/zh-TW.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 調整對比度後的結果圖像。 | \ No newline at end of file +| `image` | IMAGE | 調整對比度後的結果圖像。 | diff --git a/comfyui_embedded_docs/docs/AdjustContrast/zh.md b/comfyui_embedded_docs/docs/AdjustContrast/zh.md index c65820909..ef7aeea35 100644 --- a/comfyui_embedded_docs/docs/AdjustContrast/zh.md +++ b/comfyui_embedded_docs/docs/AdjustContrast/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 调整对比度后的结果图像。 | \ No newline at end of file +| `image` | IMAGE | 调整对比度后的结果图像。 | diff --git a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/ar.md b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/ar.md index 1137418c0..3ff5ac08b 100644 --- a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/ar.md +++ b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | يُرجع قيم سيجما المحسوبة لعملية إزالة الضوضاء | \ No newline at end of file +| `sigmas` | SIGMAS | يُرجع قيم سيجما المحسوبة لعملية إزالة الضوضاء | diff --git a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/pt-BR.md b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/pt-BR.md index 07bf639d0..0a7282a70 100644 --- a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/pt-BR.md @@ -14,4 +14,4 @@ O nó AlignYourStepsScheduler gera valores sigma para o processo de remoção de | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Retorna os valores sigma calculados para o processo de remoção de ruído | \ No newline at end of file +| `sigmas` | SIGMAS | Retorna os valores sigma calculados para o processo de remoção de ruído | diff --git a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/tr.md b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/tr.md index 7fe67439a..b28cb4c8d 100644 --- a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/tr.md +++ b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/tr.md @@ -14,4 +14,4 @@ AlignYourStepsScheduler düğümü, farklı model türlerine dayalı olarak gür | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Gürültü giderme işlemi için hesaplanan sigma değerlerini döndürür | \ No newline at end of file +| `sigmas` | SIGMAS | Gürültü giderme işlemi için hesaplanan sigma değerlerini döndürür | diff --git a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/zh-TW.md b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/zh-TW.md index 5e91b81d6..bc571392d 100644 --- a/comfyui_embedded_docs/docs/AlignYourStepsScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/AlignYourStepsScheduler/zh-TW.md @@ -14,4 +14,4 @@ AlignYourStepsScheduler 節點根據不同的模型類型生成去噪過程所 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 返回為去噪過程計算出的 sigma 值 | \ No newline at end of file +| `sigmas` | SIGMAS | 返回為去噪過程計算出的 sigma 值 | diff --git a/comfyui_embedded_docs/docs/AudioAdjustVolume/ar.md b/comfyui_embedded_docs/docs/AudioAdjustVolume/ar.md index 5270d6818..20d2be768 100644 --- a/comfyui_embedded_docs/docs/AudioAdjustVolume/ar.md +++ b/comfyui_embedded_docs/docs/AudioAdjustVolume/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|------------------------------------------| -| `audio` | AUDIO | الصوت المُعالج بعد تعديل مستوى الصوت | \ No newline at end of file +| `audio` | AUDIO | الصوت المُعالج بعد تعديل مستوى الصوت | diff --git a/comfyui_embedded_docs/docs/AudioAdjustVolume/pt-BR.md b/comfyui_embedded_docs/docs/AudioAdjustVolume/pt-BR.md index a3e7f0cbb..79f4994e8 100644 --- a/comfyui_embedded_docs/docs/AudioAdjustVolume/pt-BR.md +++ b/comfyui_embedded_docs/docs/AudioAdjustVolume/pt-BR.md @@ -13,4 +13,4 @@ O nó AudioAdjustVolume modifica a intensidade sonora do áudio aplicando ajuste | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `audio` | AUDIO | O áudio processado com o nível de volume ajustado | \ No newline at end of file +| `audio` | AUDIO | O áudio processado com o nível de volume ajustado | diff --git a/comfyui_embedded_docs/docs/AudioAdjustVolume/tr.md b/comfyui_embedded_docs/docs/AudioAdjustVolume/tr.md index a20b71ee0..99c7cc689 100644 --- a/comfyui_embedded_docs/docs/AudioAdjustVolume/tr.md +++ b/comfyui_embedded_docs/docs/AudioAdjustVolume/tr.md @@ -13,4 +13,4 @@ AudioAdjustVolume düğümü, desibel cinsinden ses ayarlamaları uygulayarak se | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `audio` | AUDIO | Ses seviyesi ayarlanmış olarak işlenmiş ses | \ No newline at end of file +| `audio` | AUDIO | Ses seviyesi ayarlanmış olarak işlenmiş ses | diff --git a/comfyui_embedded_docs/docs/AudioAdjustVolume/zh-TW.md b/comfyui_embedded_docs/docs/AudioAdjustVolume/zh-TW.md index 01972607a..ac51aeb3d 100644 --- a/comfyui_embedded_docs/docs/AudioAdjustVolume/zh-TW.md +++ b/comfyui_embedded_docs/docs/AudioAdjustVolume/zh-TW.md @@ -15,4 +15,4 @@ AudioAdjustVolume 節點透過以分貝為單位進行音量調整來修改音 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `audio` | AUDIO | 經過音量調整處理後的音訊 | \ No newline at end of file +| `audio` | AUDIO | 經過音量調整處理後的音訊 | diff --git a/comfyui_embedded_docs/docs/AudioConcat/ar.md b/comfyui_embedded_docs/docs/AudioConcat/ar.md index 2a06d3530..59355b082 100644 --- a/comfyui_embedded_docs/docs/AudioConcat/ar.md +++ b/comfyui_embedded_docs/docs/AudioConcat/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | الصوت المدمج الذي يحتوي على كلا الملفين الصوتيين المدخلين والمتصلين معًا | \ No newline at end of file +| `AUDIO` | AUDIO | الصوت المدمج الذي يحتوي على كلا الملفين الصوتيين المدخلين والمتصلين معًا | diff --git a/comfyui_embedded_docs/docs/AudioConcat/pt-BR.md b/comfyui_embedded_docs/docs/AudioConcat/pt-BR.md index 468ed5579..41bf5c18f 100644 --- a/comfyui_embedded_docs/docs/AudioConcat/pt-BR.md +++ b/comfyui_embedded_docs/docs/AudioConcat/pt-BR.md @@ -14,4 +14,4 @@ O nó AudioConcat combina duas entradas de áudio juntando-as. Ele recebe duas e | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | O áudio combinado contendo ambos os arquivos de áudio de entrada unidos | \ No newline at end of file +| `AUDIO` | AUDIO | O áudio combinado contendo ambos os arquivos de áudio de entrada unidos | diff --git a/comfyui_embedded_docs/docs/AudioConcat/tr.md b/comfyui_embedded_docs/docs/AudioConcat/tr.md index 97d4a5c38..179fd4217 100644 --- a/comfyui_embedded_docs/docs/AudioConcat/tr.md +++ b/comfyui_embedded_docs/docs/AudioConcat/tr.md @@ -14,4 +14,4 @@ AudioConcat düğümü, iki ses girişini birleştirerek birleştirir. İki ses | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Her iki giriş ses dosyasının birleştirilmiş halini içeren ses | \ No newline at end of file +| `AUDIO` | AUDIO | Her iki giriş ses dosyasının birleştirilmiş halini içeren ses | diff --git a/comfyui_embedded_docs/docs/AudioConcat/zh-TW.md b/comfyui_embedded_docs/docs/AudioConcat/zh-TW.md index a53237ce2..605915ad9 100644 --- a/comfyui_embedded_docs/docs/AudioConcat/zh-TW.md +++ b/comfyui_embedded_docs/docs/AudioConcat/zh-TW.md @@ -14,4 +14,4 @@ AudioConcat 節點透過拼接方式將兩個音訊輸入組合在一起。它 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 包含兩個輸入音訊檔案拼接後的組合音訊 | \ No newline at end of file +| `AUDIO` | AUDIO | 包含兩個輸入音訊檔案拼接後的組合音訊 | diff --git a/comfyui_embedded_docs/docs/AudioEncoderEncode/ar.md b/comfyui_embedded_docs/docs/AudioEncoderEncode/ar.md index bef7e8402..7d024a8b7 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderEncode/ar.md +++ b/comfyui_embedded_docs/docs/AudioEncoderEncode/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `output` | AUDIO_ENCODER_OUTPUT | التمثيل الصوتي المُشفر الناتج عن المُشفر الصوتي | \ No newline at end of file +| `output` | AUDIO_ENCODER_OUTPUT | التمثيل الصوتي المُشفر الناتج عن المُشفر الصوتي | diff --git a/comfyui_embedded_docs/docs/AudioEncoderEncode/pt-BR.md b/comfyui_embedded_docs/docs/AudioEncoderEncode/pt-BR.md index 2a4a579f7..4ecaf301b 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/AudioEncoderEncode/pt-BR.md @@ -13,4 +13,4 @@ O nó AudioEncoderEncode processa dados de áudio codificando-os usando um model | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | AUDIO_ENCODER_OUTPUT | A representação de áudio codificada gerada pelo codificador de áudio | \ No newline at end of file +| `output` | AUDIO_ENCODER_OUTPUT | A representação de áudio codificada gerada pelo codificador de áudio | diff --git a/comfyui_embedded_docs/docs/AudioEncoderEncode/tr.md b/comfyui_embedded_docs/docs/AudioEncoderEncode/tr.md index cfa0a9041..de034a8fc 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderEncode/tr.md +++ b/comfyui_embedded_docs/docs/AudioEncoderEncode/tr.md @@ -13,4 +13,4 @@ AudioEncoderEncode düğümü, ses verilerini bir ses kodlayıcı modeli kullana | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | AUDIO_ENCODER_OUTPUT | Ses kodlayıcı tarafından oluşturulan kodlanmış ses temsili | \ No newline at end of file +| `output` | AUDIO_ENCODER_OUTPUT | Ses kodlayıcı tarafından oluşturulan kodlanmış ses temsili | diff --git a/comfyui_embedded_docs/docs/AudioEncoderEncode/zh-TW.md b/comfyui_embedded_docs/docs/AudioEncoderEncode/zh-TW.md index 44a53c204..1db9e5a8f 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/AudioEncoderEncode/zh-TW.md @@ -13,4 +13,4 @@ AudioEncoderEncode 節點透過使用音訊編碼器模型對音訊資料進行 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | AUDIO_ENCODER_OUTPUT | 由音訊編碼器生成的編碼音訊表示 | \ No newline at end of file +| `output` | AUDIO_ENCODER_OUTPUT | 由音訊編碼器生成的編碼音訊表示 | diff --git a/comfyui_embedded_docs/docs/AudioEncoderLoader/ar.md b/comfyui_embedded_docs/docs/AudioEncoderLoader/ar.md index 84d53c36d..8a6a943ee 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderLoader/ar.md +++ b/comfyui_embedded_docs/docs/AudioEncoderLoader/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `audio_encoder` | AUDIO_ENCODER | يُرجع نموذج تشفير الصوت المحمّل لاستخدامه في سير عمل معالجة الصوت | \ No newline at end of file +| `audio_encoder` | AUDIO_ENCODER | يُرجع نموذج تشفير الصوت المحمّل لاستخدامه في سير عمل معالجة الصوت | diff --git a/comfyui_embedded_docs/docs/AudioEncoderLoader/pt-BR.md b/comfyui_embedded_docs/docs/AudioEncoderLoader/pt-BR.md index 1ba679b20..1d85808cc 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/AudioEncoderLoader/pt-BR.md @@ -12,4 +12,4 @@ O nó AudioEncoderLoader carrega modelos de codificador de áudio a partir dos s | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `audio_encoder` | AUDIO_ENCODER | Retorna o modelo de codificador de áudio carregado para uso em fluxos de trabalho de processamento de áudio | \ No newline at end of file +| `audio_encoder` | AUDIO_ENCODER | Retorna o modelo de codificador de áudio carregado para uso em fluxos de trabalho de processamento de áudio | diff --git a/comfyui_embedded_docs/docs/AudioEncoderLoader/tr.md b/comfyui_embedded_docs/docs/AudioEncoderLoader/tr.md index 62b48554f..dffa992e5 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderLoader/tr.md +++ b/comfyui_embedded_docs/docs/AudioEncoderLoader/tr.md @@ -12,4 +12,4 @@ AudioEncoderLoader düğümü, mevcut ses kodlayıcı dosyalarınızdan ses kodl | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `audio_encoder` | AUDIO_ENCODER | Ses işleme iş akışlarında kullanılmak üzere yüklenmiş ses kodlayıcı modelini döndürür | \ No newline at end of file +| `audio_encoder` | AUDIO_ENCODER | Ses işleme iş akışlarında kullanılmak üzere yüklenmiş ses kodlayıcı modelini döndürür | diff --git a/comfyui_embedded_docs/docs/AudioEncoderLoader/zh-TW.md b/comfyui_embedded_docs/docs/AudioEncoderLoader/zh-TW.md index 36986b789..5d93b713b 100644 --- a/comfyui_embedded_docs/docs/AudioEncoderLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/AudioEncoderLoader/zh-TW.md @@ -12,4 +12,4 @@ AudioEncoderLoader 節點會從您可用的音訊編碼器檔案中載入音訊 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `audio_encoder` | AUDIO_ENCODER | 返回已載入的音訊編碼器模型,供音訊處理工作流程使用 | \ No newline at end of file +| `audio_encoder` | AUDIO_ENCODER | 返回已載入的音訊編碼器模型,供音訊處理工作流程使用 | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/ar.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ar.md new file mode 100644 index 000000000..2b653de08 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ar.md @@ -0,0 +1,24 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/ar.md) + +يسمح عقد معادل الصوت (3 نطاقات) بضبط ترددات الجهير والمتوسط والحاد في الموجة الصوتية. يطبق ثلاثة مرشحات منفصلة: رف منخفض للجهير، ومرشح ذروة للمتوسط، ورف عالٍ للحاد. يمكن التحكم في كل نطاق بشكل مستقل بإعدادات الكسب والتردد وعرض النطاق. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | نعم | - | بيانات الصوت المدخلة التي تحتوي على الموجة ومعدل العينة. | +| `low_gain_dB` | FLOAT | لا | -24.0 إلى 24.0 | كسب الترددات المنخفضة (الجهير). القيم الموجبة تعزز، والقيم السالبة تقلل. (الافتراضي: 0.0) | +| `low_freq` | INT | لا | 20 إلى 500 | تردد القطع لمرشح الرف المنخفض بوحدة الهيرتز (هرتز). (الافتراضي: 100) | +| `mid_gain_dB` | FLOAT | لا | -24.0 إلى 24.0 | كسب الترددات المتوسطة. القيم الموجبة تعزز، والقيم السالبة تقلل. (الافتراضي: 0.0) | +| `mid_freq` | INT | لا | 200 إلى 4000 | التردد المركزي لمرشح الذروة المتوسط بوحدة الهيرتز (هرتز). (الافتراضي: 1000) | +| `mid_q` | FLOAT | لا | 0.1 إلى 10.0 | عامل Q (عرض النطاق) لمرشح الذروة المتوسط. القيم الأقل تُنشئ نطاقًا أوسع، والقيم الأعلى تُنشئ نطاقًا أضيق. (الافتراضي: 0.707) | +| `high_gain_dB` | FLOAT | لا | -24.0 إلى 24.0 | كسب الترددات العالية (الحاد). القيم الموجبة تعزز، والقيم السالبة تقلل. (الافتراضي: 0.0) | +| `high_freq` | INT | لا | 1000 إلى 15000 | تردد القطع لمرشح الرف العالي بوحدة الهيرتز (هرتز). (الافتراضي: 5000) | + +**ملاحظة:** يتم تطبيق معاملات `low_gain_dB` و `mid_gain_dB` و `high_gain_dB` فقط عندما لا تكون قيمتها صفرًا. إذا تم ضبط الكسب على 0.0، يتم تخطي مرحلة المرشح المقابلة. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | بيانات الصوت المعالجة بعد تطبيق المعادلة، وتحتوي على الموجة المعدلة ومعدل العينة الأصلي. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/en.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/en.md new file mode 100644 index 000000000..61f94d3f0 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/en.md @@ -0,0 +1,24 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/en.md) + +The Audio Equalizer (3-Band) node allows you to adjust the bass, mid, and treble frequencies of an audio waveform. It applies three separate filters: a low shelf for bass, a peaking filter for mids, and a high shelf for treble. Each band can be independently controlled with gain, frequency, and bandwidth settings. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Yes | - | The input audio data containing the waveform and sample rate. | +| `low_gain_dB` | FLOAT | No | -24.0 to 24.0 | Gain for Low frequencies (Bass). Positive values boost, negative values cut. (default: 0.0) | +| `low_freq` | INT | No | 20 to 500 | Cutoff frequency for Low shelf filter in Hertz (Hz). (default: 100) | +| `mid_gain_dB` | FLOAT | No | -24.0 to 24.0 | Gain for Mid frequencies. Positive values boost, negative values cut. (default: 0.0) | +| `mid_freq` | INT | No | 200 to 4000 | Center frequency for the Mid peaking filter in Hertz (Hz). (default: 1000) | +| `mid_q` | FLOAT | No | 0.1 to 10.0 | Q factor (bandwidth) for the Mid peaking filter. Lower values create a wider band, higher values create a narrower band. (default: 0.707) | +| `high_gain_dB` | FLOAT | No | -24.0 to 24.0 | Gain for High frequencies (Treble). Positive values boost, negative values cut. (default: 0.0) | +| `high_freq` | INT | No | 1000 to 15000 | Cutoff frequency for High shelf filter in Hertz (Hz). (default: 5000) | + +**Note:** The `low_gain_dB`, `mid_gain_dB`, and `high_gain_dB` parameters are only applied when their value is not zero. If a gain is set to 0.0, the corresponding filter stage is skipped. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The processed audio data with the equalization applied, containing the modified waveform and the original sample rate. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/es.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/es.md new file mode 100644 index 000000000..92f5ca31b --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/es.md @@ -0,0 +1,24 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/es.md) + +El nodo Ecualizador de Audio (3 Bandas) permite ajustar las frecuencias graves, medias y agudas de una forma de onda de audio. Aplica tres filtros separados: un filtro de estante bajo para los graves, un filtro de pico para los medios y un filtro de estante alto para los agudos. Cada banda puede controlarse de forma independiente con ajustes de ganancia, frecuencia y ancho de banda. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sí | - | Los datos de audio de entrada que contienen la forma de onda y la frecuencia de muestreo. | +| `low_gain_dB` | FLOAT | No | -24.0 a 24.0 | Ganancia para las frecuencias bajas (Graves). Los valores positivos realzan, los valores negativos atenúan. (por defecto: 0.0) | +| `low_freq` | INT | No | 20 a 500 | Frecuencia de corte para el filtro de estante bajo en Hertz (Hz). (por defecto: 100) | +| `mid_gain_dB` | FLOAT | No | -24.0 a 24.0 | Ganancia para las frecuencias medias. Los valores positivos realzan, los valores negativos atenúan. (por defecto: 0.0) | +| `mid_freq` | INT | No | 200 a 4000 | Frecuencia central para el filtro de pico de medios en Hertz (Hz). (por defecto: 1000) | +| `mid_q` | FLOAT | No | 0.1 a 10.0 | Factor Q (ancho de banda) para el filtro de pico de medios. Valores más bajos crean una banda más ancha, valores más altos crean una banda más estrecha. (por defecto: 0.707) | +| `high_gain_dB` | FLOAT | No | -24.0 a 24.0 | Ganancia para las frecuencias altas (Agudos). Los valores positivos realzan, los valores negativos atenúan. (por defecto: 0.0) | +| `high_freq` | INT | No | 1000 a 15000 | Frecuencia de corte para el filtro de estante alto en Hertz (Hz). (por defecto: 5000) | + +**Nota:** Los parámetros `low_gain_dB`, `mid_gain_dB` y `high_gain_dB` solo se aplican cuando su valor no es cero. Si una ganancia se establece en 0.0, se omite la etapa de filtro correspondiente. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | Los datos de audio procesados con la ecualización aplicada, que contienen la forma de onda modificada y la frecuencia de muestreo original. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/fr.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/fr.md new file mode 100644 index 000000000..9ae48e855 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/fr.md @@ -0,0 +1,24 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/fr.md) + +Le nœud Égaliseur Audio (3 bandes) permet d'ajuster les fréquences graves, médiums et aiguës d'une forme d'onde audio. Il applique trois filtres distincts : un filtre en plateau (shelf) pour les graves, un filtre en cloche (peaking) pour les médiums et un filtre en plateau pour les aigus. Chaque bande peut être contrôlée indépendamment avec des réglages de gain, de fréquence et de largeur de bande. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Oui | - | Les données audio d'entrée contenant la forme d'onde et la fréquence d'échantillonnage. | +| `low_gain_dB` | FLOAT | Non | -24.0 à 24.0 | Gain pour les basses fréquences (Graves). Les valeurs positives amplifient, les valeurs négatives atténuent. (par défaut : 0.0) | +| `low_freq` | INT | Non | 20 à 500 | Fréquence de coupure pour le filtre en plateau des basses, en Hertz (Hz). (par défaut : 100) | +| `mid_gain_dB` | FLOAT | Non | -24.0 à 24.0 | Gain pour les fréquences médiums. Les valeurs positives amplifient, les valeurs négatives atténuent. (par défaut : 0.0) | +| `mid_freq` | INT | Non | 200 à 4000 | Fréquence centrale pour le filtre en cloche des médiums, en Hertz (Hz). (par défaut : 1000) | +| `mid_q` | FLOAT | Non | 0.1 à 10.0 | Facteur Q (largeur de bande) pour le filtre en cloche des médiums. Des valeurs plus basses créent une bande plus large, des valeurs plus hautes créent une bande plus étroite. (par défaut : 0.707) | +| `high_gain_dB` | FLOAT | Non | -24.0 à 24.0 | Gain pour les hautes fréquences (Aigus). Les valeurs positives amplifient, les valeurs négatives atténuent. (par défaut : 0.0) | +| `high_freq` | INT | Non | 1000 à 15000 | Fréquence de coupure pour le filtre en plateau des aigus, en Hertz (Hz). (par défaut : 5000) | + +**Note :** Les paramètres `low_gain_dB`, `mid_gain_dB` et `high_gain_dB` ne sont appliqués que lorsque leur valeur n'est pas zéro. Si un gain est réglé sur 0.0, l'étage de filtre correspondant est ignoré. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | Les données audio traitées avec l'égalisation appliquée, contenant la forme d'onde modifiée et la fréquence d'échantillonnage d'origine. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/ja.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ja.md new file mode 100644 index 000000000..85eb679f9 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ja.md @@ -0,0 +1,24 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/ja.md) + +Audio Equalizer (3-Band) ノードは、オーディオ波形の低音(ベース)、中音(ミッド)、高音(トレブル)の周波数を調整することができます。低音用のローシェルフフィルター、中音用のピーキングフィルター、高音用のハイシェルフフィルターという3つの独立したフィルターを適用します。各バンドは、ゲイン、周波数、帯域幅の設定で個別に制御できます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | はい | - | 波形とサンプルレートを含む入力オーディオデータ。 | +| `low_gain_dB` | FLOAT | いいえ | -24.0 から 24.0 | 低音域(ベース)のゲイン。正の値でブースト、負の値でカットします。(デフォルト: 0.0) | +| `low_freq` | INT | いいえ | 20 から 500 | ローシェルフフィルターのカットオフ周波数(単位: ヘルツ (Hz))。(デフォルト: 100) | +| `mid_gain_dB` | FLOAT | いいえ | -24.0 から 24.0 | 中音域のゲイン。正の値でブースト、負の値でカットします。(デフォルト: 0.0) | +| `mid_freq` | INT | いいえ | 200 から 4000 | 中音域用ピーキングフィルターの中心周波数(単位: ヘルツ (Hz))。(デフォルト: 1000) | +| `mid_q` | FLOAT | いいえ | 0.1 から 10.0 | 中音域用ピーキングフィルターのQ値(帯域幅)。値が低いほど広い帯域に、高いほど狭い帯域になります。(デフォルト: 0.707) | +| `high_gain_dB` | FLOAT | いいえ | -24.0 から 24.0 | 高音域(トレブル)のゲイン。正の値でブースト、負の値でカットします。(デフォルト: 0.0) | +| `high_freq` | INT | いいえ | 1000 から 15000 | ハイシェルフフィルターのカットオフ周波数(単位: ヘルツ (Hz))。(デフォルト: 5000) | + +**注意:** `low_gain_dB`、`mid_gain_dB`、`high_gain_dB` パラメータは、その値が0でない場合にのみ適用されます。ゲインが0.0に設定されている場合、対応するフィルター段はスキップされます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | イコライゼーションが適用された、処理済みのオーディオデータ。修正された波形と元のサンプルレートを含みます。 | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/ko.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ko.md new file mode 100644 index 000000000..33db76d7e --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ko.md @@ -0,0 +1,24 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/ko.md) + +Audio Equalizer (3-Band) 노드는 오디오 파형의 저음, 중음, 고음 주파수를 조정할 수 있게 해줍니다. 저음용 로우 셸프 필터, 중음용 피킹 필터, 고음용 하이 셸프 필터, 총 세 개의 개별 필터를 적용합니다. 각 밴드는 게인, 주파수, 대역폭 설정으로 독립적으로 제어할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 예 | - | 파형과 샘플 레이트를 포함하는 입력 오디오 데이터입니다. | +| `low_gain_dB` | FLOAT | 아니요 | -24.0 ~ 24.0 | 저주파수(저음)에 대한 게인입니다. 양수 값은 부스트, 음수 값은 커트합니다. (기본값: 0.0) | +| `low_freq` | INT | 아니요 | 20 ~ 500 | 로우 셸프 필터의 차단 주파수로, 단위는 헤르츠(Hz)입니다. (기본값: 100) | +| `mid_gain_dB` | FLOAT | 아니요 | -24.0 ~ 24.0 | 중주파수에 대한 게인입니다. 양수 값은 부스트, 음수 값은 커트합니다. (기본값: 0.0) | +| `mid_freq` | INT | 아니요 | 200 ~ 4000 | 중음 피킹 필터의 중심 주파수로, 단위는 헤르츠(Hz)입니다. (기본값: 1000) | +| `mid_q` | FLOAT | 아니요 | 0.1 ~ 10.0 | 중음 피킹 필터의 Q 인자(대역폭)입니다. 값이 낮을수록 더 넓은 대역을, 값이 높을수록 더 좁은 대역을 만듭니다. (기본값: 0.707) | +| `high_gain_dB` | FLOAT | 아니요 | -24.0 ~ 24.0 | 고주파수(고음)에 대한 게인입니다. 양수 값은 부스트, 음수 값은 커트합니다. (기본값: 0.0) | +| `high_freq` | INT | 아니요 | 1000 ~ 15000 | 하이 셸프 필터의 차단 주파수로, 단위는 헤르츠(Hz)입니다. (기본값: 5000) | + +**참고:** `low_gain_dB`, `mid_gain_dB`, `high_gain_dB` 매개변수는 해당 값이 0이 아닐 때만 적용됩니다. 게인이 0.0으로 설정되면 해당 필터 단계는 건너뜁니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 이퀄라이제이션이 적용된, 수정된 파형과 원본 샘플 레이트를 포함하는 처리된 오디오 데이터입니다. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/pt-BR.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/pt-BR.md new file mode 100644 index 000000000..cd1f1de21 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/pt-BR.md @@ -0,0 +1,24 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/pt-BR.md) + +O nó Audio Equalizer (3-Band) permite ajustar as frequências de graves, médios e agudos de uma forma de onda de áudio. Ele aplica três filtros separados: uma prateleira baixa (low shelf) para os graves, um filtro de pico (peaking) para os médios e uma prateleira alta (high shelf) para os agudos. Cada banda pode ser controlada independentemente com configurações de ganho, frequência e largura de banda. + +## Entradas + +| Parâmetro | Tipo de Dado | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sim | - | Os dados de áudio de entrada contendo a forma de onda e a taxa de amostragem. | +| `low_gain_dB` | FLOAT | Não | -24.0 a 24.0 | Ganho para as frequências baixas (Graves). Valores positivos realçam, valores negativos atenuam. (padrão: 0.0) | +| `low_freq` | INT | Não | 20 a 500 | Frequência de corte para o filtro de prateleira baixa (Low shelf) em Hertz (Hz). (padrão: 100) | +| `mid_gain_dB` | FLOAT | Não | -24.0 a 24.0 | Ganho para as frequências médias. Valores positivos realçam, valores negativos atenuam. (padrão: 0.0) | +| `mid_freq` | INT | Não | 200 a 4000 | Frequência central para o filtro de pico (Mid peaking) em Hertz (Hz). (padrão: 1000) | +| `mid_q` | FLOAT | Não | 0.1 a 10.0 | Fator Q (largura de banda) para o filtro de pico (Mid peaking). Valores mais baixos criam uma banda mais larga, valores mais altos criam uma banda mais estreita. (padrão: 0.707) | +| `high_gain_dB` | FLOAT | Não | -24.0 a 24.0 | Ganho para as frequências altas (Agudos). Valores positivos realçam, valores negativos atenuam. (padrão: 0.0) | +| `high_freq` | INT | Não | 1000 a 15000 | Frequência de corte para o filtro de prateleira alta (High shelf) em Hertz (Hz). (padrão: 5000) | + +**Observação:** Os parâmetros `low_gain_dB`, `mid_gain_dB` e `high_gain_dB` só são aplicados quando seu valor não é zero. Se um ganho for definido como 0.0, o estágio do filtro correspondente é ignorado. + +## Saídas + +| Nome da Saída | Tipo de Dado | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | Os dados de áudio processados com a equalização aplicada, contendo a forma de onda modificada e a taxa de amostragem original. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/ru.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ru.md new file mode 100644 index 000000000..310cbb761 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/ru.md @@ -0,0 +1,24 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/ru.md) + +Узел Аудио Эквалайзер (3-полосный) позволяет регулировать низкие, средние и высокие частоты аудиоволны. Он применяет три отдельных фильтра: низкочастотный шельфовый фильтр для басов, полосовой (пиковый) фильтр для средних частот и высокочастотный шельфовый фильтр для высоких частот. Каждая полоса может управляться независимо с настройками усиления, частоты и ширины полосы. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Да | - | Входные аудиоданные, содержащие форму волны и частоту дискретизации. | +| `low_gain_dB` | FLOAT | Нет | -24.0 до 24.0 | Усиление для низких частот (басы). Положительные значения усиливают, отрицательные — ослабляют. (по умолчанию: 0.0) | +| `low_freq` | INT | Нет | 20 до 500 | Частота среза для низкочастотного шельфового фильтра в Герцах (Гц). (по умолчанию: 100) | +| `mid_gain_dB` | FLOAT | Нет | -24.0 до 24.0 | Усиление для средних частот. Положительные значения усиливают, отрицательные — ослабляют. (по умолчанию: 0.0) | +| `mid_freq` | INT | Нет | 200 до 4000 | Центральная частота для полосового (пикового) фильтра средних частот в Герцах (Гц). (по умолчанию: 1000) | +| `mid_q` | FLOAT | Нет | 0.1 до 10.0 | Q-фактор (ширина полосы) для полосового фильтра средних частот. Меньшие значения создают более широкую полосу, большие значения — более узкую. (по умолчанию: 0.707) | +| `high_gain_dB` | FLOAT | Нет | -24.0 до 24.0 | Усиление для высоких частот (высокие). Положительные значения усиливают, отрицательные — ослабляют. (по умолчанию: 0.0) | +| `high_freq` | INT | Нет | 1000 до 15000 | Частота среза для высокочастотного шельфового фильтра в Герцах (Гц). (по умолчанию: 5000) | + +**Примечание:** Параметры `low_gain_dB`, `mid_gain_dB` и `high_gain_dB` применяются только тогда, когда их значение не равно нулю. Если усиление установлено на 0.0, соответствующий каскад фильтрации пропускается. + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Обработанные аудиоданные с применённой эквализацией, содержащие модифицированную форму волны и исходную частоту дискретизации. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/tr.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/tr.md new file mode 100644 index 000000000..a18cf5dff --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/tr.md @@ -0,0 +1,24 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/tr.md) + +Ses Ekolayzır (3-Bant) düğümü, bir ses dalga formunun bas, orta ve tiz frekanslarını ayarlamanıza olanak tanır. Üç ayrı filtre uygular: bas için bir alçak raf filtresi, orta frekanslar için bir tepe filtresi ve tizler için bir yüksek raf filtresi. Her bant, kazanç, frekans ve bant genişliği ayarlarıyla bağımsız olarak kontrol edilebilir. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Evet | - | Dalga formunu ve örnekleme hızını içeren giriş ses verisi. | +| `low_gain_dB` | FLOAT | Hayır | -24.0 ile 24.0 | Düşük frekanslar (Bas) için kazanç. Pozitif değerler yükseltir, negatif değerler keser. (varsayılan: 0.0) | +| `low_freq` | INT | Hayır | 20 ile 500 | Alçak raf filtresi için kesim frekansı, Hertz (Hz) cinsinden. (varsayılan: 100) | +| `mid_gain_dB` | FLOAT | Hayır | -24.0 ile 24.0 | Orta frekanslar için kazanç. Pozitif değerler yükseltir, negatif değerler keser. (varsayılan: 0.0) | +| `mid_freq` | INT | Hayır | 200 ile 4000 | Orta tepe filtresi için merkez frekansı, Hertz (Hz) cinsinden. (varsayılan: 1000) | +| `mid_q` | FLOAT | Hayır | 0.1 ile 10.0 | Orta tepe filtresi için Q faktörü (bant genişliği). Düşük değerler daha geniş bir bant oluşturur, yüksek değerler daha dar bir bant oluşturur. (varsayılan: 0.707) | +| `high_gain_dB` | FLOAT | Hayır | -24.0 ile 24.0 | Yüksek frekanslar (Tiz) için kazanç. Pozitif değerler yükseltir, negatif değerler keser. (varsayılan: 0.0) | +| `high_freq` | INT | Hayır | 1000 ile 15000 | Yüksek raf filtresi için kesim frekansı, Hertz (Hz) cinsinden. (varsayılan: 5000) | + +**Not:** `low_gain_dB`, `mid_gain_dB` ve `high_gain_dB` parametreleri yalnızca değerleri sıfır olmadığında uygulanır. Bir kazanç 0.0 olarak ayarlanırsa, ilgili filtre aşaması atlanır. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Ekolayzır uygulanmış, değiştirilmiş dalga formunu ve orijinal örnekleme hızını içeren işlenmiş ses verisi. | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh-TW.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh-TW.md new file mode 100644 index 000000000..77eb7d954 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh-TW.md @@ -0,0 +1,24 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh-TW.md) + +音訊等化器(3 頻段)節點允許您調整音訊波形的低音、中音和高音頻率。它應用三個獨立的濾波器:用於低音的低架式濾波器、用於中音的峰值濾波器,以及用於高音的高架式濾波器。每個頻段都可以透過增益、頻率和頻寬設定獨立控制。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | - | 包含波形和取樣率的輸入音訊資料。 | +| `low_gain_dB` | FLOAT | 否 | -24.0 至 24.0 | 低頻(低音)增益。正值為提升,負值為衰減。(預設值:0.0) | +| `low_freq` | INT | 否 | 20 至 500 | 低架式濾波器的截止頻率,單位為赫茲 (Hz)。(預設值:100) | +| `mid_gain_dB` | FLOAT | 否 | -24.0 至 24.0 | 中頻增益。正值為提升,負值為衰減。(預設值:0.0) | +| `mid_freq` | INT | 否 | 200 至 4000 | 中頻峰值濾波器的中心頻率,單位為赫茲 (Hz)。(預設值:1000) | +| `mid_q` | FLOAT | 否 | 0.1 至 10.0 | 中頻峰值濾波器的 Q 因子(頻寬)。較低的值會產生較寬的頻帶,較高的值會產生較窄的頻帶。(預設值:0.707) | +| `high_gain_dB` | FLOAT | 否 | -24.0 至 24.0 | 高頻(高音)增益。正值為提升,負值為衰減。(預設值:0.0) | +| `high_freq` | INT | 否 | 1000 至 15000 | 高架式濾波器的截止頻率,單位為赫茲 (Hz)。(預設值:5000) | + +**注意:** 僅當 `low_gain_dB`、`mid_gain_dB` 和 `high_gain_dB` 參數的值不為零時才會套用。如果增益設定為 0.0,則會跳過對應的濾波器階段。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 已套用等化處理的音訊資料,包含修改後的波形和原始的取樣率。 | diff --git a/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh.md b/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh.md new file mode 100644 index 000000000..45e863b79 --- /dev/null +++ b/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh.md @@ -0,0 +1,24 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/AudioEqualizer3Band/zh.md) + +音频均衡器(3段)节点允许您调整音频波形的低频、中频和高频。它应用三个独立的滤波器:用于低频的低架滤波器、用于中频的峰值滤波器以及用于高频的高架滤波器。每个频段都可以通过增益、频率和带宽设置进行独立控制。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | - | 包含波形和采样率的输入音频数据。 | +| `low_gain_dB` | FLOAT | 否 | -24.0 到 24.0 | 低频(低音)增益。正值提升,负值削减。(默认值:0.0) | +| `low_freq` | INT | 否 | 20 到 500 | 低架滤波器的截止频率,单位为赫兹(Hz)。(默认值:100) | +| `mid_gain_dB` | FLOAT | 否 | -24.0 到 24.0 | 中频增益。正值提升,负值削减。(默认值:0.0) | +| `mid_freq` | INT | 否 | 200 到 4000 | 中频峰值滤波器的中心频率,单位为赫兹(Hz)。(默认值:1000) | +| `mid_q` | FLOAT | 否 | 0.1 到 10.0 | 中频峰值滤波器的 Q 因子(带宽)。值越低频带越宽,值越高频带越窄。(默认值:0.707) | +| `high_gain_dB` | FLOAT | 否 | -24.0 到 24.0 | 高频(高音)增益。正值提升,负值削减。(默认值:0.0) | +| `high_freq` | INT | 否 | 1000 到 15000 | 高架滤波器的截止频率,单位为赫兹(Hz)。(默认值:5000) | + +**注意:** 仅当 `low_gain_dB`、`mid_gain_dB` 和 `high_gain_dB` 参数的值不为零时,才会应用它们。如果增益设置为 0.0,则会跳过相应的滤波器阶段。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 应用了均衡处理后的音频数据,包含修改后的波形和原始采样率。 | diff --git a/comfyui_embedded_docs/docs/AudioMerge/ar.md b/comfyui_embedded_docs/docs/AudioMerge/ar.md index 35c11f002..b8e0b668d 100644 --- a/comfyui_embedded_docs/docs/AudioMerge/ar.md +++ b/comfyui_embedded_docs/docs/AudioMerge/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `AUDIO` | AUDIO | المخرج الصوتي المدمج الذي يحتوي على شكل الموجة المجمع ومعدل العينة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/AudioMerge/pt-BR.md b/comfyui_embedded_docs/docs/AudioMerge/pt-BR.md index e4a45f64c..9a7dcafe8 100644 --- a/comfyui_embedded_docs/docs/AudioMerge/pt-BR.md +++ b/comfyui_embedded_docs/docs/AudioMerge/pt-BR.md @@ -14,4 +14,4 @@ O nó AudioMerge combina duas faixas de áudio sobrepondo suas formas de onda. E | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | A saída de áudio mesclada contendo a forma de onda combinada e a taxa de amostragem | \ No newline at end of file +| `AUDIO` | AUDIO | A saída de áudio mesclada contendo a forma de onda combinada e a taxa de amostragem | diff --git a/comfyui_embedded_docs/docs/AudioMerge/tr.md b/comfyui_embedded_docs/docs/AudioMerge/tr.md index 29d9c4a9d..7ef2bcac0 100644 --- a/comfyui_embedded_docs/docs/AudioMerge/tr.md +++ b/comfyui_embedded_docs/docs/AudioMerge/tr.md @@ -14,4 +14,4 @@ AudioMerge düğümü, iki ses parçasını dalga formlarını üst üste bindir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Birleştirilmiş dalga formu ve örnekleme hızını içeren birleştirilmiş ses çıktısı | \ No newline at end of file +| `AUDIO` | AUDIO | Birleştirilmiş dalga formu ve örnekleme hızını içeren birleştirilmiş ses çıktısı | diff --git a/comfyui_embedded_docs/docs/AudioMerge/zh-TW.md b/comfyui_embedded_docs/docs/AudioMerge/zh-TW.md index 3bd3d2afc..e140eb400 100644 --- a/comfyui_embedded_docs/docs/AudioMerge/zh-TW.md +++ b/comfyui_embedded_docs/docs/AudioMerge/zh-TW.md @@ -14,4 +14,4 @@ AudioMerge 節點透過疊加波形的方式合併兩個音軌。它會自動匹 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 合併後的音頻輸出,包含組合後的波形和採樣率 | \ No newline at end of file +| `AUDIO` | AUDIO | 合併後的音頻輸出,包含組合後的波形和採樣率 | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ar.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ar.md index b383109a6..df9c598d3 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ar.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | سلسلة نصية واحدة تحتوي على القيم من جميع مدخلات الأرقام العشرية المقدمة، مجمعة معًا بفواصل. | \ No newline at end of file +| `output` | STRING | سلسلة نصية واحدة تحتوي على القيم من جميع مدخلات الأرقام العشرية المقدمة، مجمعة معًا بفواصل. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/en.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/en.md index cf16b8515..48ed96789 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/en.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/en.md @@ -14,4 +14,4 @@ This node is a test for the Autogrow input feature. It takes a dynamic number of | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | STRING | A single string containing the values from all provided float inputs, joined together with commas. | \ No newline at end of file +| `output` | STRING | A single string containing the values from all provided float inputs, joined together with commas. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/es.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/es.md index 7bb7062d3..97c5c5d1c 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/es.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/es.md @@ -14,4 +14,4 @@ Este nodo es una prueba para la función de entrada Autogrow. Toma un número di | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | STRING | Una única cadena que contiene los valores de todas las entradas FLOAT proporcionadas, unidos por comas. | \ No newline at end of file +| `output` | STRING | Una única cadena que contiene los valores de todas las entradas FLOAT proporcionadas, unidos por comas. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/fr.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/fr.md index c818dbc9b..b467d1d85 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/fr.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/fr.md @@ -14,4 +14,4 @@ Ce nœud est un test pour la fonctionnalité d'entrée Autogrow. Il accepte un n | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | STRING | Une chaîne de caractères unique contenant les valeurs de toutes les entrées FLOAT fournies, jointes par des virgules. | \ No newline at end of file +| `output` | STRING | Une chaîne de caractères unique contenant les valeurs de toutes les entrées FLOAT fournies, jointes par des virgules. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ja.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ja.md index ce856b726..8069a5924 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ja.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ja.md @@ -14,4 +14,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | STRING | 提供されたすべての浮動小数点入力からの値をカンマで結合した単一の文字列です。 | \ No newline at end of file +| `output` | STRING | 提供されたすべての浮動小数点入力からの値をカンマで結合した単一の文字列です。 | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ko.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ko.md index bf97ab72c..ac91f178e 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ko.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ko.md @@ -14,4 +14,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | STRING | 제공된 모든 부동 소수점 입력의 값을 쉼표로 연결하여 포함하는 단일 문자열입니다. | \ No newline at end of file +| `output` | STRING | 제공된 모든 부동 소수점 입력의 값을 쉼표로 연결하여 포함하는 단일 문자열입니다. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/pt-BR.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/pt-BR.md index 40851b94f..638a021d5 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/pt-BR.md @@ -14,4 +14,4 @@ Este nó é um teste para o recurso de entrada Autogrow. Ele aceita um número d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | STRING | Uma única string contendo os valores de todas as entradas FLOAT fornecidas, unidos por vírgulas. | \ No newline at end of file +| `output` | STRING | Uma única string contendo os valores de todas as entradas FLOAT fornecidas, unidos por vírgulas. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ru.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ru.md index 3bd96a0be..4bcc69bcc 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ru.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | STRING | Единая строка, содержащая значения всех предоставленных входов типа FLOAT, объединённые через запятую. | \ No newline at end of file +| `output` | STRING | Единая строка, содержащая значения всех предоставленных входов типа FLOAT, объединённые через запятую. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/tr.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/tr.md index ee794b8aa..70f3a733e 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/tr.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/tr.md @@ -14,4 +14,4 @@ Bu düğüm, Autogrow giriş özelliği için bir testtir. Belirli bir adla etik | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Sağlanan tüm float girişlerinden gelen değerlerin virgüllerle birleştirilmiş halini içeren tek bir dize. | \ No newline at end of file +| `output` | STRING | Sağlanan tüm float girişlerinden gelen değerlerin virgüllerle birleştirilmiş halini içeren tek bir dize. | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh-TW.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh-TW.md index 55ee100b9..11bb247f2 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 一個單一字串,包含所有提供的浮點數輸入的值,並以逗號連接在一起。 | \ No newline at end of file +| `output` | STRING | 一個單一字串,包含所有提供的浮點數輸入的值,並以逗號連接在一起。 | diff --git a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh.md b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh.md index 16bc84d7d..c35e02687 100644 --- a/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh.md +++ b/comfyui_embedded_docs/docs/AutogrowNamesTestNode/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 一个包含所有提供的浮点数输入值的字符串,这些值用逗号连接在一起。 | \ No newline at end of file +| `output` | STRING | 一个包含所有提供的浮点数输入值的字符串,这些值用逗号连接在一起。 | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ar.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ar.md index d52d6242f..d78765455 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ar.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | سلسلة نصية واحدة تحتوي على جميع قيم المدخلات الرقمية العشرية، مفصولة بفواصل. | \ No newline at end of file +| `output` | STRING | سلسلة نصية واحدة تحتوي على جميع قيم المدخلات الرقمية العشرية، مفصولة بفواصل. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/en.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/en.md index 38b1a4591..e8979a2db 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/en.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/en.md @@ -14,4 +14,4 @@ The AutogrowPrefixTestNode is a logic node designed to test the autogrow input f | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | STRING | A single string containing all the input float values, separated by commas. | \ No newline at end of file +| `output` | STRING | A single string containing all the input float values, separated by commas. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/es.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/es.md index 68672917f..3a8d4df98 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/es.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/es.md @@ -14,4 +14,4 @@ El AutogrowPrefixTestNode es un nodo lógico diseñado para probar la función d | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | STRING | Una única cadena que contiene todos los valores float de entrada, separados por comas. | \ No newline at end of file +| `output` | STRING | Una única cadena que contiene todos los valores float de entrada, separados por comas. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/fr.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/fr.md index 91b6bef2d..f4f893dee 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/fr.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/fr.md @@ -14,4 +14,4 @@ Le nœud AutogrowPrefixTestNode est un nœud logique conçu pour tester la fonct | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | STRING | Une chaîne de caractères unique contenant toutes les valeurs d'entrée de type float, séparées par des virgules. | \ No newline at end of file +| `output` | STRING | Une chaîne de caractères unique contenant toutes les valeurs d'entrée de type float, séparées par des virgules. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ja.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ja.md index 2c1348338..f94da063e 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ja.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ja.md @@ -14,4 +14,4 @@ AutogrowPrefixTestNodeは、自動拡張入力機能をテストするための | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | STRING | 入力されたすべての浮動小数点値をカンマで区切って含む単一の文字列です。 | \ No newline at end of file +| `output` | STRING | 入力されたすべての浮動小数点値をカンマで区切って含む単一の文字列です。 | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ko.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ko.md index ef92aa1ef..1cfad8184 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ko.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ko.md @@ -14,4 +14,4 @@ AutogrowPrefixTestNode는 자동 증가 입력 기능을 테스트하기 위해 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | STRING | 입력된 모든 부동 소수점 값을 쉼표로 구분하여 포함하는 단일 문자열입니다. | \ No newline at end of file +| `output` | STRING | 입력된 모든 부동 소수점 값을 쉼표로 구분하여 포함하는 단일 문자열입니다. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/pt-BR.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/pt-BR.md index 0b8ddeb2e..a66cb5bd0 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/pt-BR.md @@ -14,4 +14,4 @@ O AutogrowPrefixTestNode é um nó de lógica projetado para testar o recurso de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | Uma única string contendo todos os valores float de entrada, separados por vírgulas. | \ No newline at end of file +| `output` | STRING | Uma única string contendo todos os valores float de entrada, separados por vírgulas. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ru.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ru.md index 69a0d6a50..01fc903c7 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ru.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | STRING | Единая строка, содержащая все входные значения типа FLOAT, разделённые запятыми. | \ No newline at end of file +| `output` | STRING | Единая строка, содержащая все входные значения типа FLOAT, разделённые запятыми. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/tr.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/tr.md index 7c83bf552..ba89f5f10 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/tr.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/tr.md @@ -14,4 +14,4 @@ AutogrowPrefixTestNode, otomatik büyüyen giriş özelliğini test etmek için | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Tüm giriş kayan nokta değerlerini virgüllerle ayrılmış halde içeren tek bir dize. | \ No newline at end of file +| `output` | STRING | Tüm giriş kayan nokta değerlerini virgüllerle ayrılmış halde içeren tek bir dize. | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh-TW.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh-TW.md index b02b70c09..ca8401516 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh-TW.md @@ -14,4 +14,4 @@ AutogrowPrefixTestNode 是一個用於測試自動增長輸入功能的邏輯節 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 一個包含所有輸入浮點數值的單一字串,以逗號分隔。 | \ No newline at end of file +| `output` | STRING | 一個包含所有輸入浮點數值的單一字串,以逗號分隔。 | diff --git a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh.md b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh.md index 60bc56ec7..776c34b3d 100644 --- a/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh.md +++ b/comfyui_embedded_docs/docs/AutogrowPrefixTestNode/zh.md @@ -14,4 +14,4 @@ AutogrowPrefixTestNode 是一个用于测试自动增长输入功能的逻辑节 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 一个包含所有输入浮点数值的字符串,数值之间用逗号分隔。 | \ No newline at end of file +| `output` | STRING | 一个包含所有输入浮点数值的字符串,数值之间用逗号分隔。 | diff --git a/comfyui_embedded_docs/docs/BasicGuider/ar.md b/comfyui_embedded_docs/docs/BasicGuider/ar.md index 4f9fa1ad7..66d6dc9b2 100644 --- a/comfyui_embedded_docs/docs/BasicGuider/ar.md +++ b/comfyui_embedded_docs/docs/BasicGuider/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | كائن موجه يمكن استخدامه أثناء عملية أخذ العينات لتوجيه عملية التوليد | \ No newline at end of file +| `GUIDER` | GUIDER | كائن موجه يمكن استخدامه أثناء عملية أخذ العينات لتوجيه عملية التوليد | diff --git a/comfyui_embedded_docs/docs/BasicGuider/pt-BR.md b/comfyui_embedded_docs/docs/BasicGuider/pt-BR.md index 827169111..d8402fd6d 100644 --- a/comfyui_embedded_docs/docs/BasicGuider/pt-BR.md +++ b/comfyui_embedded_docs/docs/BasicGuider/pt-BR.md @@ -13,4 +13,4 @@ O nó BasicGuider cria um mecanismo de orientação simples para o processo de a | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Um objeto orientador que pode ser usado durante o processo de amostragem para guiar a geração | \ No newline at end of file +| `GUIDER` | GUIDER | Um objeto orientador que pode ser usado durante o processo de amostragem para guiar a geração | diff --git a/comfyui_embedded_docs/docs/BasicGuider/tr.md b/comfyui_embedded_docs/docs/BasicGuider/tr.md index 8ef5619b6..6342d4f4a 100644 --- a/comfyui_embedded_docs/docs/BasicGuider/tr.md +++ b/comfyui_embedded_docs/docs/BasicGuider/tr.md @@ -13,4 +13,4 @@ BasicGuider düğümü, örnekleme süreci için basit bir kılavuzluk mekanizma | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Örnekleme sürecinde üretimi yönlendirmek için kullanılabilecek bir kılavuz nesnesi | \ No newline at end of file +| `GUIDER` | GUIDER | Örnekleme sürecinde üretimi yönlendirmek için kullanılabilecek bir kılavuz nesnesi | diff --git a/comfyui_embedded_docs/docs/BasicGuider/zh-TW.md b/comfyui_embedded_docs/docs/BasicGuider/zh-TW.md index a50b50627..ae1936d00 100644 --- a/comfyui_embedded_docs/docs/BasicGuider/zh-TW.md +++ b/comfyui_embedded_docs/docs/BasicGuider/zh-TW.md @@ -15,4 +15,4 @@ BasicGuider 節點為取樣過程建立一個簡單的引導機制。它接收 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | 可在取樣過程中用於引導生成的引導器物件 | \ No newline at end of file +| `GUIDER` | GUIDER | 可在取樣過程中用於引導生成的引導器物件 | diff --git a/comfyui_embedded_docs/docs/BasicScheduler/ar.md b/comfyui_embedded_docs/docs/BasicScheduler/ar.md index 24c318aab..d219ab736 100644 --- a/comfyui_embedded_docs/docs/BasicScheduler/ar.md +++ b/comfyui_embedded_docs/docs/BasicScheduler/ar.md @@ -68,4 +68,4 @@ ### التعاون مع العُقد الأخرى `BasicScheduler` (مساعد الألوان) → إعداد الوصفة → `SamplerCustom` (الفنان) → الرسم الفعلي → العمل المكتمل -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/BasicScheduler/pt-BR.md b/comfyui_embedded_docs/docs/BasicScheduler/pt-BR.md index bbb06c326..f4d968a35 100644 --- a/comfyui_embedded_docs/docs/BasicScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/BasicScheduler/pt-BR.md @@ -66,4 +66,4 @@ Imagine que você é um artista criando uma imagem clara a partir de uma mistura ### Colaboração com Outros Nós -`BasicScheduler` (Assistente de Cores) → Prepara a Receita → `SamplerCustom` (Artista) → Pintura Real → Trabalho Concluído \ No newline at end of file +`BasicScheduler` (Assistente de Cores) → Prepara a Receita → `SamplerCustom` (Artista) → Pintura Real → Trabalho Concluído diff --git a/comfyui_embedded_docs/docs/BasicScheduler/tr.md b/comfyui_embedded_docs/docs/BasicScheduler/tr.md index 48567621b..1e3ff5b9c 100644 --- a/comfyui_embedded_docs/docs/BasicScheduler/tr.md +++ b/comfyui_embedded_docs/docs/BasicScheduler/tr.md @@ -66,4 +66,4 @@ Kaotik bir boya karışımından (gürültü) net bir görüntü oluşturan bir ### Diğer Düğümlerle İş Birliği -`BasicScheduler` (Renk Asistanı) → Tarifi Hazırla → `SamplerCustom` (Sanatçı) → Gerçek Boyama → Tamamlanmış Eser \ No newline at end of file +`BasicScheduler` (Renk Asistanı) → Tarifi Hazırla → `SamplerCustom` (Sanatçı) → Gerçek Boyama → Tamamlanmış Eser diff --git a/comfyui_embedded_docs/docs/BasicScheduler/zh-TW.md b/comfyui_embedded_docs/docs/BasicScheduler/zh-TW.md index ffba0d545..24d34ed53 100644 --- a/comfyui_embedded_docs/docs/BasicScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/BasicScheduler/zh-TW.md @@ -66,4 +66,4 @@ ### 與其他節點的協作 -`BasicScheduler`(調色助手)→ 準備配方 → `SamplerCustom`(藝術家)→ 實際繪畫 → 完成作品 \ No newline at end of file +`BasicScheduler`(調色助手)→ 準備配方 → `SamplerCustom`(藝術家)→ 實際繪畫 → 完成作品 diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ar.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ar.md index 5486333ef..90d730153 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ar.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE، MASK، أو LATENT | مخرج واحد مجمع في دفعة. نوع البيانات يطابق نوع المدخل (IMAGE مجمع، MASK مجمع، أو LATENT مجمع). | \ No newline at end of file +| `output` | IMAGE، MASK، أو LATENT | مخرج واحد مجمع في دفعة. نوع البيانات يطابق نوع المدخل (IMAGE مجمع، MASK مجمع، أو LATENT مجمع). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/en.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/en.md index e96a89c0c..b2f8657ec 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/en.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/en.md @@ -14,4 +14,4 @@ The Batch Images/Masks/Latents node combines multiple inputs of the same type in | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | IMAGE, MASK, or LATENT | A single batched output. The data type matches the input type (batched IMAGE, batched MASK, or batched LATENT). | \ No newline at end of file +| `output` | IMAGE, MASK, or LATENT | A single batched output. The data type matches the input type (batched IMAGE, batched MASK, or batched LATENT). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/es.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/es.md index 6bfe1e749..d19459d66 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/es.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/es.md @@ -14,4 +14,4 @@ El nodo Batch Images/Masks/Latents combina múltiples entradas del mismo tipo en | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | IMAGE, MASK o LATENT | Una única salida en lote. El tipo de dato coincide con el tipo de entrada (IMAGE en lote, MASK en lote o LATENT en lote). | \ No newline at end of file +| `output` | IMAGE, MASK o LATENT | Una única salida en lote. El tipo de dato coincide con el tipo de entrada (IMAGE en lote, MASK en lote o LATENT en lote). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/fr.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/fr.md index 4a527b278..bbe156832 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/fr.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/fr.md @@ -14,4 +14,4 @@ Le nœud Batch Images/Masks/Latents combine plusieurs entrées du même type en | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | IMAGE, MASK ou LATENT | Une seule sortie groupée. Le type de données correspond au type d'entrée (IMAGE groupée, MASK groupée ou LATENT groupée). | \ No newline at end of file +| `output` | IMAGE, MASK ou LATENT | Une seule sortie groupée. Le type de données correspond au type d'entrée (IMAGE groupée, MASK groupée ou LATENT groupée). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ja.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ja.md index f01dd77c2..d1c0f3c2d 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ja.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ja.md @@ -14,4 +14,4 @@ Batch Images/Masks/Latents ノードは、同じタイプの複数の入力を | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | IMAGE、MASK、または LATENT | 単一のバッチ出力。データ型は入力タイプと一致します(バッチ化された IMAGE、バッチ化された MASK、またはバッチ化された LATENT)。 | \ No newline at end of file +| `output` | IMAGE、MASK、または LATENT | 単一のバッチ出力。データ型は入力タイプと一致します(バッチ化された IMAGE、バッチ化された MASK、またはバッチ化された LATENT)。 | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ko.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ko.md index 9494618d8..cb6067da5 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ko.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ko.md @@ -14,4 +14,4 @@ Batch Images/Masks/Latents 노드는 동일한 타입의 여러 입력을 하나 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | IMAGE, MASK 또는 LATENT | 단일 배치 출력입니다. 데이터 타입은 입력 타입(배치된 IMAGE, 배치된 MASK 또는 배치된 LATENT)과 일치합니다. | \ No newline at end of file +| `output` | IMAGE, MASK 또는 LATENT | 단일 배치 출력입니다. 데이터 타입은 입력 타입(배치된 IMAGE, 배치된 MASK 또는 배치된 LATENT)과 일치합니다. | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/pt-BR.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/pt-BR.md index f7e415837..d4f63f7b1 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/pt-BR.md @@ -14,4 +14,4 @@ O nó Batch Images/Masks/Latents combina múltiplas entradas do mesmo tipo em um | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE, MASK ou LATENT | Uma única saída em lote. O tipo de dado corresponde ao tipo de entrada (IMAGE em lote, MASK em lote ou LATENT em lote). | \ No newline at end of file +| `output` | IMAGE, MASK ou LATENT | Uma única saída em lote. O tipo de dado corresponde ao tipo de entrada (IMAGE em lote, MASK em lote ou LATENT em lote). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ru.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ru.md index 0b17bb652..7a3a7beb8 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ru.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | IMAGE, MASK или LATENT | Единый пакетный выход. Тип данных соответствует входному типу (пакетное IMAGE, пакетное MASK или пакетное LATENT). | \ No newline at end of file +| `output` | IMAGE, MASK или LATENT | Единый пакетный выход. Тип данных соответствует входному типу (пакетное IMAGE, пакетное MASK или пакетное LATENT). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/tr.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/tr.md index ae681172c..d61bc124a 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/tr.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/tr.md @@ -14,4 +14,4 @@ Batch Images/Masks/Latents düğümü, aynı türdeki birden fazla girdiyi tek b | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE, MASK veya LATENT | Tek bir toplu çıktı. Veri türü, girdi türüyle eşleşir (toplu IMAGE, toplu MASK veya toplu LATENT). | \ No newline at end of file +| `output` | IMAGE, MASK veya LATENT | Tek bir toplu çıktı. Veri türü, girdi türüyle eşleşir (toplu IMAGE, toplu MASK veya toplu LATENT). | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh-TW.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh-TW.md index c03fecb8f..a10773b3d 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE、MASK 或 LATENT | 單一批次輸出。資料類型與輸入類型匹配(批次化的 IMAGE、批次化的 MASK 或批次化的 LATENT)。 | \ No newline at end of file +| `output` | IMAGE、MASK 或 LATENT | 單一批次輸出。資料類型與輸入類型匹配(批次化的 IMAGE、批次化的 MASK 或批次化的 LATENT)。 | diff --git a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh.md b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh.md index d1e763c3d..6afbb3821 100644 --- a/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh.md +++ b/comfyui_embedded_docs/docs/BatchImagesMasksLatentsNode/zh.md @@ -14,4 +14,4 @@ Batch Images/Masks/Latents 节点将多个相同类型的输入组合成一个 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE、MASK 或 LATENT | 一个单一的批处理输出。数据类型与输入类型匹配(批处理的 IMAGE、批处理的 MASK 或批处理的 LATENT)。 | \ No newline at end of file +| `output` | IMAGE、MASK 或 LATENT | 一个单一的批处理输出。数据类型与输入类型匹配(批处理的 IMAGE、批处理的 MASK 或批处理的 LATENT)。 | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/ar.md b/comfyui_embedded_docs/docs/BatchImagesNode/ar.md index 8fed8fe74..cea07f9ac 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/ar.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | موتر صورة مجمّع واحد يحتوي على جميع صور الإدخال مكدسة معًا. | \ No newline at end of file +| `output` | IMAGE | موتر صورة مجمّع واحد يحتوي على جميع صور الإدخال مكدسة معًا. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/en.md b/comfyui_embedded_docs/docs/BatchImagesNode/en.md index e68d749a8..c6c9cc6a5 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/en.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/en.md @@ -14,4 +14,4 @@ The Batch Images node combines multiple individual images into a single batch. I | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | IMAGE | A single batched image tensor containing all the input images stacked together. | \ No newline at end of file +| `output` | IMAGE | A single batched image tensor containing all the input images stacked together. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/es.md b/comfyui_embedded_docs/docs/BatchImagesNode/es.md index eea16d193..db9599b68 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/es.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/es.md @@ -14,4 +14,4 @@ El nodo Batch Images combina múltiples imágenes individuales en un lote único | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | IMAGE | Un único tensor de imágenes en lote que contiene todas las imágenes de entrada apiladas juntas. | \ No newline at end of file +| `output` | IMAGE | Un único tensor de imágenes en lote que contiene todas las imágenes de entrada apiladas juntas. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/fr.md b/comfyui_embedded_docs/docs/BatchImagesNode/fr.md index 9d389969a..fb2370bef 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/fr.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/fr.md @@ -14,4 +14,4 @@ Le nœud Batch Images combine plusieurs images individuelles en un seul lot. Il | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | IMAGE | Un seul tenseur d'images groupées contenant toutes les images d'entrée empilées ensemble. | \ No newline at end of file +| `output` | IMAGE | Un seul tenseur d'images groupées contenant toutes les images d'entrée empilées ensemble. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/ja.md b/comfyui_embedded_docs/docs/BatchImagesNode/ja.md index 6aaa691df..2b96b4161 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/ja.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/ja.md @@ -14,4 +14,4 @@ Batch Imagesノードは、複数の個別画像を1つのバッチに結合し | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | IMAGE | すべての入力画像が積み重ねられた、単一のバッチ化された画像テンソルです。 | \ No newline at end of file +| `output` | IMAGE | すべての入力画像が積み重ねられた、単一のバッチ化された画像テンソルです。 | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/ko.md b/comfyui_embedded_docs/docs/BatchImagesNode/ko.md index 79b204027..611a0ae5c 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/ko.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/ko.md @@ -14,4 +14,4 @@ Batch Images 노드는 여러 개별 이미지를 하나의 배치로 결합합 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | IMAGE | 모든 입력 이미지가 함께 쌓인 단일 배치 이미지 텐서입니다. | \ No newline at end of file +| `output` | IMAGE | 모든 입력 이미지가 함께 쌓인 단일 배치 이미지 텐서입니다. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/pt-BR.md b/comfyui_embedded_docs/docs/BatchImagesNode/pt-BR.md index 003a35f05..1374e6f47 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/pt-BR.md @@ -14,4 +14,4 @@ O nó Batch Images combina várias imagens individuais em um único lote. Ele re | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | Um único tensor de imagem em lote contendo todas as imagens de entrada empilhadas juntas. | \ No newline at end of file +| `output` | IMAGE | Um único tensor de imagem em lote contendo todas as imagens de entrada empilhadas juntas. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/ru.md b/comfyui_embedded_docs/docs/BatchImagesNode/ru.md index 6487ad92c..22414f55e 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/ru.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | IMAGE | Единый пакетный тензор изображений, содержащий все входные изображения, объединённые вместе. | \ No newline at end of file +| `output` | IMAGE | Единый пакетный тензор изображений, содержащий все входные изображения, объединённые вместе. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/tr.md b/comfyui_embedded_docs/docs/BatchImagesNode/tr.md index e3753d080..8f27e63f7 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/tr.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/tr.md @@ -14,4 +14,4 @@ Batch Images düğümü, birden fazla ayrı görüntüyü tek bir toplu işte bi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Tüm giriş görüntülerinin üst üste istiflendiği tek bir toplu görüntü tensörü. | \ No newline at end of file +| `output` | IMAGE | Tüm giriş görüntülerinin üst üste istiflendiği tek bir toplu görüntü tensörü. | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/zh-TW.md b/comfyui_embedded_docs/docs/BatchImagesNode/zh-TW.md index ccdda2dcc..e4b56f766 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/zh-TW.md @@ -14,4 +14,4 @@ Batch Images 節點將多張獨立圖像合併為單一批次。它接收可變 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 一個單一的批次化圖像張量,其中包含了所有堆疊在一起的輸入圖像。 | \ No newline at end of file +| `output` | IMAGE | 一個單一的批次化圖像張量,其中包含了所有堆疊在一起的輸入圖像。 | diff --git a/comfyui_embedded_docs/docs/BatchImagesNode/zh.md b/comfyui_embedded_docs/docs/BatchImagesNode/zh.md index 475f68787..f8d4e06db 100644 --- a/comfyui_embedded_docs/docs/BatchImagesNode/zh.md +++ b/comfyui_embedded_docs/docs/BatchImagesNode/zh.md @@ -14,4 +14,4 @@ Batch Images 节点将多个独立图像合并为单个批次。它接收可变 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 一个包含所有输入图像堆叠在一起的批处理图像张量。 | \ No newline at end of file +| `output` | IMAGE | 一个包含所有输入图像堆叠在一起的批处理图像张量。 | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/ar.md b/comfyui_embedded_docs/docs/BatchLatentsNode/ar.md index b84d4e666..26e413363 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/ar.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/ar.md @@ -17,4 +17,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | مُخرج كامن واحد يحتوي على جميع المُدخلات الكامنة مجمعة في دفعة واحدة. | \ No newline at end of file +| `output` | LATENT | مُخرج كامن واحد يحتوي على جميع المُدخلات الكامنة مجمعة في دفعة واحدة. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/en.md b/comfyui_embedded_docs/docs/BatchLatentsNode/en.md index c8b769262..c0ea129b0 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/en.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/en.md @@ -15,4 +15,4 @@ The Batch Latents node combines multiple latent inputs into a single batch. It t | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | LATENT | A single latent output containing all the input latents combined into one batch. | \ No newline at end of file +| `output` | LATENT | A single latent output containing all the input latents combined into one batch. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/es.md b/comfyui_embedded_docs/docs/BatchLatentsNode/es.md index 4b32e7b83..0c79b223c 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/es.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/es.md @@ -15,4 +15,4 @@ El nodo Batch Latents combina múltiples entradas latentes en un solo lote. Toma | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | LATENT | Una única salida latente que contiene todas las entradas latentes combinadas en un solo lote. | \ No newline at end of file +| `output` | LATENT | Una única salida latente que contiene todas las entradas latentes combinadas en un solo lote. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/fr.md b/comfyui_embedded_docs/docs/BatchLatentsNode/fr.md index 2373383ca..90b92de63 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/fr.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/fr.md @@ -17,4 +17,4 @@ Le nœud Batch Latents combine plusieurs entrées latentes en un seul lot. Il pr | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | LATENT | Une seule sortie latente contenant toutes les entrées latentes combinées en un seul lot. | \ No newline at end of file +| `output` | LATENT | Une seule sortie latente contenant toutes les entrées latentes combinées en un seul lot. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/ja.md b/comfyui_embedded_docs/docs/BatchLatentsNode/ja.md index 85955dc76..3d388cb67 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/ja.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/ja.md @@ -15,4 +15,4 @@ Batch Latents ノードは、複数の潜在表現入力を単一のバッチに | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | LATENT | すべての入力潜在表現が1つのバッチに結合された、単一の潜在表現出力です。 | \ No newline at end of file +| `output` | LATENT | すべての入力潜在表現が1つのバッチに結合された、単一の潜在表現出力です。 | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/ko.md b/comfyui_embedded_docs/docs/BatchLatentsNode/ko.md index c51f0a409..a883d933e 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/ko.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/ko.md @@ -15,4 +15,4 @@ Batch Latents 노드는 여러 잠재 표현 입력을 하나의 배치로 결 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | LATENT | 모든 입력 잠재 표현이 하나의 배치로 결합된 단일 잠재 출력입니다. | \ No newline at end of file +| `output` | LATENT | 모든 입력 잠재 표현이 하나의 배치로 결합된 단일 잠재 출력입니다. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/pt-BR.md b/comfyui_embedded_docs/docs/BatchLatentsNode/pt-BR.md index fa1f5332e..a781c6759 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/pt-BR.md @@ -15,4 +15,4 @@ O nó Batch Latents combina múltiplas entradas latentes em um único lote. Ele | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | Uma única saída latente contendo todas as entradas latentes combinadas em um lote. | \ No newline at end of file +| `output` | LATENT | Uma única saída latente contendo todas as entradas latentes combinadas em um lote. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/ru.md b/comfyui_embedded_docs/docs/BatchLatentsNode/ru.md index df685528c..91fb11786 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/ru.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | LATENT | Единый латентный выход, содержащий все входные латентные сэмплы, объединённые в один пакет. | \ No newline at end of file +| `output` | LATENT | Единый латентный выход, содержащий все входные латентные сэмплы, объединённые в один пакет. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/tr.md b/comfyui_embedded_docs/docs/BatchLatentsNode/tr.md index 32131bdc9..0caf86200 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/tr.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/tr.md @@ -15,4 +15,4 @@ Batch Latents düğümü, birden fazla gizli (latent) girdiyi tek bir toplu işl | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | Tüm girdi gizli örneklerini tek bir toplu işlemde birleştiren tek bir gizli çıktı. | \ No newline at end of file +| `output` | LATENT | Tüm girdi gizli örneklerini tek bir toplu işlemde birleştiren tek bir gizli çıktı. | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/zh-TW.md b/comfyui_embedded_docs/docs/BatchLatentsNode/zh-TW.md index 1bd9ef927..28c7e1a68 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 單一的潛在輸出,包含所有輸入潛在樣本合併成的一個批次。 | \ No newline at end of file +| `output` | LATENT | 單一的潛在輸出,包含所有輸入潛在樣本合併成的一個批次。 | diff --git a/comfyui_embedded_docs/docs/BatchLatentsNode/zh.md b/comfyui_embedded_docs/docs/BatchLatentsNode/zh.md index 1e8ee33e4..678522c89 100644 --- a/comfyui_embedded_docs/docs/BatchLatentsNode/zh.md +++ b/comfyui_embedded_docs/docs/BatchLatentsNode/zh.md @@ -15,4 +15,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 一个单一的潜在输出,包含所有输入潜在表示合并后的批次。 | \ No newline at end of file +| `output` | LATENT | 一个单一的潜在输出,包含所有输入潜在表示合并后的批次。 | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/ar.md b/comfyui_embedded_docs/docs/BatchMasksNode/ar.md index ba8d678c9..8d7be1812 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/ar.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | MASK | قناع واحد مُجمع في دُفعة يحتوي على جميع أقنعة الإدخال مُكدسة معًا. | \ No newline at end of file +| `output` | MASK | قناع واحد مُجمع في دُفعة يحتوي على جميع أقنعة الإدخال مُكدسة معًا. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/en.md b/comfyui_embedded_docs/docs/BatchMasksNode/en.md index 02e56c078..fc9884544 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/en.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/en.md @@ -16,4 +16,4 @@ The Batch Masks node combines multiple individual mask inputs into a single batc | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | MASK | A single batched mask containing all the input masks stacked together. | \ No newline at end of file +| `output` | MASK | A single batched mask containing all the input masks stacked together. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/es.md b/comfyui_embedded_docs/docs/BatchMasksNode/es.md index 0fb2ec2ee..2f4ac2982 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/es.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/es.md @@ -16,4 +16,4 @@ El nodo Batch Masks combina múltiples entradas de máscaras individuales en un | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | MASK | Una única máscara en lote que contiene todas las máscaras de entrada apiladas juntas. | \ No newline at end of file +| `output` | MASK | Una única máscara en lote que contiene todas las máscaras de entrada apiladas juntas. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/fr.md b/comfyui_embedded_docs/docs/BatchMasksNode/fr.md index 2ae975bd1..5d2c412c2 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/fr.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/fr.md @@ -16,4 +16,4 @@ Le nœud Batch Masks combine plusieurs masques individuels en un seul lot. Il pr | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | MASK | Un seul masque groupé contenant tous les masques d'entrée empilés ensemble. | \ No newline at end of file +| `output` | MASK | Un seul masque groupé contenant tous les masques d'entrée empilés ensemble. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/ja.md b/comfyui_embedded_docs/docs/BatchMasksNode/ja.md index 4a21fe9bb..a11990780 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/ja.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/ja.md @@ -16,4 +16,4 @@ Batch Masksノードは、複数の個別マスク入力を単一のバッチに | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | MASK | すべての入力マスクが積み重ねられた、単一のバッチ化されたマスクです。 | \ No newline at end of file +| `output` | MASK | すべての入力マスクが積み重ねられた、単一のバッチ化されたマスクです。 | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/ko.md b/comfyui_embedded_docs/docs/BatchMasksNode/ko.md index d5916fd31..36b7180ab 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/ko.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/ko.md @@ -16,4 +16,4 @@ Batch Masks 노드는 여러 개별 마스크 입력을 단일 배치로 결합 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | MASK | 모든 입력 마스크가 함께 쌓인 단일 배치 마스크입니다. | \ No newline at end of file +| `output` | MASK | 모든 입력 마스크가 함께 쌓인 단일 배치 마스크입니다. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/pt-BR.md b/comfyui_embedded_docs/docs/BatchMasksNode/pt-BR.md index 18d83c6c9..490f75f7a 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/pt-BR.md @@ -16,4 +16,4 @@ O nó Batch Masks combina várias entradas de máscaras individuais em um único | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | MASK | Uma única máscara em lote contendo todas as máscaras de entrada empilhadas juntas. | \ No newline at end of file +| `output` | MASK | Uma única máscara em lote contendo todas as máscaras de entrada empilhadas juntas. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/ru.md b/comfyui_embedded_docs/docs/BatchMasksNode/ru.md index 41308da37..7b5201c2c 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/ru.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | MASK | Единый пакет масок, содержащий все входные маски, объединенные вместе. | \ No newline at end of file +| `output` | MASK | Единый пакет масок, содержащий все входные маски, объединенные вместе. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/tr.md b/comfyui_embedded_docs/docs/BatchMasksNode/tr.md index b87340202..46fdea7bd 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/tr.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/tr.md @@ -16,4 +16,4 @@ Batch Masks düğümü, birden fazla bireysel maske girdisini tek bir toplu işt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | MASK | Tüm girdi maskelerinin üst üste istiflendiği tek bir toplu maske. | \ No newline at end of file +| `output` | MASK | Tüm girdi maskelerinin üst üste istiflendiği tek bir toplu maske. | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/zh-TW.md b/comfyui_embedded_docs/docs/BatchMasksNode/zh-TW.md index b431b97ee..31b377d4b 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | MASK | 一個包含所有輸入遮罩堆疊在一起的單一批次化遮罩。 | \ No newline at end of file +| `output` | MASK | 一個包含所有輸入遮罩堆疊在一起的單一批次化遮罩。 | diff --git a/comfyui_embedded_docs/docs/BatchMasksNode/zh.md b/comfyui_embedded_docs/docs/BatchMasksNode/zh.md index be7abf416..2261fef31 100644 --- a/comfyui_embedded_docs/docs/BatchMasksNode/zh.md +++ b/comfyui_embedded_docs/docs/BatchMasksNode/zh.md @@ -16,4 +16,4 @@ Batch Masks 节点将多个独立的遮罩输入合并为单个批次。它接 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | MASK | 一个包含所有输入遮罩堆叠在一起的单个批处理遮罩。 | \ No newline at end of file +| `output` | MASK | 一个包含所有输入遮罩堆叠在一起的单个批处理遮罩。 | diff --git a/comfyui_embedded_docs/docs/BetaSamplingScheduler/ar.md b/comfyui_embedded_docs/docs/BetaSamplingScheduler/ar.md index 043edb6b9..290b47880 100644 --- a/comfyui_embedded_docs/docs/BetaSamplingScheduler/ar.md +++ b/comfyui_embedded_docs/docs/BetaSamplingScheduler/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | تسلسل لمستويات الضوضاء (سيغما) يُستخدم في عملية أخذ العينات | \ No newline at end of file +| `SIGMAS` | SIGMAS | تسلسل لمستويات الضوضاء (سيغما) يُستخدم في عملية أخذ العينات | diff --git a/comfyui_embedded_docs/docs/BetaSamplingScheduler/pt-BR.md b/comfyui_embedded_docs/docs/BetaSamplingScheduler/pt-BR.md index 594eeab7b..24c188872 100644 --- a/comfyui_embedded_docs/docs/BetaSamplingScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/BetaSamplingScheduler/pt-BR.md @@ -15,4 +15,4 @@ O nó BetaSamplingScheduler gera uma sequência de níveis de ruído (sigmas) pa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | Uma sequência de níveis de ruído (sigmas) usados para o processo de amostragem | \ No newline at end of file +| `SIGMAS` | SIGMAS | Uma sequência de níveis de ruído (sigmas) usados para o processo de amostragem | diff --git a/comfyui_embedded_docs/docs/BetaSamplingScheduler/tr.md b/comfyui_embedded_docs/docs/BetaSamplingScheduler/tr.md index 456f97b2d..7e441c85f 100644 --- a/comfyui_embedded_docs/docs/BetaSamplingScheduler/tr.md +++ b/comfyui_embedded_docs/docs/BetaSamplingScheduler/tr.md @@ -15,4 +15,4 @@ BetaSamplingScheduler düğümü, beta zamanlama algoritmasını kullanarak örn | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | Örnekleme işlemi için kullanılan bir gürültü seviyeleri (sigmas) dizisi | \ No newline at end of file +| `SIGMAS` | SIGMAS | Örnekleme işlemi için kullanılan bir gürültü seviyeleri (sigmas) dizisi | diff --git a/comfyui_embedded_docs/docs/BetaSamplingScheduler/zh-TW.md b/comfyui_embedded_docs/docs/BetaSamplingScheduler/zh-TW.md index 57cd16203..b70081c43 100644 --- a/comfyui_embedded_docs/docs/BetaSamplingScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/BetaSamplingScheduler/zh-TW.md @@ -15,4 +15,4 @@ BetaSamplingScheduler 節點使用 beta 排程演算法為取樣過程生成一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | 用於取樣過程的一系列雜訊等級(sigmas) | \ No newline at end of file +| `SIGMAS` | SIGMAS | 用於取樣過程的一系列雜訊等級(sigmas) | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ar.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ar.md new file mode 100644 index 000000000..5e6845ae0 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ar.md @@ -0,0 +1,21 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ar.md) + +هذه العقدة تزيل الخلفية من صورة باستخدام خدمة Bria RMBG 2.0. حيث ترسل الصورة إلى واجهة برمجة تطبيقات (API) خارجية للمعالجة وتعيد النتيجة بعد إزالة الخلفية. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | نعم | - | الصورة المدخلة التي سيتم إزالة الخلفية منها. | +| `moderation` | COMBO | لا | `"false"`
`"true"` | إعدادات الرقابة. عند تعيينها إلى `"true"`، تصبح خيارات رقابة إضافية متاحة. | +| `visual_input_moderation` | BOOLEAN | لا | - | يُفعّل رقابة المحتوى المرئي على الصورة المدخلة. هذا المعامل متاح فقط عندما يكون `moderation` مضبوطًا على `"true"`. الافتراضي: `False`. | +| `visual_output_moderation` | BOOLEAN | لا | - | يُفعّل رقابة المحتوى المرئي على الصورة الناتجة. هذا المعامل متاح فقط عندما يكون `moderation` مضبوطًا على `"true"`. الافتراضي: `True`. | +| `seed` | INT | لا | 0 إلى 2147483647 | قيمة بذرية تتحكم فيما إذا كان يجب على العقدة إعادة التشغيل. النتائج غير حتمية بغض النظر عن قيمة البذرة. الافتراضي: `0`. | + +**ملاحظة:** معاملا `visual_input_moderation` و `visual_output_moderation` يعتمدان على معامل `moderation`. فهما يكونان نشطين ومطلوبين فقط إذا تم تعيين `moderation` على `"true"`. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `image` | IMAGE | الصورة المعالجة بعد إزالة خلفيتها. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/en.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/en.md new file mode 100644 index 000000000..c60a7bab2 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/en.md @@ -0,0 +1,21 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/en.md) + +This node removes the background from an image using the Bria RMBG 2.0 service. It sends the image to an external API for processing and returns the result with the background removed. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Yes | - | The input image from which the background will be removed. | +| `moderation` | COMBO | No | `"false"`
`"true"` | Moderation settings. When set to `"true"`, additional moderation options become available. | +| `visual_input_moderation` | BOOLEAN | No | - | Enables visual content moderation on the input image. This parameter is only available when `moderation` is set to `"true"`. Default: `False`. | +| `visual_output_moderation` | BOOLEAN | No | - | Enables visual content moderation on the output image. This parameter is only available when `moderation` is set to `"true"`. Default: `True`. | +| `seed` | INT | No | 0 to 2147483647 | A seed value that controls whether the node should re-run. The results are non-deterministic regardless of the seed value. Default: `0`. | + +**Note:** The `visual_input_moderation` and `visual_output_moderation` parameters are dependent on the `moderation` parameter. They are only active and required if `moderation` is set to `"true"`. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `image` | IMAGE | The processed image with its background removed. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/es.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/es.md new file mode 100644 index 000000000..540bfe94c --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/es.md @@ -0,0 +1,21 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/es.md) + +Este nodo elimina el fondo de una imagen utilizando el servicio Bria RMBG 2.0. Envía la imagen a una API externa para su procesamiento y devuelve el resultado con el fondo eliminado. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Sí | - | La imagen de entrada a la que se le eliminará el fondo. | +| `moderation` | COMBO | No | `"false"`
`"true"` | Configuración de moderación. Cuando se establece en `"true"`, se habilitan opciones de moderación adicionales. | +| `visual_input_moderation` | BOOLEAN | No | - | Habilita la moderación de contenido visual en la imagen de entrada. Este parámetro solo está disponible cuando `moderation` está establecido en `"true"`. Valor por defecto: `False`. | +| `visual_output_moderation` | BOOLEAN | No | - | Habilita la moderación de contenido visual en la imagen de salida. Este parámetro solo está disponible cuando `moderation` está establecido en `"true"`. Valor por defecto: `True`. | +| `seed` | INT | No | 0 a 2147483647 | Un valor de semilla que controla si el nodo debe volver a ejecutarse. Los resultados no son deterministas, independientemente del valor de la semilla. Valor por defecto: `0`. | + +**Nota:** Los parámetros `visual_input_moderation` y `visual_output_moderation` dependen del parámetro `moderation`. Solo están activos y son obligatorios si `moderation` está establecido en `"true"`. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `image` | IMAGE | La imagen procesada con su fondo eliminado. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/fr.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/fr.md new file mode 100644 index 000000000..757e09386 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/fr.md @@ -0,0 +1,21 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/fr.md) + +Ce nœud supprime l'arrière-plan d'une image en utilisant le service Bria RMBG 2.0. Il envoie l'image à une API externe pour traitement et renvoie le résultat avec l'arrière-plan supprimé. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Oui | - | L'image d'entrée dont l'arrière-plan sera supprimé. | +| `moderation` | COMBO | Non | `"false"`
`"true"` | Paramètres de modération. Lorsqu'il est défini sur `"true"`, des options de modération supplémentaires deviennent disponibles. | +| `visual_input_moderation` | BOOLEAN | Non | - | Active la modération du contenu visuel sur l'image d'entrée. Ce paramètre n'est disponible que lorsque `moderation` est défini sur `"true"`. Par défaut : `False`. | +| `visual_output_moderation` | BOOLEAN | Non | - | Active la modération du contenu visuel sur l'image de sortie. Ce paramètre n'est disponible que lorsque `moderation` est défini sur `"true"`. Par défaut : `True`. | +| `seed` | INT | Non | 0 à 2147483647 | Une valeur de seed qui contrôle si le nœud doit être réexécuté. Les résultats sont non déterministes, quelle que soit la valeur du seed. Par défaut : `0`. | + +**Note :** Les paramètres `visual_input_moderation` et `visual_output_moderation` dépendent du paramètre `moderation`. Ils ne sont actifs et requis que si `moderation` est défini sur `"true"`. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `image` | IMAGE | L'image traitée avec son arrière-plan supprimé. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ja.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ja.md new file mode 100644 index 000000000..27df7b05c --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ja.md @@ -0,0 +1,21 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ja.md) + +このノードは、Bria RMBG 2.0 サービスを使用して画像から背景を除去します。画像を外部APIに送信して処理を行い、背景が除去された結果を返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | はい | - | 背景を除去する対象の入力画像です。 | +| `moderation` | COMBO | いいえ | `"false"`
`"true"` | モデレーション設定です。`"true"`に設定すると、追加のモデレーションオプションが利用可能になります。 | +| `visual_input_moderation` | BOOLEAN | いいえ | - | 入力画像に対して視覚的コンテンツのモデレーションを有効にします。このパラメータは`moderation`が`"true"`に設定されている場合のみ利用可能です。デフォルト: `False`。 | +| `visual_output_moderation` | BOOLEAN | いいえ | - | 出力画像に対して視覚的コンテンツのモデレーションを有効にします。このパラメータは`moderation`が`"true"`に設定されている場合のみ利用可能です。デフォルト: `True`。 | +| `seed` | INT | いいえ | 0 から 2147483647 | ノードを再実行するかどうかを制御するシード値です。シード値に関わらず、結果は非決定的です。デフォルト: `0`。 | + +**注意:** `visual_input_moderation`および`visual_output_moderation`パラメータは、`moderation`パラメータに依存しています。これらのパラメータは、`moderation`が`"true"`に設定されている場合にのみ有効かつ必須となります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `image` | IMAGE | 背景が除去された処理済み画像です。 | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ko.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ko.md new file mode 100644 index 000000000..15f642879 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ko.md @@ -0,0 +1,21 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ko.md) + +이 노드는 Bria RMBG 2.0 서비스를 사용하여 이미지의 배경을 제거합니다. 이미지를 외부 API로 전송하여 처리하고, 배경이 제거된 결과를 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 예 | - | 배경을 제거할 입력 이미지입니다. | +| `moderation` | COMBO | 아니요 | `"false"`
`"true"` | 검열 설정입니다. `"true"`로 설정하면 추가 검열 옵션이 활성화됩니다. | +| `visual_input_moderation` | BOOLEAN | 아니요 | - | 입력 이미지에 대한 시각적 콘텐츠 검열을 활성화합니다. 이 매개변수는 `moderation`이 `"true"`로 설정된 경우에만 사용할 수 있습니다. 기본값: `False`. | +| `visual_output_moderation` | BOOLEAN | 아니요 | - | 출력 이미지에 대한 시각적 콘텐츠 검열을 활성화합니다. 이 매개변수는 `moderation`이 `"true"`로 설정된 경우에만 사용할 수 있습니다. 기본값: `True`. | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 노드가 재실행되어야 하는지를 제어하는 시드 값입니다. 결과는 시드 값과 관계없이 비결정적입니다. 기본값: `0`. | + +**참고:** `visual_input_moderation` 및 `visual_output_moderation` 매개변수는 `moderation` 매개변수에 종속됩니다. 이들은 `moderation`이 `"true"`로 설정된 경우에만 활성화되고 필요합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `image` | IMAGE | 배경이 제거된 처리된 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/pt-BR.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/pt-BR.md new file mode 100644 index 000000000..db1087ebb --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/pt-BR.md @@ -0,0 +1,21 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/pt-BR.md) + +Este nó remove o fundo de uma imagem usando o serviço Bria RMBG 2.0. Ele envia a imagem para uma API externa para processamento e retorna o resultado com o fundo removido. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Sim | - | A imagem de entrada da qual o fundo será removido. | +| `moderation` | COMBO | Não | `"false"`
`"true"` | Configurações de moderação. Quando definido como `"true"`, opções adicionais de moderação ficam disponíveis. | +| `visual_input_moderation` | BOOLEAN | Não | - | Habilita a moderação de conteúdo visual na imagem de entrada. Este parâmetro só está disponível quando `moderation` está definido como `"true"`. Padrão: `False`. | +| `visual_output_moderation` | BOOLEAN | Não | - | Habilita a moderação de conteúdo visual na imagem de saída. Este parâmetro só está disponível quando `moderation` está definido como `"true"`. Padrão: `True`. | +| `seed` | INT | Não | 0 a 2147483647 | Um valor de semente que controla se o nó deve ser executado novamente. Os resultados são não determinísticos, independentemente do valor da semente. Padrão: `0`. | + +**Observação:** Os parâmetros `visual_input_moderation` e `visual_output_moderation` dependem do parâmetro `moderation`. Eles só estão ativos e são obrigatórios se `moderation` estiver definido como `"true"`. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `image` | IMAGE | A imagem processada com seu fundo removido. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ru.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ru.md new file mode 100644 index 000000000..f599674d5 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ru.md @@ -0,0 +1,21 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/ru.md) + +Этот узел удаляет фон с изображения с использованием сервиса Bria RMBG 2.0. Он отправляет изображение на внешний API для обработки и возвращает результат с удалённым фоном. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Да | - | Входное изображение, с которого будет удалён фон. | +| `moderation` | COMBO | Нет | `"false"`
`"true"` | Настройки модерации. При установке в `"true"` становятся доступны дополнительные параметры модерации. | +| `visual_input_moderation` | BOOLEAN | Нет | - | Включает модерацию визуального контента на входном изображении. Этот параметр доступен только когда `moderation` установлен в `"true"`. По умолчанию: `False`. | +| `visual_output_moderation` | BOOLEAN | Нет | - | Включает модерацию визуального контента на выходном изображении. Этот параметр доступен только когда `moderation` установлен в `"true"`. По умолчанию: `True`. | +| `seed` | INT | Нет | от 0 до 2147483647 | Значение сида, которое управляет тем, должен ли узел выполняться повторно. Результаты не являются детерминированными независимо от значения сида. По умолчанию: `0`. | + +**Примечание:** Параметры `visual_input_moderation` и `visual_output_moderation` зависят от параметра `moderation`. Они активны и требуются только если `moderation` установлен в `"true"`. + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `image` | IMAGE | Обработанное изображение с удалённым фоном. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/tr.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/tr.md new file mode 100644 index 000000000..8848cd4a1 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/tr.md @@ -0,0 +1,21 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/tr.md) + +Bu düğüm, Bria RMBG 2.0 servisini kullanarak bir görselin arka planını kaldırır. Görseli işlem için harici bir API'ye gönderir ve arka planı kaldırılmış sonucu döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Evet | - | Arka planının kaldırılacağı giriş görseli. | +| `moderation` | COMBO | Hayır | `"false"`
`"true"` | Denetim ayarları. `"true"` olarak ayarlandığında, ek denetim seçenekleri kullanılabilir hale gelir. | +| `visual_input_moderation` | BOOLEAN | Hayır | - | Giriş görseli üzerinde görsel içerik denetimini etkinleştirir. Bu parametre yalnızca `moderation` `"true"` olarak ayarlandığında kullanılabilir. Varsayılan: `False`. | +| `visual_output_moderation` | BOOLEAN | Hayır | - | Çıkış görseli üzerinde görsel içerik denetimini etkinleştirir. Bu parametre yalnızca `moderation` `"true"` olarak ayarlandığında kullanılabilir. Varsayılan: `True`. | +| `seed` | INT | Hayır | 0 - 2147483647 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol eden bir seed değeri. Seed değerinden bağımsız olarak sonuçlar deterministik değildir. Varsayılan: `0`. | + +**Not:** `visual_input_moderation` ve `visual_output_moderation` parametreleri `moderation` parametresine bağlıdır. Yalnızca `moderation` `"true"` olarak ayarlandığında etkin ve gerekli hale gelirler. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `image` | IMAGE | Arka planı kaldırılmış işlenmiş görsel. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh-TW.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh-TW.md new file mode 100644 index 000000000..95717c245 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh-TW.md @@ -0,0 +1,21 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh-TW.md) + +此節點使用 Bria RMBG 2.0 服務移除圖像背景。它會將圖像發送到外部 API 進行處理,並返回移除背景後的結果。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 是 | - | 將要移除背景的輸入圖像。 | +| `moderation` | COMBO | 否 | `"false"`
`"true"` | 內容審核設定。設定為 `"true"` 時,將啟用額外的審核選項。 | +| `visual_input_moderation` | BOOLEAN | 否 | - | 對輸入圖像啟用視覺內容審核。此參數僅在 `moderation` 設定為 `"true"` 時可用。預設值:`False`。 | +| `visual_output_moderation` | BOOLEAN | 否 | - | 對輸出圖像啟用視覺內容審核。此參數僅在 `moderation` 設定為 `"true"` 時可用。預設值:`True`。 | +| `seed` | INT | 否 | 0 至 2147483647 | 控制節點是否應重新執行的種子值。無論種子值為何,結果都是非確定性的。預設值:`0`。 | + +**注意:** `visual_input_moderation` 和 `visual_output_moderation` 參數依賴於 `moderation` 參數。它們僅在 `moderation` 設定為 `"true"` 時才處於啟用狀態且為必需。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `image` | IMAGE | 經過處理、背景已被移除的圖像。 | diff --git a/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh.md b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh.md new file mode 100644 index 000000000..0ddb1d93d --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh.md @@ -0,0 +1,21 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveImageBackground/zh.md) + +此节点使用 Bria RMBG 2.0 服务移除图像的背景。它会将图像发送到外部 API 进行处理,并返回移除背景后的结果。 + +## 输入参数 + +| 参数 | 数据类型 | 必需 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 是 | - | 需要移除背景的输入图像。 | +| `moderation` | COMBO | 否 | `"false"`
`"true"` | 内容审核设置。当设置为 `"true"` 时,会启用额外的审核选项。 | +| `visual_input_moderation` | BOOLEAN | 否 | - | 对输入图像启用视觉内容审核。此参数仅在 `moderation` 设置为 `"true"` 时可用。默认值:`False`。 | +| `visual_output_moderation` | BOOLEAN | 否 | - | 对输出图像启用视觉内容审核。此参数仅在 `moderation` 设置为 `"true"` 时可用。默认值:`True`。 | +| `seed` | INT | 否 | 0 到 2147483647 | 控制节点是否应重新运行的种子值。无论种子值如何,结果都是非确定性的。默认值:`0`。 | + +**注意:** `visual_input_moderation` 和 `visual_output_moderation` 参数依赖于 `moderation` 参数。它们仅在 `moderation` 设置为 `"true"` 时才被激活且为必需。 + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `image` | IMAGE | 经过处理、背景已被移除的图像。 | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ar.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ar.md new file mode 100644 index 000000000..27f7f31a4 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ar.md @@ -0,0 +1,19 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ar.md) + +تزيل هذه العقدة الخلفية من مقطع فيديو باستخدام خدمة Bria AI. تقوم بمعالجة الفيديو المدخل واستبدال الخلفية الأصلية بلون صلب من اختيارك. تتم العملية عبر واجهة برمجة تطبيقات خارجية، ويتم إرجاع النتيجة كملف فيديو جديد. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | نعم | غير متاح | ملف الفيديو المدخل الذي ستتم إزالة الخلفية منه. | +| `background_color` | STRING | نعم | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | اللون الصلب الذي سيُستخدم كخلفية جديدة للفيديو الناتج. | +| `seed` | INT | لا | من 0 إلى 2147483647 | قيمة بذرية تتحكم فيما إذا كان يجب على العقدة إعادة التشغيل. النتائج غير حتمية بغض النظر عن قيمة البذرة. (القيمة الافتراضية: 0) | + +**ملاحظة:** يجب أن تكون مدة الفيديو المدخل 60 ثانية أو أقل. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `output` | VIDEO | ملف الفيديو المعالج بعد إزالة الخلفية واستبدالها باللون المحدد. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/en.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/en.md new file mode 100644 index 000000000..963ebd519 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/en.md @@ -0,0 +1,19 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/en.md) + +This node removes the background from a video using the Bria AI service. It processes the input video and replaces the original background with a solid color of your choice. The operation is performed via an external API, and the result is returned as a new video file. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Yes | N/A | The input video file from which the background will be removed. | +| `background_color` | STRING | Yes | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | The solid color to use as the new background for the output video. | +| `seed` | INT | No | 0 to 2147483647 | A seed value that controls whether the node should re-run. The results are non-deterministic regardless of the seed value. (default: 0) | + +**Note:** The input video must have a duration of 60 seconds or less. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `output` | VIDEO | The processed video file with the background removed and replaced by the selected color. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/es.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/es.md new file mode 100644 index 000000000..f2fd136ef --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/es.md @@ -0,0 +1,19 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/es.md) + +Este nodo elimina el fondo de un video utilizando el servicio de IA Bria. Procesa el video de entrada y reemplaza el fondo original con un color sólido de su elección. La operación se realiza a través de una API externa y el resultado se devuelve como un nuevo archivo de video. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Sí | N/A | El archivo de video de entrada del cual se eliminará el fondo. | +| `background_color` | STRING | Sí | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | El color sólido que se utilizará como nuevo fondo para el video de salida. | +| `seed` | INT | No | 0 a 2147483647 | Un valor de semilla que controla si el nodo debe volver a ejecutarse. Los resultados no son deterministas independientemente del valor de la semilla. (por defecto: 0) | + +**Nota:** El video de entrada debe tener una duración de 60 segundos o menos. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `output` | VIDEO | El archivo de video procesado con el fondo eliminado y reemplazado por el color seleccionado. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/fr.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/fr.md new file mode 100644 index 000000000..3fa590e47 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/fr.md @@ -0,0 +1,19 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/fr.md) + +Ce nœud supprime l'arrière-plan d'une vidéo en utilisant le service Bria AI. Il traite la vidéo d'entrée et remplace l'arrière-plan original par une couleur unie de votre choix. L'opération est effectuée via une API externe, et le résultat est renvoyé sous la forme d'un nouveau fichier vidéo. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Oui | N/A | Le fichier vidéo d'entrée dont l'arrière-plan sera supprimé. | +| `background_color` | STRING | Oui | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | La couleur unie à utiliser comme nouvel arrière-plan pour la vidéo de sortie. | +| `seed` | INT | Non | 0 à 2147483647 | Une valeur de seed qui contrôle si le nœud doit être réexécuté. Les résultats sont non déterministes, quelle que soit la valeur du seed. (par défaut : 0) | + +**Note :** La vidéo d'entrée doit avoir une durée de 60 secondes ou moins. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `output` | VIDEO | Le fichier vidéo traité avec l'arrière-plan supprimé et remplacé par la couleur sélectionnée. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ja.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ja.md new file mode 100644 index 000000000..b31dbf36d --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ja.md @@ -0,0 +1,19 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ja.md) + +このノードは、Bria AIサービスを使用して動画から背景を除去します。入力動画を処理し、元の背景を選択した単色に置き換えます。操作は外部APIを介して実行され、結果は新しい動画ファイルとして返されます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | はい | N/A | 背景を除去する入力動画ファイル。 | +| `background_color` | STRING | はい | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | 出力動画の新しい背景として使用する単色。 | +| `seed` | INT | いいえ | 0 から 2147483647 | ノードを再実行するかどうかを制御するシード値。シード値に関わらず結果は非決定的です。(デフォルト: 0) | + +**注意:** 入力動画の長さは60秒以下である必要があります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `output` | VIDEO | 背景が除去され、選択した色に置き換えられた処理済みの動画ファイル。 | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ko.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ko.md new file mode 100644 index 000000000..7de5f67d4 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ko.md @@ -0,0 +1,19 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ko.md) + +이 노드는 Bria AI 서비스를 사용하여 비디오에서 배경을 제거합니다. 입력 비디오를 처리하고 원래 배경을 선택한 단색으로 대체합니다. 이 작업은 외부 API를 통해 수행되며, 결과는 새로운 비디오 파일로 반환됩니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 예 | 해당 없음 | 배경이 제거될 입력 비디오 파일입니다. | +| `background_color` | STRING | 예 | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | 출력 비디오의 새로운 배경으로 사용할 단색입니다. | +| `seed` | INT | 아니요 | 0부터 2147483647까지 | 노드가 재실행되어야 하는지 여부를 제어하는 시드 값입니다. 시드 값과 관계없이 결과는 비결정적입니다. (기본값: 0) | + +**참고:** 입력 비디오의 길이는 60초 이하여야 합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `output` | VIDEO | 배경이 제거되고 선택한 색상으로 대체된 처리된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/pt-BR.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/pt-BR.md new file mode 100644 index 000000000..0bae557f4 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/pt-BR.md @@ -0,0 +1,19 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/pt-BR.md) + +Este nó remove o fundo de um vídeo usando o serviço Bria AI. Ele processa o vídeo de entrada e substitui o fundo original por uma cor sólida de sua escolha. A operação é realizada por meio de uma API externa, e o resultado é retornado como um novo arquivo de vídeo. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Sim | N/A | O arquivo de vídeo de entrada do qual o fundo será removido. | +| `background_color` | STRING | Sim | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | A cor sólida a ser usada como o novo fundo para o vídeo de saída. | +| `seed` | INT | Não | 0 a 2147483647 | Um valor de semente que controla se o nó deve ser executado novamente. Os resultados são não determinísticos, independentemente do valor da semente. (padrão: 0) | + +**Observação:** O vídeo de entrada deve ter uma duração de 60 segundos ou menos. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `output` | VIDEO | O arquivo de vídeo processado com o fundo removido e substituído pela cor selecionada. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ru.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ru.md new file mode 100644 index 000000000..49f629004 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ru.md @@ -0,0 +1,19 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/ru.md) + +Этот узел удаляет фон с видео с помощью сервиса Bria AI. Он обрабатывает входное видео и заменяет исходный фон на сплошной цвет по вашему выбору. Операция выполняется через внешний API, а результат возвращается в виде нового видеофайла. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Да | N/A | Входной видеофайл, с которого будет удалён фон. | +| `background_color` | STRING | Да | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | Сплошной цвет, который будет использоваться в качестве нового фона для выходного видео. | +| `seed` | INT | Нет | от 0 до 2147483647 | Значение сида, которое управляет тем, должен ли узел запускаться повторно. Результаты не являются детерминированными независимо от значения сида. (по умолчанию: 0) | + +**Примечание:** Длительность входного видео не должна превышать 60 секунд. + +## Выходные параметры + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `output` | VIDEO | Обработанный видеофайл с удалённым фоном, заменённым на выбранный цвет. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/tr.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/tr.md new file mode 100644 index 000000000..a3a2d9510 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/tr.md @@ -0,0 +1,19 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/tr.md) + +Bu düğüm, Bria AI servisini kullanarak bir videodan arka planı kaldırır. Giriş videosunu işler ve orijinal arka planı seçtiğiniz düz bir renkle değiştirir. İşlem harici bir API üzerinden gerçekleştirilir ve sonuç yeni bir video dosyası olarak döndürülür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Evet | Yok | Arka planının kaldırılacağı giriş video dosyası. | +| `background_color` | STRING | Evet | `"Siyah"`
`"Beyaz"`
`"Gri"`
`"Kırmızı"`
`"Yeşil"`
`"Mavi"`
`"Sarı"`
`"Camgöbeği"`
`"Eflatun"`
`"Turuncu"` | Çıktı videosu için yeni arka plan olarak kullanılacak düz renk. | +| `seed` | INT | Hayır | 0 ile 2147483647 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol eden bir seed değeri. Seed değerinden bağımsız olarak sonuçlar deterministik değildir. (varsayılan: 0) | + +**Not:** Giriş videosunun süresi 60 saniye veya daha kısa olmalıdır. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `output` | VIDEO | Arka planı kaldırılmış ve seçilen renkle değiştirilmiş işlenmiş video dosyası. | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh-TW.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh-TW.md new file mode 100644 index 000000000..84d626b88 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh-TW.md @@ -0,0 +1,19 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh-TW.md) + +此節點使用 Bria AI 服務來移除影片背景。它會處理輸入影片,並將原始背景替換為您選擇的純色背景。此操作透過外部 API 執行,結果會以新的影片檔案形式返回。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 是 | N/A | 將要移除背景的輸入影片檔案。 | +| `background_color` | STRING | 是 | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | 用作輸出影片新背景的純色。 | +| `seed` | INT | 否 | 0 至 2147483647 | 控制節點是否應重新執行的種子值。無論種子值為何,結果都是非確定性的。(預設值: 0) | + +**注意:** 輸入影片的長度必須在 60 秒或以下。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `output` | VIDEO | 經過處理的影片檔案,背景已移除並替換為所選顏色。 | diff --git a/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh.md b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh.md new file mode 100644 index 000000000..300bf8326 --- /dev/null +++ b/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh.md @@ -0,0 +1,19 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/BriaRemoveVideoBackground/zh.md) + +此节点使用 Bria AI 服务移除视频背景。它会处理输入视频,并将原始背景替换为您选择的纯色背景。该操作通过外部 API 执行,结果以新的视频文件形式返回。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 是 | N/A | 将被移除背景的输入视频文件。 | +| `background_color` | STRING | 是 | `"Black"`
`"White"`
`"Gray"`
`"Red"`
`"Green"`
`"Blue"`
`"Yellow"`
`"Cyan"`
`"Magenta"`
`"Orange"` | 用作输出视频新背景的纯色。 | +| `seed` | INT | 否 | 0 到 2147483647 | 控制节点是否应重新运行的种子值。无论种子值如何,结果都是非确定性的。(默认值:0) | + +**注意:** 输入视频的时长必须不超过 60 秒。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `output` | VIDEO | 经过处理的视频文件,背景已被移除并替换为所选颜色。 | diff --git a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/ar.md index 7493f173b..b615945d3 100644 --- a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/pt-BR.md index 21091307c..fd8efebfc 100644 --- a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/pt-BR.md @@ -21,4 +21,4 @@ Este nó gera um vídeo usando um prompt de texto junto com imagens do primeiro | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/tr.md index fc4c388ae..3efbd19ed 100644 --- a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/tr.md @@ -21,4 +21,4 @@ Bu düğüm, bir metin istemi ile birlikte ilk ve son kare görüntülerini kull | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/zh-TW.md index 9be7d6862..dace0841c 100644 --- a/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceFirstLastFrameNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/ar.md index aebb63482..2def8ff6b 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `IMAGE` | IMAGE | الصورة المحررة المُعادة من واجهة برمجة التطبيقات (API) الخاصة بـ ByteDance | \ No newline at end of file +| `IMAGE` | IMAGE | الصورة المحررة المُعادة من واجهة برمجة التطبيقات (API) الخاصة بـ ByteDance | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/pt-BR.md index 0d5197004..b14a8edf4 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/pt-BR.md @@ -17,4 +17,4 @@ O nó ByteDance Image Edit permite modificar imagens usando os modelos de IA da | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A imagem editada retornada pela API da ByteDance | \ No newline at end of file +| `IMAGE` | IMAGE | A imagem editada retornada pela API da ByteDance | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/tr.md index ae432cbd0..99c6e2d7e 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/tr.md @@ -17,4 +17,4 @@ ByteDance Image Edit düğümü, bir API aracılığıyla ByteDance'ın AI model | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | ByteDance API'sından dönen düzenlenmiş görsel | \ No newline at end of file +| `IMAGE` | IMAGE | ByteDance API'sından dönen düzenlenmiş görsel | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/zh-TW.md index 4e95e6174..97f8f56c9 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageEditNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageEditNode/zh-TW.md @@ -17,4 +17,4 @@ ByteDance 圖像編輯節點允許您透過 API 使用 ByteDance 的 AI 模型 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 從 ByteDance API 返回的編輯後圖像 | \ No newline at end of file +| `IMAGE` | IMAGE | 從 ByteDance API 返回的編輯後圖像 | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceImageNode/ar.md index 6d2438705..060b45013 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|-------| | `IMAGE` | IMAGE | الصورة المُولَّدة من واجهة برمجة تطبيقات ByteDance | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ByteDanceImageNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceImageNode/pt-BR.md index b4ccbed56..a134d5654 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageNode/pt-BR.md @@ -19,4 +19,4 @@ O nó ByteDance Image gera imagens usando modelos da ByteDance por meio de uma A | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A imagem gerada pela API da ByteDance | \ No newline at end of file +| `IMAGE` | IMAGE | A imagem gerada pela API da ByteDance | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceImageNode/tr.md index 558e034b1..feddcf431 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageNode/tr.md @@ -19,4 +19,4 @@ ByteDance Image düğümü, metin istemlerine dayalı olarak bir API aracılığ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | ByteDance API'sinden oluşturulan görsel | \ No newline at end of file +| `IMAGE` | IMAGE | ByteDance API'sinden oluşturulan görsel | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceImageNode/zh-TW.md index b6a611784..4dc08809f 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageNode/zh-TW.md @@ -19,4 +19,4 @@ ByteDance Image 節點透過基於文字提示的 API,使用 ByteDance 模型 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 從 ByteDance API 生成的圖像 | \ No newline at end of file +| `IMAGE` | IMAGE | 從 ByteDance API 生成的圖像 | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/ar.md index 0125cc2a2..b7cd2f35e 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشَأ استنادًا إلى النص التوجيهي والصور المرجعية المُدخَلة. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشَأ استنادًا إلى النص التوجيهي والصور المرجعية المُدخَلة. | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/pt-BR.md index 71ffdad9b..e8ea28c89 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/pt-BR.md @@ -19,4 +19,4 @@ O nó ByteDance Image Reference gera vídeos usando um prompt de texto e de uma | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado com base no prompt de entrada e nas imagens de referência. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado com base no prompt de entrada e nas imagens de referência. | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/tr.md index 6711b448f..56b7c69e6 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/tr.md @@ -19,4 +19,4 @@ ByteDance Image Reference Node, bir metin istemi ve bir ila dört referans görs | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi istemi ve referans görsellerine dayalı olarak oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Girdi istemi ve referans görsellerine dayalı olarak oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/zh-TW.md index faa90017d..9f43be0cc 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageReferenceNode/zh-TW.md @@ -19,4 +19,4 @@ ByteDance Image Reference 節點使用文字提示和一至四張參考圖片來 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入提示和參考圖片生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 根據輸入提示和參考圖片生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/ar.md index 80d26f43b..fce654821 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|------------------------------------------------------| | `output` | VIDEO | ملف الفيديو المُنشَأ بناءً على صورة الإدخال ومعلمات الموجه. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/pt-BR.md index d77ce9bb0..5cda1143a 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/pt-BR.md @@ -20,4 +20,4 @@ O nó ByteDance Image to Video gera vídeos usando modelos da ByteDance por meio | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado com base na imagem de entrada e nos parâmetros do prompt. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado com base na imagem de entrada e nos parâmetros do prompt. | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/tr.md index 90b05ea1a..02cf18ca5 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/tr.md @@ -20,4 +20,4 @@ ByteDance Image to Video düğümü, bir giriş görseli ve metin istemi aracıl | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi görseli ve istem parametrelerine dayalı olarak oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Girdi görseli ve istem parametrelerine dayalı olarak oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/zh-TW.md index 23302c0b5..b404a2a8e 100644 --- a/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceImageToVideoNode/zh-TW.md @@ -20,4 +20,4 @@ ByteDance Image to Video 節點透過 API 使用 ByteDance 模型,根據輸入 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入圖像和提示參數生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 根據輸入圖像和提示參數生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/ar.md index 17a5e9ff4..72d6f948d 100644 --- a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | الصورة(الصور) المُولدة بناءً على المعاملات المدخلة والأمر النصي | \ No newline at end of file +| `IMAGE` | IMAGE | الصورة(الصور) المُولدة بناءً على المعاملات المدخلة والأمر النصي | diff --git a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/pt-BR.md index b9a9edde7..b6eb0ab13 100644 --- a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/pt-BR.md @@ -22,4 +22,4 @@ O nó ByteDance Seedream 4 oferece capacidades unificadas de geração de texto | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Imagem(ns) gerada(s) com base nos parâmetros de entrada e no prompt | \ No newline at end of file +| `IMAGE` | IMAGE | Imagem(ns) gerada(s) com base nos parâmetros de entrada e no prompt | diff --git a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/tr.md index 6158d23c0..e5a0ad402 100644 --- a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/tr.md @@ -22,4 +22,4 @@ ByteDance Seedream 4 düğümü, 4K çözünürlüğe kadar birleşik metinden g | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Girdi parametrelerine ve isteme dayalı olarak oluşturulan görsel(ler) | \ No newline at end of file +| `IMAGE` | IMAGE | Girdi parametrelerine ve isteme dayalı olarak oluşturulan görsel(ler) | diff --git a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/zh-TW.md index 37e27d361..3c6ed1e96 100644 --- a/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceSeedreamNode/zh-TW.md @@ -22,4 +22,4 @@ ByteDance Seedream 4 節點提供統一的文字生成圖像功能,以及高 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 根據輸入參數和提示生成的圖像 | \ No newline at end of file +| `IMAGE` | IMAGE | 根據輸入參數和提示生成的圖像 | diff --git a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/ar.md index f45bfe39e..a9b4f9025 100644 --- a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/ar.md @@ -28,4 +28,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `output` | VIDEO | ملف الفيديو المُنشئ | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/pt-BR.md index 3d4a7bda7..72269f95b 100644 --- a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/pt-BR.md @@ -26,4 +26,4 @@ O nó ByteDance Text to Video gera vídeos usando modelos da ByteDance por meio | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/tr.md index a152e7932..5d40ca4f7 100644 --- a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/tr.md @@ -26,4 +26,4 @@ ByteDance Text to Video düğümü, metin istemlerine dayalı olarak bir API ara | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/zh-TW.md index 177787b2f..52e6fc9f4 100644 --- a/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ByteDanceTextToVideoNode/zh-TW.md @@ -26,4 +26,4 @@ ByteDance Text to Video 節點透過 API 使用 ByteDance 模型,根據文字 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/CFGGuider/ar.md b/comfyui_embedded_docs/docs/CFGGuider/ar.md index 5a4cc120e..f25765561 100644 --- a/comfyui_embedded_docs/docs/CFGGuider/ar.md +++ b/comfyui_embedded_docs/docs/CFGGuider/ar.md @@ -15,4 +15,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |--------------|---------------|-------| -| `GUIDER` | GUIDER | كائن موجه يمكن تمريره إلى عُقَد أخذ العينات للتحكم في عملية التوليد | \ No newline at end of file +| `GUIDER` | GUIDER | كائن موجه يمكن تمريره إلى عُقَد أخذ العينات للتحكم في عملية التوليد | diff --git a/comfyui_embedded_docs/docs/CFGGuider/pt-BR.md b/comfyui_embedded_docs/docs/CFGGuider/pt-BR.md index 8d090ab98..39246742e 100644 --- a/comfyui_embedded_docs/docs/CFGGuider/pt-BR.md +++ b/comfyui_embedded_docs/docs/CFGGuider/pt-BR.md @@ -15,4 +15,4 @@ O nó CFGGuider cria um sistema de orientação para controlar o processo de amo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Um objeto guia que pode ser passado para nós de amostragem para controlar o processo de geração | \ No newline at end of file +| `GUIDER` | GUIDER | Um objeto guia que pode ser passado para nós de amostragem para controlar o processo de geração | diff --git a/comfyui_embedded_docs/docs/CFGGuider/tr.md b/comfyui_embedded_docs/docs/CFGGuider/tr.md index 87e0b9eb4..b49563867 100644 --- a/comfyui_embedded_docs/docs/CFGGuider/tr.md +++ b/comfyui_embedded_docs/docs/CFGGuider/tr.md @@ -15,4 +15,4 @@ CFGGuider düğümü, görüntü oluşturma sürecindeki örnekleme işlemini ko | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Oluşturma sürecini kontrol etmek için örnekleme düğümlerine aktarılabilen bir kılavuz nesnesi | \ No newline at end of file +| `GUIDER` | GUIDER | Oluşturma sürecini kontrol etmek için örnekleme düğümlerine aktarılabilen bir kılavuz nesnesi | diff --git a/comfyui_embedded_docs/docs/CFGGuider/zh-TW.md b/comfyui_embedded_docs/docs/CFGGuider/zh-TW.md index d2141e217..1dcbd81f6 100644 --- a/comfyui_embedded_docs/docs/CFGGuider/zh-TW.md +++ b/comfyui_embedded_docs/docs/CFGGuider/zh-TW.md @@ -15,4 +15,4 @@ CFGGuider 節點建立了一個用於控制圖像生成採樣過程的引導系 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | 引導器物件,可傳遞給採樣節點以控制生成過程 | \ No newline at end of file +| `GUIDER` | GUIDER | 引導器物件,可傳遞給採樣節點以控制生成過程 | diff --git a/comfyui_embedded_docs/docs/CFGNorm/ar.md b/comfyui_embedded_docs/docs/CFGNorm/ar.md index f461f9a59..498e18165 100644 --- a/comfyui_embedded_docs/docs/CFGNorm/ar.md +++ b/comfyui_embedded_docs/docs/CFGNorm/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |---------------|---------------|--------| -| `patched_model` | MODEL | يُرجع النموذج المعدل مع تطبيق تسوية CFG على عملية أخذ العينات الخاصة به | \ No newline at end of file +| `patched_model` | MODEL | يُرجع النموذج المعدل مع تطبيق تسوية CFG على عملية أخذ العينات الخاصة به | diff --git a/comfyui_embedded_docs/docs/CFGNorm/pt-BR.md b/comfyui_embedded_docs/docs/CFGNorm/pt-BR.md index d5546be54..4ec57e441 100644 --- a/comfyui_embedded_docs/docs/CFGNorm/pt-BR.md +++ b/comfyui_embedded_docs/docs/CFGNorm/pt-BR.md @@ -13,4 +13,4 @@ O nó CFGNorm aplica uma técnica de normalização ao processo de orientação | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `patched_model` | MODEL | Retorna o modelo modificado com a normalização CFG aplicada ao seu processo de amostragem | \ No newline at end of file +| `patched_model` | MODEL | Retorna o modelo modificado com a normalização CFG aplicada ao seu processo de amostragem | diff --git a/comfyui_embedded_docs/docs/CFGNorm/tr.md b/comfyui_embedded_docs/docs/CFGNorm/tr.md index f28cde797..9f8df6f88 100644 --- a/comfyui_embedded_docs/docs/CFGNorm/tr.md +++ b/comfyui_embedded_docs/docs/CFGNorm/tr.md @@ -13,4 +13,4 @@ CFGNorm düğümü, yayılım modellerinde sınıflandırıcısız kılavuzluk ( | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `patched_model` | MODEL | Örnekleme sürecine CFG normalleştirmesi uygulanmış olarak değiştirilmiş modeli döndürür | \ No newline at end of file +| `patched_model` | MODEL | Örnekleme sürecine CFG normalleştirmesi uygulanmış olarak değiştirilmiş modeli döndürür | diff --git a/comfyui_embedded_docs/docs/CFGNorm/zh-TW.md b/comfyui_embedded_docs/docs/CFGNorm/zh-TW.md index d12c3e0a7..eb7324c96 100644 --- a/comfyui_embedded_docs/docs/CFGNorm/zh-TW.md +++ b/comfyui_embedded_docs/docs/CFGNorm/zh-TW.md @@ -15,4 +15,4 @@ CFGNorm 節點在擴散模型中對分類器自由引導(CFG)過程應用一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 返回已在其採樣過程中應用 CFG 標準化的修改後模型 | \ No newline at end of file +| `patched_model` | MODEL | 返回已在其採樣過程中應用 CFG 標準化的修改後模型 | diff --git a/comfyui_embedded_docs/docs/CFGZeroStar/ar.md b/comfyui_embedded_docs/docs/CFGZeroStar/ar.md index a2979b812..c774f597b 100644 --- a/comfyui_embedded_docs/docs/CFGZeroStar/ar.md +++ b/comfyui_embedded_docs/docs/CFGZeroStar/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `patched_model` | MODEL | النموذج المعدل مع تطبيق تحجيم الإرشاد CFGZeroStar عليه | \ No newline at end of file +| `patched_model` | MODEL | النموذج المعدل مع تطبيق تحجيم الإرشاد CFGZeroStar عليه | diff --git a/comfyui_embedded_docs/docs/CFGZeroStar/pt-BR.md b/comfyui_embedded_docs/docs/CFGZeroStar/pt-BR.md index 3f681d1ac..fca675cba 100644 --- a/comfyui_embedded_docs/docs/CFGZeroStar/pt-BR.md +++ b/comfyui_embedded_docs/docs/CFGZeroStar/pt-BR.md @@ -12,4 +12,4 @@ O nó CFGZeroStar aplica uma técnica especializada de dimensionamento de orient | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `patched_model` | MODEL | O modelo modificado com o dimensionamento de orientação CFGZeroStar aplicado | \ No newline at end of file +| `patched_model` | MODEL | O modelo modificado com o dimensionamento de orientação CFGZeroStar aplicado | diff --git a/comfyui_embedded_docs/docs/CFGZeroStar/tr.md b/comfyui_embedded_docs/docs/CFGZeroStar/tr.md index 339cea5ae..895ed80e3 100644 --- a/comfyui_embedded_docs/docs/CFGZeroStar/tr.md +++ b/comfyui_embedded_docs/docs/CFGZeroStar/tr.md @@ -12,4 +12,4 @@ CFGZeroStar düğümü, difüzyon modellerine özel bir rehberlik ölçeklendirm | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `patched_model` | MODEL | CFGZeroStar rehberlik ölçeklendirmesi uygulanmış değiştirilmiş model | \ No newline at end of file +| `patched_model` | MODEL | CFGZeroStar rehberlik ölçeklendirmesi uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/CFGZeroStar/zh-TW.md b/comfyui_embedded_docs/docs/CFGZeroStar/zh-TW.md index 312be6268..20c2475ea 100644 --- a/comfyui_embedded_docs/docs/CFGZeroStar/zh-TW.md +++ b/comfyui_embedded_docs/docs/CFGZeroStar/zh-TW.md @@ -12,4 +12,4 @@ CFGZeroStar 節點對擴散模型應用了一種專門的引導縮放技術。 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 已應用 CFGZeroStar 引導縮放的修改後模型 | \ No newline at end of file +| `patched_model` | MODEL | 已應用 CFGZeroStar 引導縮放的修改後模型 | diff --git a/comfyui_embedded_docs/docs/CLIPAdd/ar.md b/comfyui_embedded_docs/docs/CLIPAdd/ar.md index 27ffc19be..2b86acaeb 100644 --- a/comfyui_embedded_docs/docs/CLIPAdd/ar.md +++ b/comfyui_embedded_docs/docs/CLIPAdd/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `CLIP` | CLIP | يُرجع نموذج CLIP مدمجاً يجمع بين ميزات كلا النموذجين المدخلين | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CLIPAdd/pt-BR.md b/comfyui_embedded_docs/docs/CLIPAdd/pt-BR.md index 1026c81db..f927a697a 100644 --- a/comfyui_embedded_docs/docs/CLIPAdd/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPAdd/pt-BR.md @@ -13,4 +13,4 @@ O nó CLIPAdd combina dois modelos CLIP mesclando seus *patches* de chave. Ele c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CLIP` | CLIP | Retorna um modelo CLIP mesclado, combinando características de ambos os modelos de entrada | \ No newline at end of file +| `CLIP` | CLIP | Retorna um modelo CLIP mesclado, combinando características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/CLIPAdd/tr.md b/comfyui_embedded_docs/docs/CLIPAdd/tr.md index aedd14699..cb752b59b 100644 --- a/comfyui_embedded_docs/docs/CLIPAdd/tr.md +++ b/comfyui_embedded_docs/docs/CLIPAdd/tr.md @@ -13,4 +13,4 @@ CLIPAdd düğümü, iki CLIP modelini anahtar yamalarını birleştirerek birle | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CLIP` | CLIP | Her iki girdi modelinden gelen özellikleri birleştirilmiş bir CLIP modeli döndürür | \ No newline at end of file +| `CLIP` | CLIP | Her iki girdi modelinden gelen özellikleri birleştirilmiş bir CLIP modeli döndürür | diff --git a/comfyui_embedded_docs/docs/CLIPAdd/zh-TW.md b/comfyui_embedded_docs/docs/CLIPAdd/zh-TW.md index 999c59fcf..ecb5c0d7f 100644 --- a/comfyui_embedded_docs/docs/CLIPAdd/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPAdd/zh-TW.md @@ -13,4 +13,4 @@ CLIPAdd 節點透過合併兩個 CLIP 模型的關鍵修補程式來組合它們 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `CLIP` | CLIP | 返回合併後的 CLIP 模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `CLIP` | CLIP | 返回合併後的 CLIP 模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/ar.md b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/ar.md index b86cf02fd..92944cd61 100644 --- a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/ar.md +++ b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|-------| | `CLIP` | CLIP | يُرجع نموذج CLIP معدلاً مع تطبيق عوامل قياس الانتباه المحددة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/pt-BR.md b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/pt-BR.md index 9131e982d..312933966 100644 --- a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/pt-BR.md @@ -16,4 +16,4 @@ O nó CLIPAttentionMultiply permite ajustar o mecanismo de atenção em modelos | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CLIP` | CLIP | Retorna um modelo CLIP modificado com os fatores de escala de atenção especificados aplicados | \ No newline at end of file +| `CLIP` | CLIP | Retorna um modelo CLIP modificado com os fatores de escala de atenção especificados aplicados | diff --git a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/tr.md b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/tr.md index 7dae1b0da..343ef5ea3 100644 --- a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/tr.md +++ b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/tr.md @@ -16,4 +16,4 @@ CLIPAttentionMultiply düğümü, CLIP modellerindeki dikkat mekanizmasını, ö | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CLIP` | CLIP | Belirtilen dikkat ölçeklendirme faktörlerinin uygulandığı değiştirilmiş bir CLIP modeli döndürür | \ No newline at end of file +| `CLIP` | CLIP | Belirtilen dikkat ölçeklendirme faktörlerinin uygulandığı değiştirilmiş bir CLIP modeli döndürür | diff --git a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/zh-TW.md b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/zh-TW.md index 48aa85f1d..168527abf 100644 --- a/comfyui_embedded_docs/docs/CLIPAttentionMultiply/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPAttentionMultiply/zh-TW.md @@ -16,4 +16,4 @@ CLIPAttentionMultiply 節點允許您透過對自注意力層的不同組件應 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CLIP` | CLIP | 返回應用指定注意力縮放因子的修改後 CLIP 模型 | \ No newline at end of file +| `CLIP` | CLIP | 返回應用指定注意力縮放因子的修改後 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/CLIPMergeAdd/ar.md b/comfyui_embedded_docs/docs/CLIPMergeAdd/ar.md index f53b0374e..80266d8ab 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeAdd/ar.md +++ b/comfyui_embedded_docs/docs/CLIPMergeAdd/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CLIP` | CLIP | نموذج CLIP مُدمج يحتوي على هيكل النموذج الأساسي مع إضافة أجزاء من النموذج الثانوي | \ No newline at end of file +| `CLIP` | CLIP | نموذج CLIP مُدمج يحتوي على هيكل النموذج الأساسي مع إضافة أجزاء من النموذج الثانوي | diff --git a/comfyui_embedded_docs/docs/CLIPMergeAdd/pt-BR.md b/comfyui_embedded_docs/docs/CLIPMergeAdd/pt-BR.md index 356b70be1..738f35499 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeAdd/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPMergeAdd/pt-BR.md @@ -13,4 +13,4 @@ O nó CLIPMergeAdd combina dois modelos CLIP adicionando patches do segundo mode | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CLIP` | CLIP | Um modelo CLIP mesclado contendo a estrutura do modelo base com patches adicionados do modelo secundário | \ No newline at end of file +| `CLIP` | CLIP | Um modelo CLIP mesclado contendo a estrutura do modelo base com patches adicionados do modelo secundário | diff --git a/comfyui_embedded_docs/docs/CLIPMergeAdd/tr.md b/comfyui_embedded_docs/docs/CLIPMergeAdd/tr.md index 1366ba8b2..41828db82 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeAdd/tr.md +++ b/comfyui_embedded_docs/docs/CLIPMergeAdd/tr.md @@ -13,4 +13,4 @@ CLIPMergeAdd düğümü, ikinci modelden yamaları birinci modele ekleyerek iki | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CLIP` | CLIP | İkincil modelden eklenen yamalarla birlikte temel model yapısını içeren birleştirilmiş bir CLIP modeli | \ No newline at end of file +| `CLIP` | CLIP | İkincil modelden eklenen yamalarla birlikte temel model yapısını içeren birleştirilmiş bir CLIP modeli | diff --git a/comfyui_embedded_docs/docs/CLIPMergeAdd/zh-TW.md b/comfyui_embedded_docs/docs/CLIPMergeAdd/zh-TW.md index 3432c3692..1eac36bc5 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeAdd/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPMergeAdd/zh-TW.md @@ -13,4 +13,4 @@ CLIPMergeAdd 節點透過將第二個 CLIP 模型中的修補程式添加到第 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CLIP` | CLIP | 包含基礎模型結構並添加了次要模型修補程式的合併 CLIP 模型 | \ No newline at end of file +| `CLIP` | CLIP | 包含基礎模型結構並添加了次要模型修補程式的合併 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/CLIPMergeSubtract/ar.md b/comfyui_embedded_docs/docs/CLIPMergeSubtract/ar.md index e071d9f8a..9ca24ea08 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeSubtract/ar.md +++ b/comfyui_embedded_docs/docs/CLIPMergeSubtract/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `clip` | CLIP | نموذج CLIP الناتج بعد طرح أوزان النموذج الثاني من النموذج الأول | \ No newline at end of file +| `clip` | CLIP | نموذج CLIP الناتج بعد طرح أوزان النموذج الثاني من النموذج الأول | diff --git a/comfyui_embedded_docs/docs/CLIPMergeSubtract/pt-BR.md b/comfyui_embedded_docs/docs/CLIPMergeSubtract/pt-BR.md index 42b25087b..eaf00e73c 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeSubtract/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPMergeSubtract/pt-BR.md @@ -16,4 +16,4 @@ O nó CLIPMergeSubtract realiza a fusão de modelos subtraindo os pesos de um mo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `clip` | CLIP | O modelo CLIP resultante após subtrair os pesos do segundo modelo do primeiro | \ No newline at end of file +| `clip` | CLIP | O modelo CLIP resultante após subtrair os pesos do segundo modelo do primeiro | diff --git a/comfyui_embedded_docs/docs/CLIPMergeSubtract/tr.md b/comfyui_embedded_docs/docs/CLIPMergeSubtract/tr.md index 729d85b46..b44fe4cda 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeSubtract/tr.md +++ b/comfyui_embedded_docs/docs/CLIPMergeSubtract/tr.md @@ -16,4 +16,4 @@ CLIPMergeSubtract düğümü, bir CLIP modelinin ağırlıklarını diğerinden | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `clip` | CLIP | İkinci modelin ağırlıkları birinciden çıkarıldıktan sonra elde edilen CLIP modeli | \ No newline at end of file +| `clip` | CLIP | İkinci modelin ağırlıkları birinciden çıkarıldıktan sonra elde edilen CLIP modeli | diff --git a/comfyui_embedded_docs/docs/CLIPMergeSubtract/zh-TW.md b/comfyui_embedded_docs/docs/CLIPMergeSubtract/zh-TW.md index 4a4de17f9..98ff31fed 100644 --- a/comfyui_embedded_docs/docs/CLIPMergeSubtract/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPMergeSubtract/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `clip` | CLIP | 從第一個模型減去第二個模型權重後得到的 CLIP 模型 | \ No newline at end of file +| `clip` | CLIP | 從第一個模型減去第二個模型權重後得到的 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/CLIPSubtract/ar.md b/comfyui_embedded_docs/docs/CLIPSubtract/ar.md index 29b63dc8d..74b443022 100644 --- a/comfyui_embedded_docs/docs/CLIPSubtract/ar.md +++ b/comfyui_embedded_docs/docs/CLIPSubtract/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `CLIP` | CLIP | نموذج CLIP الناتج بعد عملية الطرح | \ No newline at end of file +| `CLIP` | CLIP | نموذج CLIP الناتج بعد عملية الطرح | diff --git a/comfyui_embedded_docs/docs/CLIPSubtract/pt-BR.md b/comfyui_embedded_docs/docs/CLIPSubtract/pt-BR.md index d40819e09..b42ed80ee 100644 --- a/comfyui_embedded_docs/docs/CLIPSubtract/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPSubtract/pt-BR.md @@ -14,4 +14,4 @@ O nó CLIPSubtract realiza uma operação de subtração entre dois modelos CLIP | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CLIP` | CLIP | O modelo CLIP resultante após a operação de subtração | \ No newline at end of file +| `CLIP` | CLIP | O modelo CLIP resultante após a operação de subtração | diff --git a/comfyui_embedded_docs/docs/CLIPSubtract/tr.md b/comfyui_embedded_docs/docs/CLIPSubtract/tr.md index 06fa8f56a..62843df82 100644 --- a/comfyui_embedded_docs/docs/CLIPSubtract/tr.md +++ b/comfyui_embedded_docs/docs/CLIPSubtract/tr.md @@ -14,4 +14,4 @@ CLIPSubtract düğümü, iki CLIP modeli arasında çıkarma işlemi gerçekleş | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CLIP` | CLIP | Çıkarma işleminden sonra elde edilen CLIP modeli | \ No newline at end of file +| `CLIP` | CLIP | Çıkarma işleminden sonra elde edilen CLIP modeli | diff --git a/comfyui_embedded_docs/docs/CLIPSubtract/zh-TW.md b/comfyui_embedded_docs/docs/CLIPSubtract/zh-TW.md index 395f4ecd5..1c1a5ee45 100644 --- a/comfyui_embedded_docs/docs/CLIPSubtract/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPSubtract/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CLIP` | CLIP | 減法運算後產生的 CLIP 模型 | \ No newline at end of file +| `CLIP` | CLIP | 減法運算後產生的 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/ar.md index ebe35829b..b3d2e3148 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `CONDITIONING` | CONDITIONING | بيانات تكييف مُحسَّنة مع إضافة معاملات التحكم بالانتباه المتقاطع لـ controlnet | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/pt-BR.md index e008923bf..7b60f6a6a 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/pt-BR.md @@ -16,4 +16,4 @@ O nó CLIPTextEncodeControlnet processa uma entrada de texto usando um modelo CL | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Dados de condicionamento aprimorados com parâmetros de atenção cruzada de controlnet adicionados | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Dados de condicionamento aprimorados com parâmetros de atenção cruzada de controlnet adicionados | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/tr.md index 21f22c36e..e8562cf38 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/tr.md @@ -16,4 +16,4 @@ CLIPTextEncodeControlnet düğümü, metin girişini bir CLIP modeli kullanarak | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Eklenen controlnet cross-attention parametreleriyle geliştirilmiş koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Eklenen controlnet cross-attention parametreleriyle geliştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/zh-TW.md index baaba51fa..0acefad98 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeControlnet/zh-TW.md @@ -16,4 +16,4 @@ CLIPTextEncodeControlnet 節點使用 CLIP 模型處理文字輸入,並將其 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 帶有新增 controlnet cross-attention 參數的增強條件資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 帶有新增 controlnet cross-attention 參數的增強條件資料 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/ar.md index 90f31dbbc..7afdeed5e 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/ar.md @@ -18,4 +18,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | ناتج التكييف المدمج من جميع المدخلات النصية المعالجة | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | ناتج التكييف المدمج من جميع المدخلات النصية المعالجة | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/pt-BR.md index 10032cb9e..874107d93 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/pt-BR.md @@ -18,4 +18,4 @@ O nó CLIPTextEncodeHiDream processa múltiplas entradas de texto usando diferen | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | A saída de condicionamento combinada de todas as entradas de texto processadas | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | A saída de condicionamento combinada de todas as entradas de texto processadas | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/tr.md index 91d5988f6..75f649ebd 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/tr.md @@ -18,4 +18,4 @@ CLIPTextEncodeHiDream düğümü, birden fazla metin girişini farklı dil model | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | İşlenen tüm metin girdilerinden birleştirilmiş koşullandırma çıktısı | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | İşlenen tüm metin girdilerinden birleştirilmiş koşullandırma çıktısı | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/zh-TW.md index 73c6fb1f5..cbcd61607 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeHiDream/zh-TW.md @@ -18,4 +18,4 @@ CLIPTextEncodeHiDream 節點使用不同的語言模型處理多個文字輸入 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 來自所有已處理文字輸入的合併條件化輸出 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 來自所有已處理文字輸入的合併條件化輸出 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ar.md index 8f070826c..4cdda094f 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التوجيه المدمجة الناتجة من كلا المطالبتين النصيتين، جاهزة للتغذية إلى نموذج Kandinsky 5 لتوليد الصور. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التوجيه المدمجة الناتجة من كلا المطالبتين النصيتين، جاهزة للتغذية إلى نموذج Kandinsky 5 لتوليد الصور. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/en.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/en.md index 562d81bb8..a8ce07d98 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/en.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/en.md @@ -14,4 +14,4 @@ The CLIPTextEncodeKandinsky5 node prepares text prompts for use with the Kandins | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | The combined conditioning data generated from both text prompts, ready to be fed into a Kandinsky 5 model for image generation. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | The combined conditioning data generated from both text prompts, ready to be fed into a Kandinsky 5 model for image generation. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/es.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/es.md index 6e92616cb..663c68b69 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/es.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/es.md @@ -14,4 +14,4 @@ El nodo CLIPTextEncodeKandinsky5 prepara los prompts de texto para su uso con el | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Los datos de acondicionamiento combinados generados a partir de ambos prompts de texto, listos para ser introducidos en un modelo Kandinsky 5 para la generación de imágenes. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Los datos de acondicionamiento combinados generados a partir de ambos prompts de texto, listos para ser introducidos en un modelo Kandinsky 5 para la generación de imágenes. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/fr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/fr.md index fab479339..81fcc7097 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/fr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/fr.md @@ -14,4 +14,4 @@ Le nœud CLIPTextEncodeKandinsky5 prépare les invites textuelles pour une utili | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Les données de conditionnement combinées générées à partir des deux invites textuelles, prêtes à être utilisées par un modèle Kandinsky 5 pour la génération d'image. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Les données de conditionnement combinées générées à partir des deux invites textuelles, prêtes à être utilisées par un modèle Kandinsky 5 pour la génération d'image. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ja.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ja.md index 9344a2ec3..3b311569d 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ja.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ja.md @@ -14,4 +14,4 @@ CLIPTextEncodeKandinsky5ノードは、Kandinsky 5モデルで使用するため | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 両方のテキストプロンプトから生成された結合されたコンディショニングデータで、画像生成のためにKandinsky 5モデルに入力する準備ができています。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 両方のテキストプロンプトから生成された結合されたコンディショニングデータで、画像生成のためにKandinsky 5モデルに入力する準備ができています。 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ko.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ko.md index bb63a2aac..68ea39184 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ko.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ko.md @@ -14,4 +14,4 @@ CLIPTextEncodeKandinsky5 노드는 Kandinsky 5 모델에서 사용할 수 있도 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 두 텍스트 프롬프트에서 생성된 결합된 조건화 데이터로, Kandinsky 5 모델에 입력되어 이미지 생성을 위해 준비된 상태입니다. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 두 텍스트 프롬프트에서 생성된 결합된 조건화 데이터로, Kandinsky 5 모델에 입력되어 이미지 생성을 위해 준비된 상태입니다. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/pt-BR.md index 3b8525feb..76130e282 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/pt-BR.md @@ -14,4 +14,4 @@ O nó CLIPTextEncodeKandinsky5 prepara prompts de texto para uso com o modelo Ka | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados gerados a partir de ambos os prompts de texto, prontos para serem alimentados em um modelo Kandinsky 5 para geração de imagem. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados gerados a partir de ambos os prompts de texto, prontos para serem alimentados em um modelo Kandinsky 5 para geração de imagem. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ru.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ru.md index c75b931d3..3ac37697f 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ru.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Объединённые кондиционирующие данные, сгенерированные из обоих текстовых промптов, готовые для передачи в модель Kandinsky 5 для генерации изображения. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Объединённые кондиционирующие данные, сгенерированные из обоих текстовых промптов, готовые для передачи в модель Kandinsky 5 для генерации изображения. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/tr.md index 0cae71b5e..66739c35f 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/tr.md @@ -14,4 +14,4 @@ CLIPTextEncodeKandinsky5 düğümü, Kandinsky 5 modeliyle kullanılmak üzere m | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Her iki metin isteminden oluşturulan birleşik koşullandırma verisi, görüntü oluşturma için bir Kandinsky 5 modeline beslenmeye hazır. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Her iki metin isteminden oluşturulan birleşik koşullandırma verisi, görüntü oluşturma için bir Kandinsky 5 modeline beslenmeye hazır. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh-TW.md index 0dcfbc1eb..ed4f3e7d9 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 由兩個文字提示生成的組合條件資料,準備好輸入到 Kandinsky 5 模型以進行圖像生成。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 由兩個文字提示生成的組合條件資料,準備好輸入到 Kandinsky 5 模型以進行圖像生成。 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh.md b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh.md index ee331a0d3..8b890cae9 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeKandinsky5/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 由两个文本提示生成的组合条件数据,准备输入到 Kandinsky 5 模型以进行图像生成。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 由两个文本提示生成的组合条件数据,准备输入到 Kandinsky 5 模型以进行图像生成。 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/ar.md index 6694e72eb..105e060f6 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|--------------|-------| -| `CONDITIONING` | CONDITIONING | بيانات تكييف تحتوي على النص المضمن المستخدم لتوجيه نموذج الانتشار. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات تكييف تحتوي على النص المضمن المستخدم لتوجيه نموذج الانتشار. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/pt-BR.md index f6638f1ad..4595b9031 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/pt-BR.md @@ -16,4 +16,4 @@ O nó CLIP Text Encode for Lumina2 codifica um prompt de sistema e um prompt do | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Um condicionamento contendo o texto incorporado usado para orientar o modelo de difusão. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Um condicionamento contendo o texto incorporado usado para orientar o modelo de difusão. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/tr.md index 0a1648324..650e55bff 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/tr.md @@ -16,4 +16,4 @@ CLIP Text Encode for Lumina2 düğümü, bir sistem istemi ve kullanıcı istemi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Difüzyon modelini yönlendirmek için kullanılan gömülü metni içeren bir koşullandırma. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Difüzyon modelini yönlendirmek için kullanılan gömülü metni içeren bir koşullandırma. | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/zh-TW.md index 9964beec2..6877ac549 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeLumina2/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 包含嵌入文字的條件化資料,用於引導擴散模型。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 包含嵌入文字的條件化資料,用於引導擴散模型。 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/ar.md index 609603ffb..20acbcb06 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/ar.md @@ -19,4 +19,4 @@ | اسم الإخراج | نوع البيانات | الوصف | |---------------|---------------|--------| | `CONDITIONING` | CONDITIONING | بيانات التكييف المرمزة مع رموز النص ومعلومات الدقة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/pt-BR.md index 3cc7d5cd1..f22543dd7 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/pt-BR.md @@ -15,4 +15,4 @@ Codifica texto e define o condicionamento de resolução para PixArt Alpha. Este | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Dados de condicionamento codificados com tokens de texto e informações de resolução | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Dados de condicionamento codificados com tokens de texto e informações de resolução | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/tr.md index 75924b60f..8ceeb8051 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/tr.md @@ -15,4 +15,4 @@ Metni kodlar ve PixArt Alpha için çözünürlük koşullandırmasını ayarlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Metin token'ları ve çözünürlük bilgisi içeren kodlanmış koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Metin token'ları ve çözünürlük bilgisi içeren kodlanmış koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/zh-TW.md index 68cdf1145..b73ad5d91 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodePixArtAlpha/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 包含文字標記和解析度資訊的編碼條件資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 包含文字標記和解析度資訊的編碼條件資料 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/ar.md b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/ar.md index 3fc6736cf..5595ee8ac 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/ar.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/ar.md @@ -24,4 +24,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|---------------|--------| | `CONDITIONING` | CONDITIONING | بيانات ترميز النص المُكيفة الجاهزة للاستخدام في مسارات توليد SD3 | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/pt-BR.md b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/pt-BR.md index e71584aec..f8886dcbd 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/pt-BR.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/pt-BR.md @@ -22,4 +22,4 @@ O nó CLIPTextEncodeSD3 processa entradas de texto para modelos Stable Diffusion | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento de texto codificados, prontos para uso nos *pipelines* de geração do SD3 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento de texto codificados, prontos para uso nos *pipelines* de geração do SD3 | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/tr.md b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/tr.md index 4434e214a..4fa8e15be 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/tr.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/tr.md @@ -22,4 +22,4 @@ CLIPTextEncodeSD3 düğümü, Stable Diffusion 3 modelleri için metin girişler | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | SD3 üretim pipeline'larında kullanıma hazır kodlanmış metin koşullandırma verileri | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | SD3 üretim pipeline'larında kullanıma hazır kodlanmış metin koşullandırma verileri | diff --git a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/zh-TW.md b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/zh-TW.md index 2b2d199ec..811f2426e 100644 --- a/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/zh-TW.md +++ b/comfyui_embedded_docs/docs/CLIPTextEncodeSD3/zh-TW.md @@ -22,4 +22,4 @@ CLIPTextEncodeSD3 節點透過使用不同的 CLIP 模型編碼多個文字提 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 已編碼的文字調節資料,準備好用於 SD3 生成流程 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 已編碼的文字調節資料,準備好用於 SD3 生成流程 | diff --git a/comfyui_embedded_docs/docs/Canny/ar.md b/comfyui_embedded_docs/docs/Canny/ar.md index fcba780f3..8296ccc01 100644 --- a/comfyui_embedded_docs/docs/Canny/ar.md +++ b/comfyui_embedded_docs/docs/Canny/ar.md @@ -39,4 +39,4 @@ - حواف مقطوعة: حاول خفض العتبة العالية - الكثير من الضوضاء: ارفع العتبة المنخفضة - فقدان تفاصيل مهمة: اخفض العتبة المنخفضة -- حواف خشنة جدًا: تحقق من جودة الصورة المدخلة ودقتها \ No newline at end of file +- حواف خشنة جدًا: تحقق من جودة الصورة المدخلة ودقتها diff --git a/comfyui_embedded_docs/docs/Canny/pt-BR.md b/comfyui_embedded_docs/docs/Canny/pt-BR.md index 638c693ba..a22d18fa5 100644 --- a/comfyui_embedded_docs/docs/Canny/pt-BR.md +++ b/comfyui_embedded_docs/docs/Canny/pt-BR.md @@ -39,4 +39,4 @@ A saída final é uma imagem em preto e branco, onde as partes brancas são as l - Bordas quebradas: Tente diminuir o limite alto - Muito ruído: Aumente o limite baixo - Detalhes importantes ausentes: Diminua o limite baixo -- Bordas muito grossas: Verifique a qualidade e resolução da imagem de entrada \ No newline at end of file +- Bordas muito grossas: Verifique a qualidade e resolução da imagem de entrada diff --git a/comfyui_embedded_docs/docs/Canny/tr.md b/comfyui_embedded_docs/docs/Canny/tr.md index f19674843..7a79df426 100644 --- a/comfyui_embedded_docs/docs/Canny/tr.md +++ b/comfyui_embedded_docs/docs/Canny/tr.md @@ -39,4 +39,4 @@ Nihai çıktı, siyah beyaz bir görüntüdür; beyaz kısımlar tespit edilen k - Kopuk kenarlar: Yüksek eşiği düşürmeyi deneyin - Çok fazla gürültü: Düşük eşiği yükseltin - Önemli detayların eksik olması: Düşük eşiği düşürün -- Kenarların çok kaba olması: Girdi görüntüsünün kalitesini ve çözünürlüğünü kontrol edin \ No newline at end of file +- Kenarların çok kaba olması: Girdi görüntüsünün kalitesini ve çözünürlüğünü kontrol edin diff --git a/comfyui_embedded_docs/docs/Canny/zh-TW.md b/comfyui_embedded_docs/docs/Canny/zh-TW.md index f3652f360..22bdd29f2 100644 --- a/comfyui_embedded_docs/docs/Canny/zh-TW.md +++ b/comfyui_embedded_docs/docs/Canny/zh-TW.md @@ -39,4 +39,4 @@ - 邊緣斷裂:嘗試降低高閾值 - 噪點過多:提高低閾值 - 遺失重要細節:降低低閾值 -- 邊緣過於粗糙:檢查輸入影像質量和解析度 \ No newline at end of file +- 邊緣過於粗糙:檢查輸入影像質量和解析度 diff --git a/comfyui_embedded_docs/docs/CaseConverter/ar.md b/comfyui_embedded_docs/docs/CaseConverter/ar.md index fe914f974..1a460d0dd 100644 --- a/comfyui_embedded_docs/docs/CaseConverter/ar.md +++ b/comfyui_embedded_docs/docs/CaseConverter/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | السلسلة النصية المدخلة محولة إلى صيغة حالة الأحرف المحددة | \ No newline at end of file +| `output` | STRING | السلسلة النصية المدخلة محولة إلى صيغة حالة الأحرف المحددة | diff --git a/comfyui_embedded_docs/docs/CaseConverter/pt-BR.md b/comfyui_embedded_docs/docs/CaseConverter/pt-BR.md index 4eda81934..0476b24f3 100644 --- a/comfyui_embedded_docs/docs/CaseConverter/pt-BR.md +++ b/comfyui_embedded_docs/docs/CaseConverter/pt-BR.md @@ -13,4 +13,4 @@ O nó Case Converter transforma strings de texto em diferentes formatos de caixa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string de entrada convertida para o formato de caixa especificado | \ No newline at end of file +| `output` | STRING | A string de entrada convertida para o formato de caixa especificado | diff --git a/comfyui_embedded_docs/docs/CaseConverter/tr.md b/comfyui_embedded_docs/docs/CaseConverter/tr.md index 48638868a..d9422b5c6 100644 --- a/comfyui_embedded_docs/docs/CaseConverter/tr.md +++ b/comfyui_embedded_docs/docs/CaseConverter/tr.md @@ -13,4 +13,4 @@ Case Converter düğümü, metin dizilerini farklı harf büyüklüğü formatla | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Belirtilen büyük/küçük harf formatına dönüştürülmüş giriş dizisi | \ No newline at end of file +| `output` | STRING | Belirtilen büyük/küçük harf formatına dönüştürülmüş giriş dizisi | diff --git a/comfyui_embedded_docs/docs/CaseConverter/zh-TW.md b/comfyui_embedded_docs/docs/CaseConverter/zh-TW.md index 40793eaaf..aff29a713 100644 --- a/comfyui_embedded_docs/docs/CaseConverter/zh-TW.md +++ b/comfyui_embedded_docs/docs/CaseConverter/zh-TW.md @@ -13,4 +13,4 @@ Case Converter 節點可將文字字串轉換為不同的字母大小寫格式 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 已轉換為指定大小寫格式的輸入字串 | \ No newline at end of file +| `output` | STRING | 已轉換為指定大小寫格式的輸入字串 | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/ar.md b/comfyui_embedded_docs/docs/CenterCropImages/ar.md index f5e0c0ef6..3d9095516 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/ar.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد عملية القص من المركز. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد عملية القص من المركز. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/en.md b/comfyui_embedded_docs/docs/CenterCropImages/en.md index 965f4df6a..b18e912ce 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/en.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/en.md @@ -14,4 +14,4 @@ The Center Crop Images node crops an image from its center to a specified width | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resulting image after the center crop operation. | \ No newline at end of file +| `image` | IMAGE | The resulting image after the center crop operation. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/es.md b/comfyui_embedded_docs/docs/CenterCropImages/es.md index b10a952f0..4fe478cc6 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/es.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/es.md @@ -14,4 +14,4 @@ El nodo Recortar Imágenes desde el Centro recorta una imagen desde su centro a | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen resultante después de la operación de recorte central. | \ No newline at end of file +| `image` | IMAGE | La imagen resultante después de la operación de recorte central. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/fr.md b/comfyui_embedded_docs/docs/CenterCropImages/fr.md index c77f1d5cf..31e15d39a 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/fr.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/fr.md @@ -14,4 +14,4 @@ Le nœud Center Crop Images recadre une image depuis son centre selon une largeu | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image résultante après l'opération de recadrage central. | \ No newline at end of file +| `image` | IMAGE | L'image résultante après l'opération de recadrage central. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/ja.md b/comfyui_embedded_docs/docs/CenterCropImages/ja.md index e95e5a479..775628c40 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/ja.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/ja.md @@ -14,4 +14,4 @@ Center Crop Images ノードは、画像の中心から指定された幅と高 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | 中心クロップ操作後の結果画像。 | \ No newline at end of file +| `image` | IMAGE | 中心クロップ操作後の結果画像。 | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/ko.md b/comfyui_embedded_docs/docs/CenterCropImages/ko.md index 7d71ddc6e..be06b628f 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/ko.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/ko.md @@ -14,4 +14,4 @@ Center Crop Images 노드는 이미지를 중심에서 지정된 너비와 높 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 중심 자르기 작업 후 생성된 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 중심 자르기 작업 후 생성된 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/pt-BR.md b/comfyui_embedded_docs/docs/CenterCropImages/pt-BR.md index a9dd041ba..cd206e144 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/pt-BR.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/pt-BR.md @@ -14,4 +14,4 @@ O nó Center Crop Images recorta uma imagem a partir do seu centro para uma larg | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem resultante após a operação de recorte central. | \ No newline at end of file +| `image` | IMAGE | A imagem resultante após a operação de recorte central. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/ru.md b/comfyui_embedded_docs/docs/CenterCropImages/ru.md index 0ca370769..4efd44903 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/ru.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Результирующее изображение после операции обрезки по центру. | \ No newline at end of file +| `image` | IMAGE | Результирующее изображение после операции обрезки по центру. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/tr.md b/comfyui_embedded_docs/docs/CenterCropImages/tr.md index 261880954..97e4e8d68 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/tr.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/tr.md @@ -14,4 +14,4 @@ Center Crop Images düğümü, bir görüntüyü merkezinden belirtilen bir geni | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Merkez kırpma işlemi sonucunda elde edilen görüntü. | \ No newline at end of file +| `image` | IMAGE | Merkez kırpma işlemi sonucunda elde edilen görüntü. | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/zh-TW.md b/comfyui_embedded_docs/docs/CenterCropImages/zh-TW.md index 7654d2479..ab9939927 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/zh-TW.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/zh-TW.md @@ -14,4 +14,4 @@ Center Crop Images 節點會從圖像中心裁剪出指定寬度和高度的區 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 經過中心裁剪操作後產生的圖像。 | \ No newline at end of file +| `image` | IMAGE | 經過中心裁剪操作後產生的圖像。 | diff --git a/comfyui_embedded_docs/docs/CenterCropImages/zh.md b/comfyui_embedded_docs/docs/CenterCropImages/zh.md index 043dfd0f9..a723a26c7 100644 --- a/comfyui_embedded_docs/docs/CenterCropImages/zh.md +++ b/comfyui_embedded_docs/docs/CenterCropImages/zh.md @@ -14,4 +14,4 @@ Center Crop Images 节点将图像从中心裁剪至指定的宽度和高度。 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 经过中心裁剪操作后得到的图像。 | \ No newline at end of file +| `image` | IMAGE | 经过中心裁剪操作后得到的图像。 | diff --git a/comfyui_embedded_docs/docs/CheckpointLoader/ar.md b/comfyui_embedded_docs/docs/CheckpointLoader/ar.md index e8b0b4957..814ede9cb 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoader/ar.md +++ b/comfyui_embedded_docs/docs/CheckpointLoader/ar.md @@ -19,4 +19,4 @@ | `CLIP` | CLIP | مكون نموذج CLIP المحمّل لترميز النص | | `VAE` | VAE | مكون نموذج VAE المحمّل لترميز وفك ترميز الصور | -**ملاحظة هامة:** تم وضع علامة على هذا العُقدة على أنه مهمَل وقد يتم إزالته في الإصدارات المستقبلية. يُرجى النظر في استخدام عُقد التحميل البديلة لسير العمل الجديدة. \ No newline at end of file +**ملاحظة هامة:** تم وضع علامة على هذا العُقدة على أنه مهمَل وقد يتم إزالته في الإصدارات المستقبلية. يُرجى النظر في استخدام عُقد التحميل البديلة لسير العمل الجديدة. diff --git a/comfyui_embedded_docs/docs/CheckpointLoader/pt-BR.md b/comfyui_embedded_docs/docs/CheckpointLoader/pt-BR.md index 3149d546c..e5d6c8820 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/CheckpointLoader/pt-BR.md @@ -19,4 +19,4 @@ O nó CheckpointLoader carrega um checkpoint de modelo pré-treinado juntamente | `CLIP` | CLIP | O componente do modelo CLIP carregado para codificação de texto | | `VAE` | VAE | O componente do modelo VAE carregado para codificação e decodificação de imagem | -**Nota Importante:** Este nó foi marcado como obsoleto e pode ser removido em versões futuras. Considere usar nós de carregamento alternativos para novos fluxos de trabalho. \ No newline at end of file +**Nota Importante:** Este nó foi marcado como obsoleto e pode ser removido em versões futuras. Considere usar nós de carregamento alternativos para novos fluxos de trabalho. diff --git a/comfyui_embedded_docs/docs/CheckpointLoader/tr.md b/comfyui_embedded_docs/docs/CheckpointLoader/tr.md index b07cd79a2..eaffef5a6 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoader/tr.md +++ b/comfyui_embedded_docs/docs/CheckpointLoader/tr.md @@ -19,4 +19,4 @@ CheckpointLoader düğümü, önceden eğitilmiş bir model kontrol noktasını | `CLIP` | CLIP | Metin kodlama için yüklenmiş CLIP modeli bileşeni | | `VAE` | VAE | Görüntü kodlama ve kod çözme için yüklenmiş VAE modeli bileşeni | -**Önemli Not:** Bu düğüm kullanımdan kaldırılmış (deprecated) olarak işaretlenmiştir ve gelecek sürümlerde kaldırılabilir. Yeni iş akışları için alternatif yükleme düğümlerini kullanmayı düşünün. \ No newline at end of file +**Önemli Not:** Bu düğüm kullanımdan kaldırılmış (deprecated) olarak işaretlenmiştir ve gelecek sürümlerde kaldırılabilir. Yeni iş akışları için alternatif yükleme düğümlerini kullanmayı düşünün. diff --git a/comfyui_embedded_docs/docs/CheckpointLoader/zh-TW.md b/comfyui_embedded_docs/docs/CheckpointLoader/zh-TW.md index e16ebddfe..1a4c988a3 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/CheckpointLoader/zh-TW.md @@ -19,4 +19,4 @@ | `CLIP` | CLIP | 已載入的 CLIP 模型元件,用於文字編碼 | | `VAE` | VAE | 已載入的 VAE 模型元件,用於圖像編碼和解碼 | -**重要注意事項:** 此節點已被標記為棄用,可能在未來版本中移除。建議在新工作流程中使用其他載入節點。 \ No newline at end of file +**重要注意事項:** 此節點已被標記為棄用,可能在未來版本中移除。建議在新工作流程中使用其他載入節點。 diff --git a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/ar.md b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/ar.md index cc088c837..a3f6eea0d 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/ar.md +++ b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/ar.md @@ -20,4 +20,4 @@ |-------------|-----------|-------------| | `MODEL` | MODEL | نموذج الانتشار الرئيسي المستخدم في توليد إزالة الضوضاء من الصور، المكون الأساسي لإنشاء صور الذكاء الاصطناعي | | `CLIP` | CLIP | النموذج المستخدم في تشفير نصوص المطالبات، يحول الأوصاف النصية إلى معلومات يمكن للذكاء الاصطناعي فهمها | -| `VAE` | VAE | النموذج المستخدم في تشفير وفك تشفير الصور، مسؤول عن التحويل بين فضاء البكسل وفضاء التضمين الكامن | \ No newline at end of file +| `VAE` | VAE | النموذج المستخدم في تشفير وفك تشفير الصور، مسؤول عن التحويل بين فضاء البكسل وفضاء التضمين الكامن | diff --git a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/pt-BR.md b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/pt-BR.md index 72e1934a7..8114d8e0b 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/pt-BR.md +++ b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/pt-BR.md @@ -20,4 +20,4 @@ Este nó detecta automaticamente todos os arquivos de modelo na pasta `ComfyUI/m |---------------|--------------|-----------| | `MODEL` | MODEL | O modelo de difusão principal usado para a geração de remoção de ruído de imagem, o componente central da criação de imagem por IA | | `CLIP` | CLIP | O modelo usado para codificar prompts de texto, convertendo descrições de texto em informações que a IA pode entender | -| `VAE` | VAE | O modelo usado para codificação e decodificação de imagem, responsável pela conversão entre o espaço de pixels e o espaço latente | \ No newline at end of file +| `VAE` | VAE | O modelo usado para codificação e decodificação de imagem, responsável pela conversão entre o espaço de pixels e o espaço latente | diff --git a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/tr.md b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/tr.md index e5590ea27..abc98444d 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/tr.md +++ b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/tr.md @@ -4,9 +4,9 @@ Bu, model dosyalarını belirtilen konumlardan yükleyen ve bunları üç temel Bu düğüm, `ComfyUI/models/checkpoints` klasöründeki tüm model dosyalarını ve `extra_model_paths.yaml` dosyanızda yapılandırılan ek yolları otomatik olarak algılar. -1. **Model Uyumluluğu**: Seçilen modelin iş akışınızla uyumlu olduğundan emin olun. Farklı model türleri (SD1.5, SDXL, Flux vb.), karşılık gelen örnekleyiciler ve diğer düğümlerle eşleştirilmelidir. -2. **Dosya Yönetimi**: Model dosyalarını `ComfyUI/models/checkpoints` klasörüne yerleştirin veya `extra_model_paths.yaml` aracılığıyla diğer yolları yapılandırın. -3. **Arayüz Yenileme**: ComfyUI çalışırken yeni model dosyaları eklendiyse, açılır listede yeni dosyaları görmek için tarayıcıyı yenilemeniz (Ctrl+R) gerekir. +1. **Model Uyumluluğu**: Seçilen modelin iş akışınızla uyumlu olduğundan emin olun. Farklı model türleri (SD1.5, SDXL, Flux vb.), karşılık gelen örnekleyiciler ve diğer düğümlerle eşleştirilmelidir. +2. **Dosya Yönetimi**: Model dosyalarını `ComfyUI/models/checkpoints` klasörüne yerleştirin veya `extra_model_paths.yaml` aracılığıyla diğer yolları yapılandırın. +3. **Arayüz Yenileme**: ComfyUI çalışırken yeni model dosyaları eklendiyse, açılır listede yeni dosyaları görmek için tarayıcıyı yenilemeniz (Ctrl+R) gerekir. ## Girdiler @@ -20,4 +20,4 @@ Bu düğüm, `ComfyUI/models/checkpoints` klasöründeki tüm model dosyaların |-----------|-------------|--------------------------------------------------------------------------------| | `MODEL` | MODEL | Görüntü gürültü giderme oluşturumu için kullanılan ana difüzyon modeli, AI görüntü oluşturmanın çekirdek bileşeni | | `CLIP` | CLIP | Metin istemlerini kodlamak için kullanılan model, metin açıklamalarını AI'nın anlayabileceği bilgiye dönüştürür | -| `VAE` | VAE | Görüntü kodlama ve kod çözme için kullanılan model, piksel uzayı ve gizli uzay arasında dönüşümden sorumludur | \ No newline at end of file +| `VAE` | VAE | Görüntü kodlama ve kod çözme için kullanılan model, piksel uzayı ve gizli uzay arasında dönüşümden sorumludur | diff --git a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/zh-TW.md b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/zh-TW.md index a1f5bb026..89e6f77d1 100644 --- a/comfyui_embedded_docs/docs/CheckpointLoaderSimple/zh-TW.md +++ b/comfyui_embedded_docs/docs/CheckpointLoaderSimple/zh-TW.md @@ -20,4 +20,4 @@ |-------------|-----------|-------------| | `MODEL` | MODEL | 用於圖像去噪生成的主要擴散模型,是 AI 圖像創作的核心組件 | | `CLIP` | CLIP | 用於編碼文字提示的模型,將文字描述轉換為 AI 能夠理解的資訊 | -| `VAE` | VAE | 用於圖像編碼和解碼的模型,負責在像素空間和潛在空間之間進行轉換 | \ No newline at end of file +| `VAE` | VAE | 用於圖像編碼和解碼的模型,負責在像素空間和潛在空間之間進行轉換 | diff --git a/comfyui_embedded_docs/docs/CheckpointSave/ar.md b/comfyui_embedded_docs/docs/CheckpointSave/ar.md index 311811783..9fd65a02a 100644 --- a/comfyui_embedded_docs/docs/CheckpointSave/ar.md +++ b/comfyui_embedded_docs/docs/CheckpointSave/ar.md @@ -31,4 +31,4 @@ ## الروابط ذات الصلة الكود المصدري ذو الصلة: [nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CheckpointSave/pt-BR.md b/comfyui_embedded_docs/docs/CheckpointSave/pt-BR.md index 1cb4e9827..03c865784 100644 --- a/comfyui_embedded_docs/docs/CheckpointSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/CheckpointSave/pt-BR.md @@ -29,4 +29,4 @@ Este nó irá gerar um arquivo de checkpoint, e o caminho do arquivo de saída c ## Links Relacionados -Código-fonte relacionado: [nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) \ No newline at end of file +Código-fonte relacionado: [nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) diff --git a/comfyui_embedded_docs/docs/CheckpointSave/tr.md b/comfyui_embedded_docs/docs/CheckpointSave/tr.md index 559c0e9f3..b32ab4c52 100644 --- a/comfyui_embedded_docs/docs/CheckpointSave/tr.md +++ b/comfyui_embedded_docs/docs/CheckpointSave/tr.md @@ -29,4 +29,4 @@ Bu düğüm bir kontrol noktası dosyası çıktılayacaktır ve ilgili çıktı ## İlgili Bağlantılar -İlgili kaynak kodu: [nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) \ No newline at end of file +İlgili kaynak kodu: [nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) diff --git a/comfyui_embedded_docs/docs/CheckpointSave/zh-TW.md b/comfyui_embedded_docs/docs/CheckpointSave/zh-TW.md index 12ef041b8..f7be47558 100644 --- a/comfyui_embedded_docs/docs/CheckpointSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/CheckpointSave/zh-TW.md @@ -29,4 +29,4 @@ ## 相關連結 -相關原始程式碼:[nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) \ No newline at end of file +相關原始程式碼:[nodes_model_merging.py#L227](https://github.com/comfyanonymous/ComfyUI/blob/master/comfy_extras/nodes_model_merging.py#L227) diff --git a/comfyui_embedded_docs/docs/ChromaRadianceOptions/ar.md b/comfyui_embedded_docs/docs/ChromaRadianceOptions/ar.md index cd432ead2..de1fdd4a6 100644 --- a/comfyui_embedded_docs/docs/ChromaRadianceOptions/ar.md +++ b/comfyui_embedded_docs/docs/ChromaRadianceOptions/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `model` | MODEL | النموذج المعدل مع تطبيق خيارات Chroma Radiance عليه | \ No newline at end of file +| `model` | MODEL | النموذج المعدل مع تطبيق خيارات Chroma Radiance عليه | diff --git a/comfyui_embedded_docs/docs/ChromaRadianceOptions/pt-BR.md b/comfyui_embedded_docs/docs/ChromaRadianceOptions/pt-BR.md index 0366a00c6..cee57b729 100644 --- a/comfyui_embedded_docs/docs/ChromaRadianceOptions/pt-BR.md +++ b/comfyui_embedded_docs/docs/ChromaRadianceOptions/pt-BR.md @@ -18,4 +18,4 @@ O nó ChromaRadianceOptions permite configurar configurações avançadas para o | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com as opções do Chroma Radiance aplicadas | \ No newline at end of file +| `model` | MODEL | O modelo modificado com as opções do Chroma Radiance aplicadas | diff --git a/comfyui_embedded_docs/docs/ChromaRadianceOptions/tr.md b/comfyui_embedded_docs/docs/ChromaRadianceOptions/tr.md index edda0b5a7..25d7d88e9 100644 --- a/comfyui_embedded_docs/docs/ChromaRadianceOptions/tr.md +++ b/comfyui_embedded_docs/docs/ChromaRadianceOptions/tr.md @@ -18,4 +18,4 @@ ChromaRadianceOptions düğümü, Chroma Radiance modeli için gelişmiş ayarla | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Chroma Radiance seçenekleri uygulanmış olarak değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Chroma Radiance seçenekleri uygulanmış olarak değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ChromaRadianceOptions/zh-TW.md b/comfyui_embedded_docs/docs/ChromaRadianceOptions/zh-TW.md index db6b658ff..ee2c13e1b 100644 --- a/comfyui_embedded_docs/docs/ChromaRadianceOptions/zh-TW.md +++ b/comfyui_embedded_docs/docs/ChromaRadianceOptions/zh-TW.md @@ -18,4 +18,4 @@ ChromaRadianceOptions 節點允許您配置 Chroma Radiance 模型的高級設 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 Chroma Radiance 選項的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 Chroma Radiance 選項的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ClipLoader/ar.md b/comfyui_embedded_docs/docs/ClipLoader/ar.md index 98f239bb3..16d82b378 100644 --- a/comfyui_embedded_docs/docs/ClipLoader/ar.md +++ b/comfyui_embedded_docs/docs/ClipLoader/ar.md @@ -71,4 +71,4 @@ ## ملاحظات إضافية -تلعب نماذج CLIP دورًا أساسيًا كمشفرات نصوص في ComfyUI، حيث تتحمل مسؤولية تحويل النصوص الموجهة إلى تمثيلات رقمية يمكن لنماذج الانتشار فهمها. يمكنك اعتبارها كمترجمين، مسؤولين عن ترجمة نصوصك إلى لغة يمكن للنماذج الكبيرة فهمها. وبالطبع، للنماذج المختلفة "لهجاتها" الخاصة، لذا هناك حاجة إلى مشفرات CLIP مختلفة بين البنى المختلفة لإكمال عملية تشفير النص. \ No newline at end of file +تلعب نماذج CLIP دورًا أساسيًا كمشفرات نصوص في ComfyUI، حيث تتحمل مسؤولية تحويل النصوص الموجهة إلى تمثيلات رقمية يمكن لنماذج الانتشار فهمها. يمكنك اعتبارها كمترجمين، مسؤولين عن ترجمة نصوصك إلى لغة يمكن للنماذج الكبيرة فهمها. وبالطبع، للنماذج المختلفة "لهجاتها" الخاصة، لذا هناك حاجة إلى مشفرات CLIP مختلفة بين البنى المختلفة لإكمال عملية تشفير النص. diff --git a/comfyui_embedded_docs/docs/ClipLoader/pt-BR.md b/comfyui_embedded_docs/docs/ClipLoader/pt-BR.md index a2057fbfa..e91b4c8dc 100644 --- a/comfyui_embedded_docs/docs/ClipLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipLoader/pt-BR.md @@ -71,4 +71,4 @@ Conforme o ComfyUI é atualizado, essas combinações podem se expandir. Para de ## Notas Adicionais -Os modelos CLIP desempenham um papel central como codificadores de texto no ComfyUI, responsáveis por converter prompts de texto em representações numéricas que os modelos de difusão podem entender. Você pode pensar neles como tradutores, responsáveis por traduzir seu texto para uma linguagem que os modelos grandes possam compreender. É claro que diferentes modelos têm seus próprios "dialetos", portanto, diferentes codificadores CLIP são necessários entre diferentes arquiteturas para completar o processo de codificação de texto. \ No newline at end of file +Os modelos CLIP desempenham um papel central como codificadores de texto no ComfyUI, responsáveis por converter prompts de texto em representações numéricas que os modelos de difusão podem entender. Você pode pensar neles como tradutores, responsáveis por traduzir seu texto para uma linguagem que os modelos grandes possam compreender. É claro que diferentes modelos têm seus próprios "dialetos", portanto, diferentes codificadores CLIP são necessários entre diferentes arquiteturas para completar o processo de codificação de texto. diff --git a/comfyui_embedded_docs/docs/ClipLoader/tr.md b/comfyui_embedded_docs/docs/ClipLoader/tr.md index 7346a1159..4c5fceff3 100644 --- a/comfyui_embedded_docs/docs/ClipLoader/tr.md +++ b/comfyui_embedded_docs/docs/ClipLoader/tr.md @@ -71,4 +71,4 @@ ComfyUI güncellendikçe, bu kombinasyonlar genişleyebilir. Ayrıntılar için ## Ek Notlar -CLIP modelleri, ComfyUI'da metin kodlayıcılar olarak çekirdek bir rol oynar ve metin istemlerini difüzyon modellerinin anlayabileceği sayısal temsillere dönüştürmekten sorumludur. Onları birer çevirmen olarak düşünebilirsiniz; metninizi büyük modellerin anlayabileceği bir dile çevirmekle görevlidirler. Tabii ki, farklı modellerin kendi "lehçeleri" olduğundan, metin kodlama sürecini tamamlamak için farklı mimariler arasında farklı CLIP kodlayıcılarına ihtiyaç duyulur. \ No newline at end of file +CLIP modelleri, ComfyUI'da metin kodlayıcılar olarak çekirdek bir rol oynar ve metin istemlerini difüzyon modellerinin anlayabileceği sayısal temsillere dönüştürmekten sorumludur. Onları birer çevirmen olarak düşünebilirsiniz; metninizi büyük modellerin anlayabileceği bir dile çevirmekle görevlidirler. Tabii ki, farklı modellerin kendi "lehçeleri" olduğundan, metin kodlama sürecini tamamlamak için farklı mimariler arasında farklı CLIP kodlayıcılarına ihtiyaç duyulur. diff --git a/comfyui_embedded_docs/docs/ClipLoader/zh-TW.md b/comfyui_embedded_docs/docs/ClipLoader/zh-TW.md index 4d2e526a9..0b3e20859 100644 --- a/comfyui_embedded_docs/docs/ClipLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipLoader/zh-TW.md @@ -71,4 +71,4 @@ ## 補充說明 -CLIP 模型在 ComfyUI 中作為文字編碼器扮演核心角色,負責將文字提示轉換為擴散模型能夠理解的數值表示。您可以將它們視為翻譯器,負責將您的文字翻譯成大型模型能夠理解的語言。當然,不同的模型有自己的「方言」,因此不同架構之間需要不同的 CLIP 編碼器來完成文字編碼過程。 \ No newline at end of file +CLIP 模型在 ComfyUI 中作為文字編碼器扮演核心角色,負責將文字提示轉換為擴散模型能夠理解的數值表示。您可以將它們視為翻譯器,負責將您的文字翻譯成大型模型能夠理解的語言。當然,不同的模型有自己的「方言」,因此不同架構之間需要不同的 CLIP 編碼器來完成文字編碼過程。 diff --git a/comfyui_embedded_docs/docs/ClipMergeSimple/ar.md b/comfyui_embedded_docs/docs/ClipMergeSimple/ar.md index 1a94fb3ce..11d0c6214 100644 --- a/comfyui_embedded_docs/docs/ClipMergeSimple/ar.md +++ b/comfyui_embedded_docs/docs/ClipMergeSimple/ar.md @@ -39,4 +39,4 @@ 1. **دمج أنماط النماذج**: دمج خصائص نماذج CLIP المُدربة على بيانات مختلفة 2. **تحسين الأداء**: موازنة نقاط القوة والضعف في النماذج المختلفة -3. **البحث التجريبي**: استكشاف مجموعات مختلفة من مُشفرات CLIP \ No newline at end of file +3. **البحث التجريبي**: استكشاف مجموعات مختلفة من مُشفرات CLIP diff --git a/comfyui_embedded_docs/docs/ClipMergeSimple/pt-BR.md b/comfyui_embedded_docs/docs/ClipMergeSimple/pt-BR.md index f2aaeb4e5..f027cedf5 100644 --- a/comfyui_embedded_docs/docs/ClipMergeSimple/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipMergeSimple/pt-BR.md @@ -24,19 +24,19 @@ Este nó é especializado em mesclar dois modelos CLIP com base em uma proporç O nó utiliza uma média ponderada para mesclar os dois modelos: -1. **Clonar Modelo Base**: Primeiro clona `clip1` como modelo base. -2. **Obter *Patches***: Obtém todos os *patches* principais de `clip2`. -3. **Filtrar Chaves Especiais**: Ignora chaves que terminam com `.position_ids` e `.logit_scale`. -4. **Aplicar Fusão Ponderada**: Usa a fórmula `(1.0 - ratio) * clip1 + ratio * clip2`. +1. **Clonar Modelo Base**: Primeiro clona `clip1` como modelo base. +2. **Obter *Patches***: Obtém todos os *patches* principais de `clip2`. +3. **Filtrar Chaves Especiais**: Ignora chaves que terminam com `.position_ids` e `.logit_scale`. +4. **Aplicar Fusão Ponderada**: Usa a fórmula `(1.0 - ratio) * clip1 + ratio * clip2`. ### Explicação do Parâmetro Ratio -- **ratio = 0.0**: Usa totalmente o clip1, ignora o clip2. -- **ratio = 0.5**: Contribuição de 50% de cada modelo. -- **ratio = 1.0**: Usa totalmente o clip2, ignora o clip1. +- **ratio = 0.0**: Usa totalmente o clip1, ignora o clip2. +- **ratio = 0.5**: Contribuição de 50% de cada modelo. +- **ratio = 1.0**: Usa totalmente o clip2, ignora o clip1. ## Casos de Uso -1. **Fusão de Estilos de Modelo**: Combinar características de modelos CLIP treinados em dados diferentes. -2. **Otimização de Desempenho**: Equilibrar pontos fortes e fracos de diferentes modelos. -3. **Pesquisa Experimental**: Explorar combinações de diferentes codificadores CLIP. \ No newline at end of file +1. **Fusão de Estilos de Modelo**: Combinar características de modelos CLIP treinados em dados diferentes. +2. **Otimização de Desempenho**: Equilibrar pontos fortes e fracos de diferentes modelos. +3. **Pesquisa Experimental**: Explorar combinações de diferentes codificadores CLIP. diff --git a/comfyui_embedded_docs/docs/ClipMergeSimple/tr.md b/comfyui_embedded_docs/docs/ClipMergeSimple/tr.md index 355534cbe..48629fcb9 100644 --- a/comfyui_embedded_docs/docs/ClipMergeSimple/tr.md +++ b/comfyui_embedded_docs/docs/ClipMergeSimple/tr.md @@ -24,19 +24,19 @@ Bu düğüm, iki CLIP modelini belirli bir orana göre birleştirerek özellikle Düğüm, iki modeli birleştirmek için ağırlıklı ortalamayı kullanır: -1. **Temel Modeli Klonla**: İlk olarak `clip1` temel model olarak klonlanır. -2. **Yamaları Al**: `clip2`'den tüm anahtar yamaları alınır. -3. **Özel Anahtarları Filtrele**: Sonu `.position_ids` ve `.logit_scale` ile biten anahtarlar atlanır. -4. **Ağırlıklı Birleştirmeyi Uygula**: `(1.0 - ratio) * clip1 + ratio * clip2` formülü kullanılır. +1. **Temel Modeli Klonla**: İlk olarak `clip1` temel model olarak klonlanır. +2. **Yamaları Al**: `clip2`'den tüm anahtar yamaları alınır. +3. **Özel Anahtarları Filtrele**: Sonu `.position_ids` ve `.logit_scale` ile biten anahtarlar atlanır. +4. **Ağırlıklı Birleştirmeyi Uygula**: `(1.0 - ratio) * clip1 + ratio * clip2` formülü kullanılır. ### Oran Parametresi Açıklaması -- **ratio = 0.0**: Tamamen `clip1` kullanır, `clip2`'yi yok sayar. -- **ratio = 0.5**: Her modelden %50 katkı. -- **ratio = 1.0**: Tamamen `clip2` kullanır, `clip1`'i yok sayar. +- **ratio = 0.0**: Tamamen `clip1` kullanır, `clip2`'yi yok sayar. +- **ratio = 0.5**: Her modelden %50 katkı. +- **ratio = 1.0**: Tamamen `clip2` kullanır, `clip1`'i yok sayar. ## Kullanım Alanları -1. **Model Stili Füzyonu**: Farklı veriler üzerinde eğitilmiş CLIP modellerinin özelliklerini birleştirin. -2. **Performans Optimizasyonu**: Farklı modellerin güçlü ve zayıf yönlerini dengeleyin. -3. **Deneysel Araştırma**: Farklı CLIP kodlayıcıların kombinasyonlarını keşfedin. \ No newline at end of file +1. **Model Stili Füzyonu**: Farklı veriler üzerinde eğitilmiş CLIP modellerinin özelliklerini birleştirin. +2. **Performans Optimizasyonu**: Farklı modellerin güçlü ve zayıf yönlerini dengeleyin. +3. **Deneysel Araştırma**: Farklı CLIP kodlayıcıların kombinasyonlarını keşfedin. diff --git a/comfyui_embedded_docs/docs/ClipMergeSimple/zh-TW.md b/comfyui_embedded_docs/docs/ClipMergeSimple/zh-TW.md index 266ddcf51..61fd4808c 100644 --- a/comfyui_embedded_docs/docs/ClipMergeSimple/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipMergeSimple/zh-TW.md @@ -39,4 +39,4 @@ 1. **模型風格融合**:結合在不同資料上訓練的 CLIP 模型特性 2. **效能優化**:平衡不同模型的優點和缺點 -3. **實驗研究**:探索不同 CLIP 編碼器的組合 \ No newline at end of file +3. **實驗研究**:探索不同 CLIP 編碼器的組合 diff --git a/comfyui_embedded_docs/docs/ClipSave/ar.md b/comfyui_embedded_docs/docs/ClipSave/ar.md index 818f8f009..b9ee77914 100644 --- a/comfyui_embedded_docs/docs/ClipSave/ar.md +++ b/comfyui_embedded_docs/docs/ClipSave/ar.md @@ -30,4 +30,4 @@ 1. **موقع الملف**: يتم حفظ جميع الملفات في دليل `ComfyUI/output/` 2. **صيغة الملف**: يتم حفظ النماذج بصيغة SafeTensors لضمان الأمان 3. **البيانات الوصفية**: تتضمن معلومات سير العمل وبيانات PNG الوصفية إذا كانت متاحة -4. **اتفاقية التسمية**: تستخدم البادئة المُحددة بالإضافة إلى اللواحق المناسبة بناءً على نوع النموذج \ No newline at end of file +4. **اتفاقية التسمية**: تستخدم البادئة المُحددة بالإضافة إلى اللواحق المناسبة بناءً على نوع النموذج diff --git a/comfyui_embedded_docs/docs/ClipSave/pt-BR.md b/comfyui_embedded_docs/docs/ClipSave/pt-BR.md index afdc9ca52..105fb9f71 100644 --- a/comfyui_embedded_docs/docs/ClipSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipSave/pt-BR.md @@ -30,4 +30,4 @@ O nó salva diferentes componentes com base no tipo de modelo CLIP: 1. **Localização do Arquivo**: Todos os arquivos são salvos no diretório `ComfyUI/output/` 2. **Formato do Arquivo**: Os modelos são salvos no formato SafeTensors por segurança 3. **Metadados**: Inclui informações do fluxo de trabalho e metadados PNG, se disponíveis -4. **Convenção de Nomenclatura**: Utiliza o prefixo especificado mais os sufixos apropriados com base no tipo de modelo \ No newline at end of file +4. **Convenção de Nomenclatura**: Utiliza o prefixo especificado mais os sufixos apropriados com base no tipo de modelo diff --git a/comfyui_embedded_docs/docs/ClipSave/tr.md b/comfyui_embedded_docs/docs/ClipSave/tr.md index 409b7ae7f..cd69ba8b3 100644 --- a/comfyui_embedded_docs/docs/ClipSave/tr.md +++ b/comfyui_embedded_docs/docs/ClipSave/tr.md @@ -30,4 +30,4 @@ Düğüm, CLIP model türüne göre farklı bileşenleri kaydeder: 1. **Dosya Konumu**: Tüm dosyalar `ComfyUI/output/` dizininde kaydedilir 2. **Dosya Formatı**: Modeller güvenlik için SafeTensors formatında kaydedilir 3. **Üst Veri**: Mevcutsa iş akışı bilgilerini ve PNG üst verilerini içerir -4. **İsimlendirme Kuralı**: Belirtilen ön ek artı model türüne göre uygun son ekler kullanır \ No newline at end of file +4. **İsimlendirme Kuralı**: Belirtilen ön ek artı model türüne göre uygun son ekler kullanır diff --git a/comfyui_embedded_docs/docs/ClipSave/zh-TW.md b/comfyui_embedded_docs/docs/ClipSave/zh-TW.md index a6bf94ef0..89d66975f 100644 --- a/comfyui_embedded_docs/docs/ClipSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipSave/zh-TW.md @@ -30,4 +30,4 @@ 1. **檔案位置**:所有檔案均儲存在 `ComfyUI/output/` 目錄中 2. **檔案格式**:模型以 SafeTensors 格式儲存以確保安全 3. **元數據**:包含工作流程資訊和 PNG 元數據(如果可用) -4. **命名慣例**:使用指定的前綴加上根據模型類型的適當後綴 \ No newline at end of file +4. **命名慣例**:使用指定的前綴加上根據模型類型的適當後綴 diff --git a/comfyui_embedded_docs/docs/ClipSetLastLayer/ar.md b/comfyui_embedded_docs/docs/ClipSetLastLayer/ar.md index f9732e7b5..60268cf9f 100644 --- a/comfyui_embedded_docs/docs/ClipSetLastLayer/ar.md +++ b/comfyui_embedded_docs/docs/ClipSetLastLayer/ar.md @@ -32,4 +32,4 @@ - **تحسين الأداء**: مثل عدم الحاجة إلى درجة دكتوراه لفهم الجمل البسيطة، أحيانًا يكون الفهم السطحي كافيًا وأسرع - **التحكم في النمط**: مستويات الفهم المختلفة تُنتج أنماطًا فنية مختلفة -- **التوافق**: بعض النماذج قد تعمل بشكل أفضل في طبقات محددة \ No newline at end of file +- **التوافق**: بعض النماذج قد تعمل بشكل أفضل في طبقات محددة diff --git a/comfyui_embedded_docs/docs/ClipSetLastLayer/pt-BR.md b/comfyui_embedded_docs/docs/ClipSetLastLayer/pt-BR.md index 2ef4cf040..628ae748c 100644 --- a/comfyui_embedded_docs/docs/ClipSetLastLayer/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipSetLastLayer/pt-BR.md @@ -32,4 +32,4 @@ Imagine o modelo CLIP como um cérebro inteligente de 24 camadas: - **Otimização de Desempenho**: Assim como não é necessário um doutorado para entender frases simples, às vezes uma compreensão superficial é suficiente e mais rápida - **Controle de Estilo**: Diferentes níveis de compreensão produzem estilos artísticos diferentes -- **Compatibilidade**: Alguns modelos podem ter melhor desempenho em camadas específicas \ No newline at end of file +- **Compatibilidade**: Alguns modelos podem ter melhor desempenho em camadas específicas diff --git a/comfyui_embedded_docs/docs/ClipSetLastLayer/tr.md b/comfyui_embedded_docs/docs/ClipSetLastLayer/tr.md index 124a0e312..0d975b482 100644 --- a/comfyui_embedded_docs/docs/ClipSetLastLayer/tr.md +++ b/comfyui_embedded_docs/docs/ClipSetLastLayer/tr.md @@ -32,4 +32,4 @@ CLIP modelini 24 katmanlı bir akıllı beyin olarak hayal edin: - **Performans Optimizasyonu**: Basit cümleleri anlamak için doktora derecesine ihtiyaç duyulmadığı gibi, bazen yüzeysel anlama yeterlidir ve daha hızlıdır - **Stil Kontrolü**: Farklı anlama seviyeleri farklı sanatsal stiller üretir -- **Uyumluluk**: Bazı modeller belirli katmanlarda daha iyi performans gösterebilir \ No newline at end of file +- **Uyumluluk**: Bazı modeller belirli katmanlarda daha iyi performans gösterebilir diff --git a/comfyui_embedded_docs/docs/ClipSetLastLayer/zh-TW.md b/comfyui_embedded_docs/docs/ClipSetLastLayer/zh-TW.md index e08fbf8c6..570f15aab 100644 --- a/comfyui_embedded_docs/docs/ClipSetLastLayer/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipSetLastLayer/zh-TW.md @@ -32,4 +32,4 @@ - **效能優化**:就像理解簡單句子不需要博士學位一樣,有時淺層理解就足夠且更快 - **風格控制**:不同層級的理解會產生不同的藝術風格 -- **相容性**:某些模型在特定層級可能表現更好 \ No newline at end of file +- **相容性**:某些模型在特定層級可能表現更好 diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/ar.md b/comfyui_embedded_docs/docs/ClipTextEncode/ar.md index dd4cca3bd..9540c6dea 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/ar.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/ar.md @@ -64,4 +64,4 @@ worst quality, embedding:EasyNegative, bad quality ``` // هذا السطر مستبعد من البرومبت. منظر طبيعي جميل، /* هذا الجزء مُتجاهل */ جودة عالية -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/es.md b/comfyui_embedded_docs/docs/ClipTextEncode/es.md index ce90eb8ea..732d51b0e 100755 --- a/comfyui_embedded_docs/docs/ClipTextEncode/es.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/es.md @@ -64,4 +64,4 @@ Ejemplo: ``` // esta línea se excluye del prompt. un paisaje hermoso, /* esta parte se ignora */ alta calidad -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/fr.md b/comfyui_embedded_docs/docs/ClipTextEncode/fr.md index e71a92dcd..a51f2998c 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/fr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/fr.md @@ -64,4 +64,4 @@ Exemple : ``` // cette ligne est exclue du prompt. a beautiful landscape, /* cette partie est ignorée */ high quality -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/ko.md b/comfyui_embedded_docs/docs/ClipTextEncode/ko.md index 490a2610f..9174ed95e 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/ko.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/ko.md @@ -64,4 +64,4 @@ worst quality, embedding:EasyNegative, bad quality ``` // 이 줄은 프롬프트에서 제외됩니다. a beautiful landscape, /* 이 부분은 무시됩니다 */ high quality -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/pt-BR.md b/comfyui_embedded_docs/docs/ClipTextEncode/pt-BR.md index 4d8b19359..0f79158d9 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/pt-BR.md @@ -64,4 +64,4 @@ Exemplo: ``` // esta linha é excluída do prompt. uma paisagem bonita, /* esta parte é ignorada */ alta qualidade -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/ru.md b/comfyui_embedded_docs/docs/ClipTextEncode/ru.md index 8a512aacf..456c4de46 100755 --- a/comfyui_embedded_docs/docs/ClipTextEncode/ru.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/ru.md @@ -64,4 +64,4 @@ worst quality, embedding:EasyNegative, bad quality ``` // эта строка исключена из промпта. a beautiful landscape, /* эта часть игнорируется */ high quality -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/tr.md b/comfyui_embedded_docs/docs/ClipTextEncode/tr.md index 0c32f1fa9..aa03b808f 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/tr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/tr.md @@ -64,4 +64,4 @@ Prompt'tan hariç tutulan yorumlar eklemek için şunları kullanabilirsiniz: ``` // bu satır prompt'tan hariç tutulur. a beautiful landscape, /* bu kısım göz ardı edilir */ high quality -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncode/zh.md b/comfyui_embedded_docs/docs/ClipTextEncode/zh.md index ab77566e6..5ae301531 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncode/zh.md +++ b/comfyui_embedded_docs/docs/ClipTextEncode/zh.md @@ -64,4 +64,4 @@ worst quality, embedding:EasyNegative, bad quality ``` // 这一行不会包含在提示词中。 a beautiful landscape, /* 这部分被忽略 */ high quality -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/ar.md b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/ar.md index bd3791c6c..1bcca4c18 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/ar.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/ar.md @@ -42,4 +42,4 @@ 1. تأكد من استخدام نموذج CLIP متوافق مع هندسة Flux 2. يُوصى بتعبئة كل من `clip_l` و `t5xxl` للاستفادة من ميزة التشفير المزدوج 3. لاحظ الحد الأقصى 77 رمزًا لـ `clip_l` -4. اضبط معامل `guidance` بناءً على النتائج المُولدة \ No newline at end of file +4. اضبط معامل `guidance` بناءً على النتائج المُولدة diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/pt-BR.md b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/pt-BR.md index 4ea918ae4..c411b18fa 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/pt-BR.md @@ -42,4 +42,4 @@ Este nó é baseado em um mecanismo de colaboração de codificadores duplos: 1. Certifique-se de usar um modelo CLIP compatível com a arquitetura Flux 2. É recomendado preencher ambos os campos, `clip_l` e `t5xxl`, para aproveitar a vantagem do codificador duplo 3. Observe o limite de 77 *tokens* para `clip_l` -4. Ajuste o parâmetro `guidance` com base nos resultados gerados \ No newline at end of file +4. Ajuste o parâmetro `guidance` com base nos resultados gerados diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/tr.md b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/tr.md index c51bbab1d..20a756453 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/tr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/tr.md @@ -42,4 +42,4 @@ Bu düğüm, bir çift kodlayıcı işbirliği mekanizmasına dayanır: 1. Flux mimarisiyle uyumlu bir CLIP modeli kullandığınızdan emin olun 2. Çift kodlayıcı avantajından yararlanmak için hem `clip_l` hem de `t5xxl` alanlarını doldurmanız önerilir 3. `clip_l` için 77 token sınırını unutmayın -4. `guidance` parametresini oluşturulan sonuçlara göre ayarlayın \ No newline at end of file +4. `guidance` parametresini oluşturulan sonuçlara göre ayarlayın diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/zh-TW.md b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/zh-TW.md index 52c31938d..3a2a5b970 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeFlux/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeFlux/zh-TW.md @@ -42,4 +42,4 @@ 1. 請確保使用與 Flux 架構相容的 CLIP 模型 2. 建議同時填寫 `clip_l` 和 `t5xxl` 以發揮雙編碼器優勢 3. 請注意 `clip_l` 的 77 個 token 限制 -4. 根據生成結果調整 `guidance` 參數 \ No newline at end of file +4. 根據生成結果調整 `guidance` 參數 diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/ar.md b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/ar.md index 65d04c3d4..8c3a981ba 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/ar.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | ناتج الشرط المشفر المستخدم لمزيد من المعالجة في مهام التوليد. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | ناتج الشرط المشفر المستخدم لمزيد من المعالجة في مهام التوليد. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/pt-BR.md b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/pt-BR.md index 1a4f14552..389b6fd21 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/pt-BR.md @@ -15,4 +15,4 @@ Seu papel principal é semelhante ao de um tradutor, convertendo nossas descriç | Parâmetro | Tipo de Dados | Descrição | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | A saída condicional codificada, usada para processamento posterior em tarefas de geração. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | A saída condicional codificada, usada para processamento posterior em tarefas de geração. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/tr.md b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/tr.md index f1d06ac6a..f0ff2a9a5 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/tr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/tr.md @@ -15,4 +15,4 @@ Birincil rolü, bir çevirmen gibi, metin açıklamalarımızı AI modelinin anl | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Oluşturma görevlerinde ileri işlemler için kullanılan kodlanmış koşullu çıktı. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Oluşturma görevlerinde ileri işlemler için kullanılan kodlanmış koşullu çıktı. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/zh-TW.md b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/zh-TW.md index 6e733d8ce..c01616860 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeHunyuanDit/zh-TW.md @@ -17,4 +17,4 @@ | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `CONDITIONING` | CONDITIONING | 經過編碼的條件化輸出,用於生成任務中的後續處理。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 經過編碼的條件化輸出,用於生成任務中的後續處理。 | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/ar.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/ar.md index 912b50a16..f51eb7078 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/ar.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/ar.md @@ -20,4 +20,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | يحتوي على النص المشفر والمعلومات الشرطية اللازمة لتوليد الصورة. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | يحتوي على النص المشفر والمعلومات الشرطية اللازمة لتوليد الصورة. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/pt-BR.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/pt-BR.md index 0d57502f3..57902f540 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/pt-BR.md @@ -20,4 +20,4 @@ Este nó foi projetado para codificar entrada de texto usando um modelo CLIP esp | Parâmetro | Tipo de Dados | Descrição | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Contém o texto codificado e as informações condicionais necessárias para a geração da imagem. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Contém o texto codificado e as informações condicionais necessárias para a geração da imagem. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/tr.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/tr.md index 494d2c347..0e94da351 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/tr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/tr.md @@ -20,4 +20,4 @@ Bu düğüm, SDXL mimarisi için özelleştirilmiş bir CLIP modeli kullanarak m | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Görüntü oluşturma için gereken kodlanmış metin ve koşullu bilgileri içerir. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Görüntü oluşturma için gereken kodlanmış metin ve koşullu bilgileri içerir. | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/zh-TW.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/zh-TW.md index b2bd93fb4..22a6514f5 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxl/zh-TW.md @@ -22,4 +22,4 @@ | 參數 | 資料類型 | 描述 | |-----------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 包含影像生成所需的編碼文字和條件資訊。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 包含影像生成所需的編碼文字和條件資訊。 | diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/ar.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/ar.md index 8f291acad..db42c2989 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/ar.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/ar.md @@ -37,4 +37,4 @@ 2. يُوصى باستخدام درجة جمالية مقدارها 7.5 كخط أساسي، وهي الإعداد القياسي المستخدم في تدريب SDXL 3. يجب أن تكون جميع معلمات الأبعاد من مضاعفات الرقم 8، ويُوصى بأن يكون إجمالي عدد البكسل قريبًا من 1024×1024 (حوالي 1 مليون بكسل) 4. يركز نموذج Refiner على تحسين تفاصيل الصورة وجودتها، لذا يجب أن تؤكد الإرشادات النصية على التأثيرات المرئية المطلوبة بدلاً من محتوى المشهد -5. في الاستخدام العملي، يُستخدم Refiner عادةً في المراحل المتأخرة من عملية التوليد (تقريبًا آخر 20% من الخطوات)، حيث يركز على تحسين التفاصيل \ No newline at end of file +5. في الاستخدام العملي، يُستخدم Refiner عادةً في المراحل المتأخرة من عملية التوليد (تقريبًا آخر 20% من الخطوات)، حيث يركز على تحسين التفاصيل diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/pt-BR.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/pt-BR.md index 111fbe239..b1d783a63 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/pt-BR.md @@ -37,4 +37,4 @@ O Refiner pode ser usado de duas maneiras: 2. Uma pontuação estética de 7.5 é recomendada como linha de base, que é a configuração padrão usada no treinamento do SDXL 3. Todos os parâmetros dimensionais devem ser múltiplos de 8, e recomenda-se que a contagem total de pixels esteja próxima de 1024×1024 (cerca de 1M de pixels) 4. O modelo Refiner foca em aprimorar detalhes e qualidade da imagem, portanto, os prompts de texto devem enfatizar os efeitos visuais desejados em vez do conteúdo da cena -5. No uso prático, o Refiner é tipicamente usado nos estágios finais da geração (aproximadamente os últimos 20% dos passos), focando na otimização de detalhes \ No newline at end of file +5. No uso prático, o Refiner é tipicamente usado nos estágios finais da geração (aproximadamente os últimos 20% dos passos), focando na otimização de detalhes diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/tr.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/tr.md index 055b69870..4e2da5d73 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/tr.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/tr.md @@ -6,14 +6,14 @@ Bu düğüm, SDXL Refiner modeli için özel olarak tasarlanmış olup, metin pr SDXL Refiner, SDXL temel modeli temel alınarak görüntü detaylarını ve kalitesini geliştirmeye odaklanan özel bir iyileştirme modelidir. Bu süreç, bir sanat rötüşçüsüne sahip olmak gibidir: -1. İlk olarak, temel model tarafından oluşturulan ön görüntüleri veya metin açıklamalarını alır -2. Ardından, kesin estetik puanlama ve boyutsal parametreler aracılığıyla iyileştirme sürecini yönlendirir -3. Son olarak, genel kaliteyi artırmak için yüksek frekanslı görüntü detaylarının işlenmesine odaklanır +1. İlk olarak, temel model tarafından oluşturulan ön görüntüleri veya metin açıklamalarını alır +2. Ardından, kesin estetik puanlama ve boyutsal parametreler aracılığıyla iyileştirme sürecini yönlendirir +3. Son olarak, genel kaliteyi artırmak için yüksek frekanslı görüntü detaylarının işlenmesine odaklanır Refiner iki şekilde kullanılabilir: -- Temel model tarafından oluşturulan görüntüler için son işlem olarak bağımsız bir iyileştirme adımı olarak -- Uzman bir entegrasyon sisteminin parçası olarak, üretimin düşük gürültülü aşamasında işlemi devralarak +- Temel model tarafından oluşturulan görüntüler için son işlem olarak bağımsız bir iyileştirme adımı olarak +- Uzman bir entegrasyon sisteminin parçası olarak, üretimin düşük gürültülü aşamasında işlemi devralarak ## Girdiler @@ -33,8 +33,8 @@ Refiner iki şekilde kullanılabilir: ## Notlar -1. Bu düğüm, SDXL Refiner modeli için özel olarak optimize edilmiştir ve normal CLIPTextEncode düğümlerinden farklıdır -2. 7.5 estetik puanı, temel değer olarak önerilir; bu, SDXL eğitiminde kullanılan standart ayardır -3. Tüm boyutsal parametreler 8'in katı olmalıdır ve toplam piksel sayısının 1024×1024'e (yaklaşık 1M piksel) yakın olması önerilir -4. Refiner modeli, görüntü detaylarını ve kalitesini geliştirmeye odaklandığından, metin prompt'ları sahne içeriğinden ziyade istenen görsel efektleri vurgulamalıdır -5. Pratik kullanımda, Refiner tipik olarak üretimin sonraki aşamalarında (yaklaşık son adımların %20'si) kullanılır ve detay optimizasyonuna odaklanır \ No newline at end of file +1. Bu düğüm, SDXL Refiner modeli için özel olarak optimize edilmiştir ve normal CLIPTextEncode düğümlerinden farklıdır +2. 7.5 estetik puanı, temel değer olarak önerilir; bu, SDXL eğitiminde kullanılan standart ayardır +3. Tüm boyutsal parametreler 8'in katı olmalıdır ve toplam piksel sayısının 1024×1024'e (yaklaşık 1M piksel) yakın olması önerilir +4. Refiner modeli, görüntü detaylarını ve kalitesini geliştirmeye odaklandığından, metin prompt'ları sahne içeriğinden ziyade istenen görsel efektleri vurgulamalıdır +5. Pratik kullanımda, Refiner tipik olarak üretimin sonraki aşamalarında (yaklaşık son adımların %20'si) kullanılır ve detay optimizasyonuna odaklanır diff --git a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/zh-TW.md b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/zh-TW.md index b906446ff..5c2e2a485 100644 --- a/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipTextEncodeSdxlRefiner/zh-TW.md @@ -39,4 +39,4 @@ Refiner 可以透過兩種方式使用: 2. 建議將美學評分 7.5 作為基準線,這是 SDXL 訓練中使用的標準設定 3. 所有尺寸參數必須是 8 的倍數,建議總像素數接近 1024×1024(約 100 萬像素) 4. Refiner 模型專注於增強影像細節和品質,因此文字提示應強調期望的視覺效果而非場景內容 -5. 在實際使用中,Refiner 通常用於生成的後期階段(約最後 20% 的步驟),專注於細節優化 \ No newline at end of file +5. 在實際使用中,Refiner 通常用於生成的後期階段(約最後 20% 的步驟),專注於細節優化 diff --git a/comfyui_embedded_docs/docs/ClipVisionEncode/ar.md b/comfyui_embedded_docs/docs/ClipVisionEncode/ar.md index 806bfa2a2..d0e5479f0 100644 --- a/comfyui_embedded_docs/docs/ClipVisionEncode/ar.md +++ b/comfyui_embedded_docs/docs/ClipVisionEncode/ar.md @@ -27,4 +27,4 @@ - `last_hidden_state`: الحالة الخفية الأخيرة - `image_embeds`: متجه تضمين الصورة - `penultimate_hidden_states`: الحالة الخفية قبل الأخيرة -- `mm_projected`: نتيجة الإسقاط متعدد الوسائط (إذا كانت متوفرة) \ No newline at end of file +- `mm_projected`: نتيجة الإسقاط متعدد الوسائط (إذا كانت متوفرة) diff --git a/comfyui_embedded_docs/docs/ClipVisionEncode/pt-BR.md b/comfyui_embedded_docs/docs/ClipVisionEncode/pt-BR.md index 87b049bda..8d1adec9e 100644 --- a/comfyui_embedded_docs/docs/ClipVisionEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipVisionEncode/pt-BR.md @@ -27,4 +27,4 @@ Este objeto de saída contém: - `last_hidden_state`: O último estado oculto - `image_embeds`: Vetor de incorporação da imagem - `penultimate_hidden_states`: O penúltimo estado oculto -- `mm_projected`: Resultado da projeção multimodal (se disponível) \ No newline at end of file +- `mm_projected`: Resultado da projeção multimodal (se disponível) diff --git a/comfyui_embedded_docs/docs/ClipVisionEncode/tr.md b/comfyui_embedded_docs/docs/ClipVisionEncode/tr.md index 458e7d364..ec20cf056 100644 --- a/comfyui_embedded_docs/docs/ClipVisionEncode/tr.md +++ b/comfyui_embedded_docs/docs/ClipVisionEncode/tr.md @@ -27,4 +27,4 @@ Bu çıkış nesnesi şunları içerir: - `last_hidden_state`: Son gizli durum - `image_embeds`: Görüntü yerleştirme vektörü - `penultimate_hidden_states`: Sondan bir önceki gizli durum -- `mm_projected`: Çoklu ortam projeksiyon sonucu (mevcutsa) \ No newline at end of file +- `mm_projected`: Çoklu ortam projeksiyon sonucu (mevcutsa) diff --git a/comfyui_embedded_docs/docs/ClipVisionEncode/zh-TW.md b/comfyui_embedded_docs/docs/ClipVisionEncode/zh-TW.md index b291e9f23..ebab73fef 100644 --- a/comfyui_embedded_docs/docs/ClipVisionEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipVisionEncode/zh-TW.md @@ -27,4 +27,4 @@ - `last_hidden_state`:最後隱藏狀態 - `image_embeds`:圖像嵌入向量 - `penultimate_hidden_states`:倒數第二隱藏狀態 -- `mm_projected`:多模態投影結果(如果可用) \ No newline at end of file +- `mm_projected`:多模態投影結果(如果可用) diff --git a/comfyui_embedded_docs/docs/ClipVisionLoader/ar.md b/comfyui_embedded_docs/docs/ClipVisionLoader/ar.md index 53baf5643..de963e200 100644 --- a/comfyui_embedded_docs/docs/ClipVisionLoader/ar.md +++ b/comfyui_embedded_docs/docs/ClipVisionLoader/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |--------------|--------------|-------------| | `clip_vision` | CLIP_VISION | نموذج CLIP Vision المُحمّل، جاهز لتشفير الصور أو مهام الرؤية الأخرى ذات الصلة. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ClipVisionLoader/pt-BR.md b/comfyui_embedded_docs/docs/ClipVisionLoader/pt-BR.md index b7fd63944..84ccf4e01 100644 --- a/comfyui_embedded_docs/docs/ClipVisionLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/ClipVisionLoader/pt-BR.md @@ -12,4 +12,4 @@ Este nó detecta automaticamente os modelos localizados na pasta `ComfyUI/models | Campo | Tipo de Dados | Descrição | |---------------|---------------|-----------| -| `clip_vision` | CLIP_VISION | Modelo CLIP Vision carregado, pronto para codificar imagens ou outras tarefas relacionadas à visão computacional. | \ No newline at end of file +| `clip_vision` | CLIP_VISION | Modelo CLIP Vision carregado, pronto para codificar imagens ou outras tarefas relacionadas à visão computacional. | diff --git a/comfyui_embedded_docs/docs/ClipVisionLoader/tr.md b/comfyui_embedded_docs/docs/ClipVisionLoader/tr.md index 967c7a914..060928311 100644 --- a/comfyui_embedded_docs/docs/ClipVisionLoader/tr.md +++ b/comfyui_embedded_docs/docs/ClipVisionLoader/tr.md @@ -12,4 +12,4 @@ Bu düğüm, `ComfyUI/models/clip_vision` klasöründe bulunan modelleri ve `ext | Alan | Veri Tipi | Açıklama | |--------------|--------------|-------------| -| `clip_vision` | CLIP_VISION | Yüklenen CLIP Vision modeli; görüntü kodlama veya diğer görüntü ile ilgili görevler için hazır. | \ No newline at end of file +| `clip_vision` | CLIP_VISION | Yüklenen CLIP Vision modeli; görüntü kodlama veya diğer görüntü ile ilgili görevler için hazır. | diff --git a/comfyui_embedded_docs/docs/ClipVisionLoader/zh-TW.md b/comfyui_embedded_docs/docs/ClipVisionLoader/zh-TW.md index 906b3a259..2378b2eba 100644 --- a/comfyui_embedded_docs/docs/ClipVisionLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/ClipVisionLoader/zh-TW.md @@ -12,4 +12,4 @@ | 欄位名稱 | 資料類型 | 描述 | |--------------|--------------|-------------| -| `clip_vision` | CLIP_VISION | 已載入的 CLIP Vision 模型,準備好用於圖像編碼或其他視覺相關任務。 | \ No newline at end of file +| `clip_vision` | CLIP_VISION | 已載入的 CLIP Vision 模型,準備好用於圖像編碼或其他視覺相關任務。 | diff --git a/comfyui_embedded_docs/docs/CombineHooks/ar.md b/comfyui_embedded_docs/docs/CombineHooks/ar.md index 7c432ddb6..0556c2179 100644 --- a/comfyui_embedded_docs/docs/CombineHooks/ar.md +++ b/comfyui_embedded_docs/docs/CombineHooks/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `hooks` | HOOKS | مجموعة الخطافات المدمجة التي تحتوي على جميع الخطافات من مجموعتي الإدخال | \ No newline at end of file +| `hooks` | HOOKS | مجموعة الخطافات المدمجة التي تحتوي على جميع الخطافات من مجموعتي الإدخال | diff --git a/comfyui_embedded_docs/docs/CombineHooks/pt-BR.md b/comfyui_embedded_docs/docs/CombineHooks/pt-BR.md index 2045a2096..c0512c757 100644 --- a/comfyui_embedded_docs/docs/CombineHooks/pt-BR.md +++ b/comfyui_embedded_docs/docs/CombineHooks/pt-BR.md @@ -15,4 +15,4 @@ O nó Combine Hooks [2] mescla dois grupos de hooks em um único grupo de hooks | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `hooks` | HOOKS | Grupo de hooks combinado contendo todos os hooks de ambos os grupos de entrada | \ No newline at end of file +| `hooks` | HOOKS | Grupo de hooks combinado contendo todos os hooks de ambos os grupos de entrada | diff --git a/comfyui_embedded_docs/docs/CombineHooks/tr.md b/comfyui_embedded_docs/docs/CombineHooks/tr.md index 3d17f258f..1438faeeb 100644 --- a/comfyui_embedded_docs/docs/CombineHooks/tr.md +++ b/comfyui_embedded_docs/docs/CombineHooks/tr.md @@ -17,4 +17,4 @@ Combine Hooks [2] düğümü, iki kanca grubunu tek bir birleşik kanca grubunda | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `hooks` | HOOKS | Her iki giriş grubundaki tüm kancaları içeren birleşik kanca grubu | \ No newline at end of file +| `hooks` | HOOKS | Her iki giriş grubundaki tüm kancaları içeren birleşik kanca grubu | diff --git a/comfyui_embedded_docs/docs/CombineHooks/zh-TW.md b/comfyui_embedded_docs/docs/CombineHooks/zh-TW.md index a9616ff4f..3ae548fa5 100644 --- a/comfyui_embedded_docs/docs/CombineHooks/zh-TW.md +++ b/comfyui_embedded_docs/docs/CombineHooks/zh-TW.md @@ -17,4 +17,4 @@ Combine Hooks [2] 節點將兩個掛鉤群組合併為單一的組合掛鉤群 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `hooks` | HOOKS | 包含兩個輸入群組中所有掛鉤的組合掛鉤群組 | \ No newline at end of file +| `hooks` | HOOKS | 包含兩個輸入群組中所有掛鉤的組合掛鉤群組 | diff --git a/comfyui_embedded_docs/docs/CombineHooksEight/ar.md b/comfyui_embedded_docs/docs/CombineHooksEight/ar.md index 83360850c..02d228ccb 100644 --- a/comfyui_embedded_docs/docs/CombineHooksEight/ar.md +++ b/comfyui_embedded_docs/docs/CombineHooksEight/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | مجموعة خطاف موحدة واحدة تحتوي على جميع تكوينات الخطاف المقدمة | \ No newline at end of file +| `HOOKS` | HOOKS | مجموعة خطاف موحدة واحدة تحتوي على جميع تكوينات الخطاف المقدمة | diff --git a/comfyui_embedded_docs/docs/CombineHooksEight/pt-BR.md b/comfyui_embedded_docs/docs/CombineHooksEight/pt-BR.md index 35a42d1dc..f1c36f797 100644 --- a/comfyui_embedded_docs/docs/CombineHooksEight/pt-BR.md +++ b/comfyui_embedded_docs/docs/CombineHooksEight/pt-BR.md @@ -21,4 +21,4 @@ O nó Combine Hooks [8] mescla até oito grupos de hooks diferentes em um único | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Um único grupo de hooks combinado contendo todas as configurações de hooks fornecidas | \ No newline at end of file +| `HOOKS` | HOOKS | Um único grupo de hooks combinado contendo todas as configurações de hooks fornecidas | diff --git a/comfyui_embedded_docs/docs/CombineHooksEight/tr.md b/comfyui_embedded_docs/docs/CombineHooksEight/tr.md index b038fd9e2..e650bcea1 100644 --- a/comfyui_embedded_docs/docs/CombineHooksEight/tr.md +++ b/comfyui_embedded_docs/docs/CombineHooksEight/tr.md @@ -21,4 +21,4 @@ Combine Hooks [8] düğümü, sekiz farklı hook grubunu tek bir birleşik hook | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Sağlanan tüm hook yapılandırmalarını içeren tek bir birleşik hook grubu | \ No newline at end of file +| `HOOKS` | HOOKS | Sağlanan tüm hook yapılandırmalarını içeren tek bir birleşik hook grubu | diff --git a/comfyui_embedded_docs/docs/CombineHooksEight/zh-TW.md b/comfyui_embedded_docs/docs/CombineHooksEight/zh-TW.md index 4010585f0..deca00e38 100644 --- a/comfyui_embedded_docs/docs/CombineHooksEight/zh-TW.md +++ b/comfyui_embedded_docs/docs/CombineHooksEight/zh-TW.md @@ -21,4 +21,4 @@ Combine Hooks [8] 節點可將最多八個不同的掛鉤群組合併為單一 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | 單一整合掛鉤群組,包含所有已提供的掛鉤配置 | \ No newline at end of file +| `HOOKS` | HOOKS | 單一整合掛鉤群組,包含所有已提供的掛鉤配置 | diff --git a/comfyui_embedded_docs/docs/CombineHooksFour/ar.md b/comfyui_embedded_docs/docs/CombineHooksFour/ar.md index 9e06ce452..a782d9592 100644 --- a/comfyui_embedded_docs/docs/CombineHooksFour/ar.md +++ b/comfyui_embedded_docs/docs/CombineHooksFour/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `HOOKS` | HOOKS | مجموعة الخطاف المدمجة التي تحتوي على جميع تكوينات الخطاف المُدخلة | \ No newline at end of file +| `HOOKS` | HOOKS | مجموعة الخطاف المدمجة التي تحتوي على جميع تكوينات الخطاف المُدخلة | diff --git a/comfyui_embedded_docs/docs/CombineHooksFour/pt-BR.md b/comfyui_embedded_docs/docs/CombineHooksFour/pt-BR.md index fb227a387..ac33cd0e2 100644 --- a/comfyui_embedded_docs/docs/CombineHooksFour/pt-BR.md +++ b/comfyui_embedded_docs/docs/CombineHooksFour/pt-BR.md @@ -17,4 +17,4 @@ O nó Combine Hooks [4] mescla até quatro grupos de hooks separados em um únic | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Grupo de hooks combinado contendo todas as configurações de hooks fornecidas | \ No newline at end of file +| `HOOKS` | HOOKS | Grupo de hooks combinado contendo todas as configurações de hooks fornecidas | diff --git a/comfyui_embedded_docs/docs/CombineHooksFour/tr.md b/comfyui_embedded_docs/docs/CombineHooksFour/tr.md index 1e7966a15..43c09599f 100644 --- a/comfyui_embedded_docs/docs/CombineHooksFour/tr.md +++ b/comfyui_embedded_docs/docs/CombineHooksFour/tr.md @@ -17,4 +17,4 @@ Combine Hooks [4] düğümü, en fazla dört ayrı hook grubunu tek bir birleşi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Sağlanan tüm hook yapılandırmalarını içeren birleşik hook grubu | \ No newline at end of file +| `HOOKS` | HOOKS | Sağlanan tüm hook yapılandırmalarını içeren birleşik hook grubu | diff --git a/comfyui_embedded_docs/docs/CombineHooksFour/zh-TW.md b/comfyui_embedded_docs/docs/CombineHooksFour/zh-TW.md index 62a5295d3..48a83e40a 100644 --- a/comfyui_embedded_docs/docs/CombineHooksFour/zh-TW.md +++ b/comfyui_embedded_docs/docs/CombineHooksFour/zh-TW.md @@ -19,4 +19,4 @@ Combine Hooks [4] 節點可將最多四個獨立的掛鉤群組合併為單一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | 包含所有已提供掛鉤配置的組合掛鉤群組 | \ No newline at end of file +| `HOOKS` | HOOKS | 包含所有已提供掛鉤配置的組合掛鉤群組 | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/ar.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/ar.md index cda8b40a1..1c7504021 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/ar.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `output_1` | COMBO | يخرج القيمة المحددة من القائمة المنسدلة الأولى (`combo`). | -| `output_2` | COMBO | يخرج القيمة المحددة من القائمة المنسدلة الثانية (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | يخرج القيمة المحددة من القائمة المنسدلة الثانية (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/en.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/en.md index 720f2fb38..3c8a1c307 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/en.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/en.md @@ -14,4 +14,4 @@ The ComboOptionTestNode is a logic node designed to test and pass through combo | Output Name | Data Type | Description | |-------------|-----------|-------------| | `output_1` | COMBO | Outputs the value selected from the first combo box (`combo`). | -| `output_2` | COMBO | Outputs the value selected from the second combo box (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | Outputs the value selected from the second combo box (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/es.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/es.md index d8e6dcca0..670651b93 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/es.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/es.md @@ -14,4 +14,4 @@ El ComboOptionTestNode es un nodo lógico diseñado para probar y transmitir sel | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `output_1` | COMBO | Emite el valor seleccionado del primer cuadro combinado (`combo`). | -| `output_2` | COMBO | Emite el valor seleccionado del segundo cuadro combinado (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | Emite el valor seleccionado del segundo cuadro combinado (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/fr.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/fr.md index b8f3406df..b47fb3712 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/fr.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/fr.md @@ -14,4 +14,4 @@ Le ComboOptionTestNode est un nœud logique conçu pour tester et transmettre de | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `output_1` | COMBO | Sort la valeur sélectionnée dans la première liste déroulante (`combo`). | -| `output_2` | COMBO | Sort la valeur sélectionnée dans la seconde liste déroulante (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | Sort la valeur sélectionnée dans la seconde liste déroulante (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/ja.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/ja.md index 118a55a74..f031016ed 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/ja.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/ja.md @@ -14,4 +14,4 @@ ComboOptionTestNodeは、コンボボックス選択をテストおよび通過 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `output_1` | COMBO | 最初のコンボボックス(`combo`)から選択された値を出力します。 | -| `output_2` | COMBO | 2番目のコンボボックス(`combo2`)から選択された値を出力します。 | \ No newline at end of file +| `output_2` | COMBO | 2番目のコンボボックス(`combo2`)から選択された値を出力します。 | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/ko.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/ko.md index 33a28fac7..997785724 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/ko.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/ko.md @@ -14,4 +14,4 @@ ComboOptionTestNode는 콤보 박스 선택을 테스트하고 통과시키기 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `output_1` | COMBO | 첫 번째 콤보 박스(`combo`)에서 선택된 값을 출력합니다. | -| `output_2` | COMBO | 두 번째 콤보 박스(`combo2`)에서 선택된 값을 출력합니다. | \ No newline at end of file +| `output_2` | COMBO | 두 번째 콤보 박스(`combo2`)에서 선택된 값을 출력합니다. | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/pt-BR.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/pt-BR.md index 9c2557cc4..b7b9260f8 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/pt-BR.md @@ -14,4 +14,4 @@ O ComboOptionTestNode é um nó de lógica projetado para testar e repassar sele | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `output_1` | COMBO | Emite o valor selecionado na primeira caixa de combinação (`combo`). | -| `output_2` | COMBO | Emite o valor selecionado na segunda caixa de combinação (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | Emite o valor selecionado na segunda caixa de combinação (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/ru.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/ru.md index 97dfbddde..cfd9f01d6 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/ru.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `output_1` | COMBO | Выводит значение, выбранное из первого комбо-бокса (`combo`). | -| `output_2` | COMBO | Выводит значение, выбранное из второго комбо-бокса (`combo2`). | \ No newline at end of file +| `output_2` | COMBO | Выводит значение, выбранное из второго комбо-бокса (`combo2`). | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/tr.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/tr.md index 64856de99..d8c24aef2 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/tr.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/tr.md @@ -14,4 +14,4 @@ ComboOptionTestNode, açılır liste seçimlerini test etmek ve iletmek için ta | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `output_1` | COMBO | İlk açılır listeden (`combo`) seçilen değeri çıktı olarak verir. | -| `output_2` | COMBO | İkinci açılır listeden (`combo2`) seçilen değeri çıktı olarak verir. | \ No newline at end of file +| `output_2` | COMBO | İkinci açılır listeden (`combo2`) seçilen değeri çıktı olarak verir. | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/zh-TW.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/zh-TW.md index a5548f1e3..523ba3f19 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/zh-TW.md @@ -14,4 +14,4 @@ ComboOptionTestNode 是一個邏輯節點,用於測試並傳遞下拉式選單 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `output_1` | COMBO | 輸出從第一個下拉式選單 (`combo`) 中選擇的值。 | -| `output_2` | COMBO | 輸出從第二個下拉式選單 (`combo2`) 中選擇的值。 | \ No newline at end of file +| `output_2` | COMBO | 輸出從第二個下拉式選單 (`combo2`) 中選擇的值。 | diff --git a/comfyui_embedded_docs/docs/ComboOptionTestNode/zh.md b/comfyui_embedded_docs/docs/ComboOptionTestNode/zh.md index 50bb8f7e5..d2e0c7cc4 100644 --- a/comfyui_embedded_docs/docs/ComboOptionTestNode/zh.md +++ b/comfyui_embedded_docs/docs/ComboOptionTestNode/zh.md @@ -14,4 +14,4 @@ ComboOptionTestNode 是一个逻辑节点,用于测试并透传下拉框选择 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `output_1` | COMBO | 输出从第一个下拉框 (`combo`) 中选择的值。 | -| `output_2` | COMBO | 输出从第二个下拉框 (`combo2`) 中选择的值。 | \ No newline at end of file +| `output_2` | COMBO | 输出从第二个下拉框 (`combo2`) 中选择的值。 | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ar.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ar.md index 6e2d92a5e..c4b48728a 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ar.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | القيمة المختارة. ستطابق نوع البيانات الخاص بالإدخال المتصل `on_false` أو `on_true`. | \ No newline at end of file +| `output` | MATCH_TYPE | القيمة المختارة. ستطابق نوع البيانات الخاص بالإدخال المتصل `on_false` أو `on_true`. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/en.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/en.md index ebb90e02d..4eb0dd3cd 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/en.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/en.md @@ -16,4 +16,4 @@ The Soft Switch node selects between two possible input values based on a boolea | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | The selected value. It will match the data type of the connected `on_false` or `on_true` input. | \ No newline at end of file +| `output` | MATCH_TYPE | The selected value. It will match the data type of the connected `on_false` or `on_true` input. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/es.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/es.md index 4cc460762..22044e586 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/es.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/es.md @@ -16,4 +16,4 @@ El nodo Soft Switch selecciona entre dos valores de entrada posibles según una | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | El valor seleccionado. Coincidirá con el tipo de dato de la entrada `on_false` o `on_true` conectada. | \ No newline at end of file +| `output` | MATCH_TYPE | El valor seleccionado. Coincidirá con el tipo de dato de la entrada `on_false` o `on_true` conectada. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/fr.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/fr.md index 04d6b1d39..5635ab55d 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/fr.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/fr.md @@ -16,4 +16,4 @@ Le nœud Soft Switch sélectionne entre deux valeurs d'entrée possibles en fonc | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | La valeur sélectionnée. Elle correspondra au type de données de l'entrée connectée `on_false` ou `on_true`. | \ No newline at end of file +| `output` | MATCH_TYPE | La valeur sélectionnée. Elle correspondra au type de données de l'entrée connectée `on_false` ou `on_true`. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ja.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ja.md index db42949c9..f001766ec 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ja.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ja.md @@ -16,4 +16,4 @@ Soft Switchノードは、ブール条件に基づいて2つの入力値のい | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 選択された値です。接続された`on_false`または`on_true`入力のデータ型と一致します。 | \ No newline at end of file +| `output` | MATCH_TYPE | 選択された値です。接続された`on_false`または`on_true`入力のデータ型と一致します。 | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ko.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ko.md index dbea04280..3ca648cbf 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ko.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ko.md @@ -16,4 +16,4 @@ Soft Switch 노드는 불리언 조건에 따라 두 가지 가능한 입력 값 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 선택된 값입니다. 연결된 `on_false` 또는 `on_true` 입력의 데이터 타입과 일치합니다. | \ No newline at end of file +| `output` | MATCH_TYPE | 선택된 값입니다. 연결된 `on_false` 또는 `on_true` 입력의 데이터 타입과 일치합니다. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/pt-BR.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/pt-BR.md index 997e0a1c3..b4bf463bf 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/pt-BR.md @@ -16,4 +16,4 @@ O nó Soft Switch seleciona entre dois valores de entrada possíveis com base em | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | O valor selecionado. Ele corresponderá ao tipo de dados da entrada `on_false` ou `on_true` conectada. | \ No newline at end of file +| `output` | MATCH_TYPE | O valor selecionado. Ele corresponderá ao tipo de dados da entrada `on_false` ou `on_true` conectada. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ru.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ru.md index 962769b6d..1c17c20c4 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ru.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Выбранное значение. Его тип данных будет соответствовать типу данных подключенного входа `on_false` или `on_true`. | \ No newline at end of file +| `output` | MATCH_TYPE | Выбранное значение. Его тип данных будет соответствовать типу данных подключенного входа `on_false` или `on_true`. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/tr.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/tr.md index 79fae5a38..f82ea05dd 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/tr.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/tr.md @@ -16,4 +16,4 @@ Soft Switch düğümü, bir boolean koşuluna dayanarak iki olası giriş değer | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Seçilen değer. Bağlanan `on_false` veya `on_true` girişinin veri türüyle eşleşecektir. | \ No newline at end of file +| `output` | MATCH_TYPE | Seçilen değer. Bağlanan `on_false` veya `on_true` girişinin veri türüyle eşleşecektir. | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh-TW.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh-TW.md index cdfa7bb8e..6c2ef53fb 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 被選中的值。其資料類型將與所連接的 `on_false` 或 `on_true` 輸入相匹配。 | \ No newline at end of file +| `output` | MATCH_TYPE | 被選中的值。其資料類型將與所連接的 `on_false` 或 `on_true` 輸入相匹配。 | diff --git a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh.md b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh.md index ab2cd9048..9cfc87552 100644 --- a/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh.md +++ b/comfyui_embedded_docs/docs/ComfySoftSwitchNode/zh.md @@ -16,4 +16,4 @@ Soft Switch 节点根据一个布尔条件在两个可能的输入值之间进 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 被选中的值。其数据类型将与所连接的 `on_false` 或 `on_true` 输入的数据类型相匹配。 | \ No newline at end of file +| `output` | MATCH_TYPE | 被选中的值。其数据类型将与所连接的 `on_false` 或 `on_true` 输入的数据类型相匹配。 | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/ar.md b/comfyui_embedded_docs/docs/ComfySwitchNode/ar.md index 4fff54f22..0193743f1 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/ar.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | البيانات المختارة. ستكون هذه القيمة من المدخل `on_true` إذا كان `switch` بقيمة true، أو القيمة من المدخل `on_false` إذا كان `switch` بقيمة false. | \ No newline at end of file +| `output` | MATCH_TYPE | البيانات المختارة. ستكون هذه القيمة من المدخل `on_true` إذا كان `switch` بقيمة true، أو القيمة من المدخل `on_false` إذا كان `switch` بقيمة false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/en.md b/comfyui_embedded_docs/docs/ComfySwitchNode/en.md index 3eab8eea4..85cd2191b 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/en.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/en.md @@ -16,4 +16,4 @@ The Switch node selects between two possible inputs based on a boolean condition | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | The selected data. This will be the value from the `on_true` input if the `switch` is true, or the value from the `on_false` input if the `switch` is false. | \ No newline at end of file +| `output` | MATCH_TYPE | The selected data. This will be the value from the `on_true` input if the `switch` is true, or the value from the `on_false` input if the `switch` is false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/es.md b/comfyui_embedded_docs/docs/ComfySwitchNode/es.md index 977333917..18f774fdb 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/es.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/es.md @@ -16,4 +16,4 @@ El nodo Switch selecciona entre dos entradas posibles basándose en una condici | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Los datos seleccionados. Será el valor de la entrada `on_true` si el `switch` es true, o el valor de la entrada `on_false` si el `switch` es false. | \ No newline at end of file +| `output` | MATCH_TYPE | Los datos seleccionados. Será el valor de la entrada `on_true` si el `switch` es true, o el valor de la entrada `on_false` si el `switch` es false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/fr.md b/comfyui_embedded_docs/docs/ComfySwitchNode/fr.md index ae3612c9e..f758593e0 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/fr.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/fr.md @@ -16,4 +16,4 @@ Le nœud Switch permet de sélectionner entre deux entrées possibles en fonctio | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Les données sélectionnées. Il s'agira de la valeur de l'entrée `on_true` si `switch` est true, ou de la valeur de l'entrée `on_false` si `switch` est false. | \ No newline at end of file +| `output` | MATCH_TYPE | Les données sélectionnées. Il s'agira de la valeur de l'entrée `on_true` si `switch` est true, ou de la valeur de l'entrée `on_false` si `switch` est false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/ja.md b/comfyui_embedded_docs/docs/ComfySwitchNode/ja.md index 00ce5e14b..944f523bf 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/ja.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/ja.md @@ -16,4 +16,4 @@ Switchノードは、ブール条件に基づいて2つの入力のいずれか | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 選択されたデータです。`switch`がtrueの場合は`on_true`入力の値、`switch`がfalseの場合は`on_false`入力の値が出力されます。 | \ No newline at end of file +| `output` | MATCH_TYPE | 選択されたデータです。`switch`がtrueの場合は`on_true`入力の値、`switch`がfalseの場合は`on_false`入力の値が出力されます。 | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/ko.md b/comfyui_embedded_docs/docs/ComfySwitchNode/ko.md index 885d4646a..229ed3340 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/ko.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/ko.md @@ -16,4 +16,4 @@ Switch 노드는 불리언 조건에 따라 두 가지 가능한 입력 중 하 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 선택된 데이터입니다. `switch`가 true이면 `on_true` 입력의 값이, `switch`가 false이면 `on_false` 입력의 값이 출력됩니다. | \ No newline at end of file +| `output` | MATCH_TYPE | 선택된 데이터입니다. `switch`가 true이면 `on_true` 입력의 값이, `switch`가 false이면 `on_false` 입력의 값이 출력됩니다. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/pt-BR.md b/comfyui_embedded_docs/docs/ComfySwitchNode/pt-BR.md index 3539db0e4..416599ad7 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/pt-BR.md @@ -16,4 +16,4 @@ O nó Switch seleciona entre duas entradas possíveis com base em uma condição | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | O dado selecionado. Este será o valor da entrada `on_true` se o `switch` for true, ou o valor da entrada `on_false` se o `switch` for false. | \ No newline at end of file +| `output` | MATCH_TYPE | O dado selecionado. Este será o valor da entrada `on_true` se o `switch` for true, ou o valor da entrada `on_false` se o `switch` for false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/ru.md b/comfyui_embedded_docs/docs/ComfySwitchNode/ru.md index 96b6e1650..05a132e65 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/ru.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Выбранные данные. Это будет значение из входа `on_true`, если `switch` равен true, или значение из входа `on_false`, если `switch` равен false. | \ No newline at end of file +| `output` | MATCH_TYPE | Выбранные данные. Это будет значение из входа `on_true`, если `switch` равен true, или значение из входа `on_false`, если `switch` равен false. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/tr.md b/comfyui_embedded_docs/docs/ComfySwitchNode/tr.md index 288f122da..5e4f13358 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/tr.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/tr.md @@ -16,4 +16,4 @@ Switch düğümü, bir boolean koşula dayanarak iki olası girdi arasında seç | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | Seçilen veri. `switch` true ise `on_true` girdisinden, false ise `on_false` girdisinden gelen değer olacaktır. | \ No newline at end of file +| `output` | MATCH_TYPE | Seçilen veri. `switch` true ise `on_true` girdisinden, false ise `on_false` girdisinden gelen değer olacaktır. | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/zh-TW.md b/comfyui_embedded_docs/docs/ComfySwitchNode/zh-TW.md index 313a7fc0b..9ba91a20a 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/zh-TW.md @@ -16,4 +16,4 @@ Switch 節點根據布林條件在兩個可能的輸入之間進行選擇。當 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 被選中的資料。如果 `switch` 為 true,這將是來自 `on_true` 輸入的值;如果 `switch` 為 false,則是來自 `on_false` 輸入的值。 | \ No newline at end of file +| `output` | MATCH_TYPE | 被選中的資料。如果 `switch` 為 true,這將是來自 `on_true` 輸入的值;如果 `switch` 為 false,則是來自 `on_false` 輸入的值。 | diff --git a/comfyui_embedded_docs/docs/ComfySwitchNode/zh.md b/comfyui_embedded_docs/docs/ComfySwitchNode/zh.md index fa9a40e4c..65ab4e3a4 100644 --- a/comfyui_embedded_docs/docs/ComfySwitchNode/zh.md +++ b/comfyui_embedded_docs/docs/ComfySwitchNode/zh.md @@ -16,4 +16,4 @@ Switch 节点根据布尔条件在两个可能的输入之间进行选择。当 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | MATCH_TYPE | 被选中的数据。如果 `switch` 为 true,则输出 `on_true` 输入的值;如果 `switch` 为 false,则输出 `on_false` 输入的值。 | \ No newline at end of file +| `output` | MATCH_TYPE | 被选中的数据。如果 `switch` 为 true,则输出 `on_true` 输入的值;如果 `switch` 为 false,则输出 `on_false` 输入的值。 | diff --git a/comfyui_embedded_docs/docs/ConditioningAverage/ar.md b/comfyui_embedded_docs/docs/ConditioningAverage/ar.md index 120891272..c957dc5a6 100644 --- a/comfyui_embedded_docs/docs/ConditioningAverage/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningAverage/ar.md @@ -25,4 +25,4 @@ - **الانتقال التدريجي بين الأوامر النصية:** الانتقال بسلاسة بين نصي أمر مختلفين، لتوليد محتوى ذي نمط أو دلالات وسيطة. - **دمج الأنماط:** الجمع بين الأساليب الفنية المختلفة أو الشروط الدلالية لإنشاء تأثيرات جديدة. - **ضبط القوة:** التحكم الدقيق في تأثير تكييف معين على النتيجة من خلال ضبط الوزن. -- **الاستكشاف الإبداعي:** استكشاف تأثيرات توليدية متنوعة من خلال مزج نصوص أوامر مختلفة. \ No newline at end of file +- **الاستكشاف الإبداعي:** استكشاف تأثيرات توليدية متنوعة من خلال مزج نصوص أوامر مختلفة. diff --git a/comfyui_embedded_docs/docs/ConditioningAverage/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningAverage/pt-BR.md index c398fb31d..a1e1be0b6 100644 --- a/comfyui_embedded_docs/docs/ConditioningAverage/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningAverage/pt-BR.md @@ -25,4 +25,4 @@ Conforme mostrado abaixo, ajustando a força de `conditioning_to`, você pode ob - **Interpolação de Prompts:** Transicionar suavemente entre dois prompts de texto diferentes, gerando conteúdo com estilo ou semântica intermediários. - **Fusão de Estilos:** Combinar diferentes estilos artísticos ou condições semânticas para criar efeitos novos. - **Ajuste de Força:** Controlar com precisão a influência de um condicionamento específico no resultado, ajustando o peso. -- **Exploração Criativa:** Explorar diversos efeitos generativos misturando diferentes prompts. \ No newline at end of file +- **Exploração Criativa:** Explorar diversos efeitos generativos misturando diferentes prompts. diff --git a/comfyui_embedded_docs/docs/ConditioningAverage/tr.md b/comfyui_embedded_docs/docs/ConditioningAverage/tr.md index 633c17288..6ee53b419 100644 --- a/comfyui_embedded_docs/docs/ConditioningAverage/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningAverage/tr.md @@ -25,4 +25,4 @@ Aşağıda gösterildiği gibi, `conditioning_to` parametresinin gücünü ayarl - **İstem Enterpolasyonu:** İki farklı metin istemi arasında sorunsuz geçiş yaparak, ara stil veya anlambilime sahip içerik oluşturun. - **Stil Füzyonu:** Farklı sanatsal stilleri veya anlamsal koşulları birleştirerek yeni efektler yaratın. - **Güç Ayarlama:** Ağırlığı ayarlayarak belirli bir koşullandırmanın sonuç üzerindeki etkisini hassas bir şekilde kontrol edin. -- **Yaratıcı Keşif:** Farklı istemleri karıştırarak çeşitli üretken efektleri keşfedin. \ No newline at end of file +- **Yaratıcı Keşif:** Farklı istemleri karıştırarak çeşitli üretken efektleri keşfedin. diff --git a/comfyui_embedded_docs/docs/ConditioningAverage/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningAverage/zh-TW.md index f97868492..085ca1d3b 100644 --- a/comfyui_embedded_docs/docs/ConditioningAverage/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningAverage/zh-TW.md @@ -25,4 +25,4 @@ - **提示插值:** 在兩個不同的文字提示之間平滑過渡,生成具有中間風格或語義的內容。 - **風格融合:** 結合不同的藝術風格或語義條件,創造新穎的效果。 - **強度調整:** 透過調整權重,精確控制特定條件資料對結果的影響。 -- **創意探索:** 透過混合不同的提示,探索多樣化的生成效果。 \ No newline at end of file +- **創意探索:** 透過混合不同的提示,探索多樣化的生成效果。 diff --git a/comfyui_embedded_docs/docs/ConditioningCombine/ar.md b/comfyui_embedded_docs/docs/ConditioningCombine/ar.md index 2895304b8..1479806c8 100644 --- a/comfyui_embedded_docs/docs/ConditioningCombine/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningCombine/ar.md @@ -27,4 +27,4 @@ - دمج النص الأساسي: توصيل مخرجات عقدتي `CLIP Text Encode` إلى منفذي الإدخال في عقدة `Conditioning Combine` - دمج النصوص الموجهة المعقدة: دمج النصوص الموجهة الإيجابية والسلبية، أو تشفير الأوصاف الرئيسية وأوصاف الأسلوب بشكل منفصل قبل الدمج -- دمج سلسلة الشروط: يمكن استخدام عدة عقد `Conditioning Combine` على التوالي لتحقيق دمج تدريجي لشروط متعددة \ No newline at end of file +- دمج سلسلة الشروط: يمكن استخدام عدة عقد `Conditioning Combine` على التوالي لتحقيق دمج تدريجي لشروط متعددة diff --git a/comfyui_embedded_docs/docs/ConditioningCombine/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningCombine/pt-BR.md index 9b19a7a72..5dbae15de 100644 --- a/comfyui_embedded_docs/docs/ConditioningCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningCombine/pt-BR.md @@ -27,4 +27,4 @@ Usando este nó, você pode alcançar: - **Mesclagem básica de texto:** Conecte as saídas de dois nós `CLIP Text Encode` às duas portas de entrada do `Conditioning Combine`. - **Combinação complexa de prompts:** Combine prompts positivos e negativos, ou codifique separadamente descrições principais e descrições de estilo antes de mesclá-las. -- **Combinação em cadeia de condições:** Múltiplos nós `Conditioning Combine` podem ser usados em série para alcançar uma combinação gradual de várias condições. \ No newline at end of file +- **Combinação em cadeia de condições:** Múltiplos nós `Conditioning Combine` podem ser usados em série para alcançar uma combinação gradual de várias condições. diff --git a/comfyui_embedded_docs/docs/ConditioningCombine/tr.md b/comfyui_embedded_docs/docs/ConditioningCombine/tr.md index e94e4bd31..7be5fdd2e 100644 --- a/comfyui_embedded_docs/docs/ConditioningCombine/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningCombine/tr.md @@ -27,4 +27,4 @@ Bu düğümü kullanarak şunları başarabilirsiniz: - Temel metin birleştirme: İki `CLIP Text Encode` düğümünün çıktılarını `Conditioning Combine`'un iki giriş portuna bağlayın - Karmaşık prompt birleştirme: Olumlu ve olumsuz prompt'ları birleştirin veya ana açıklamaları ve stil açıklamalarını ayrı ayrı kodladıktan sonra birleştirin -- Koşullu zincir birleştirme: Birden fazla `Conditioning Combine` düğümü, birden fazla koşulun kademeli olarak birleştirilmesini sağlamak için seri olarak kullanılabilir \ No newline at end of file +- Koşullu zincir birleştirme: Birden fazla `Conditioning Combine` düğümü, birden fazla koşulun kademeli olarak birleştirilmesini sağlamak için seri olarak kullanılabilir diff --git a/comfyui_embedded_docs/docs/ConditioningCombine/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningCombine/zh-TW.md index 6fb45b26a..4eeb5ac72 100644 --- a/comfyui_embedded_docs/docs/ConditioningCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningCombine/zh-TW.md @@ -27,4 +27,4 @@ - 基本文字合併:將兩個 `CLIP Text Encode` 節點的輸出連接到 `Conditioning Combine` 的兩個輸入端口 - 複雜提示詞組合:合併正向和負向提示詞,或分別編碼主要描述和風格描述後再進行合併 -- 條件鏈組合:可以串聯多個 `Conditioning Combine` 節點來實現多個條件的漸進式組合 \ No newline at end of file +- 條件鏈組合:可以串聯多個 `Conditioning Combine` 節點來實現多個條件的漸進式組合 diff --git a/comfyui_embedded_docs/docs/ConditioningConcat/ar.md b/comfyui_embedded_docs/docs/ConditioningConcat/ar.md index f235f66a8..66bccef4e 100644 --- a/comfyui_embedded_docs/docs/ConditioningConcat/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningConcat/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع Comfy | الوصف | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | الناتج هو مجموعة موحدة من متجهات التكييف، تنتج عن دمج متجهات 'conditioning_from' مع متجهات 'conditioning_to'. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | الناتج هو مجموعة موحدة من متجهات التكييف، تنتج عن دمج متجهات 'conditioning_from' مع متجهات 'conditioning_to'. | diff --git a/comfyui_embedded_docs/docs/ConditioningConcat/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningConcat/pt-BR.md index ce5ca3986..dc3f5b0ed 100644 --- a/comfyui_embedded_docs/docs/ConditioningConcat/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningConcat/pt-BR.md @@ -13,4 +13,4 @@ O nó ConditioningConcat é projetado para concatenar vetores de condicionamento | Parâmetro | Tipo Comfy | Descrição | |---------------------|--------------------|-----------| -| `conditioning` | `CONDITIONING` | A saída é um conjunto unificado de vetores de condicionamento, resultante da concatenação dos vetores `conditioning_from` nos vetores `conditioning_to`. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | A saída é um conjunto unificado de vetores de condicionamento, resultante da concatenação dos vetores `conditioning_from` nos vetores `conditioning_to`. | diff --git a/comfyui_embedded_docs/docs/ConditioningConcat/tr.md b/comfyui_embedded_docs/docs/ConditioningConcat/tr.md index cf3f5b1d1..d68d01d68 100644 --- a/comfyui_embedded_docs/docs/ConditioningConcat/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningConcat/tr.md @@ -13,4 +13,4 @@ ConditioningConcat düğümü, koşullandırma vektörlerini birleştirmek üzer | Parametre | Comfy dtype | Açıklama | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | Çıktı, 'conditioning_from' vektörlerinin 'conditioning_to' vektörlerine eklenmesi sonucu oluşan, birleşik bir koşullandırma vektörleri kümesidir. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | Çıktı, 'conditioning_from' vektörlerinin 'conditioning_to' vektörlerine eklenmesi sonucu oluşan, birleşik bir koşullandırma vektörleri kümesidir. | diff --git a/comfyui_embedded_docs/docs/ConditioningConcat/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningConcat/zh-TW.md index 12ddb522f..1c1b521a5 100644 --- a/comfyui_embedded_docs/docs/ConditioningConcat/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningConcat/zh-TW.md @@ -15,4 +15,4 @@ ConditioningConcat 節點專門用於串接條件向量,特別是將 'conditio | 參數名稱 | Comfy 資料類型 | 描述 | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | 輸出為統一的條件向量集合,由 'conditioning_from' 向量串接到 'conditioning_to' 向量的結果。 | \ No newline at end of file +| `conditioning` | `CONDITIONING` | 輸出為統一的條件向量集合,由 'conditioning_from' 向量串接到 'conditioning_to' 向量的結果。 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetArea/ar.md b/comfyui_embedded_docs/docs/ConditioningSetArea/ar.md index 660f9566f..8f2dfdd0f 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetArea/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetArea/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة، التي تعكس إعدادات المنطقة المحددة والتعديلات المطبقة. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة، التي تعكس إعدادات المنطقة المحددة والتعديلات المطبقة. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetArea/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetArea/pt-BR.md index 3bce1f3b4..d6d0f494a 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetArea/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetArea/pt-BR.md @@ -17,4 +17,4 @@ Este nó é projetado para modificar as informações de condicionamento definin | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados, refletindo as configurações e ajustes da área especificada. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados, refletindo as configurações e ajustes da área especificada. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetArea/tr.md b/comfyui_embedded_docs/docs/ConditioningSetArea/tr.md index a400882f0..531c4ca0a 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetArea/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetArea/tr.md @@ -17,4 +17,4 @@ Bu düğüm, koşullandırma bağlamı içinde belirli alanları ayarlayarak ko | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | Belirtilen alan ayarlarını ve düzenlemeleri yansıtan, değiştirilmiş koşullandırma verisi. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Belirtilen alan ayarlarını ve düzenlemeleri yansıtan, değiştirilmiş koşullandırma verisi. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetArea/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetArea/zh-TW.md index 2e74547d1..5c616f993 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetArea/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetArea/zh-TW.md @@ -17,4 +17,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | 修改後的條件資料,反映指定的區域設定和調整。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 修改後的條件資料,反映指定的區域設定和調整。 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/ar.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/ar.md index 54fef09e5..8eeca7887 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |--------------|---------------|--------| -| `CONDITIONING` | CONDITIONING | يُرجع عناصر التكييف المعدلة مع معلمات المنطقة والقوة المحدثة، جاهزة لمزيد من المعالجة أو التطبيق. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | يُرجع عناصر التكييف المعدلة مع معلمات المنطقة والقوة المحدثة، جاهزة لمزيد من المعالجة أو التطبيق. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/pt-BR.md index 7cfc7c48a..5cee60286 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/pt-BR.md @@ -17,4 +17,4 @@ O nó ConditioningSetAreaPercentage é especializado em ajustar a área de influ | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | Retorna os elementos de condicionamento modificados com os parâmetros de área e força atualizados, prontos para processamento ou aplicação posteriores. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Retorna os elementos de condicionamento modificados com os parâmetros de área e força atualizados, prontos para processamento ou aplicação posteriores. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/tr.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/tr.md index ff8b94722..88b98022d 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/tr.md @@ -17,4 +17,4 @@ ConditioningSetAreaPercentage düğümü, koşullandırma elemanlarının etki a | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | Güncellenmiş alan ve güç parametreleriyle değiştirilmiş koşullandırma elemanlarını döndürür; daha fazla işleme veya uygulama için hazırdır. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Güncellenmiş alan ve güç parametreleriyle değiştirilmiş koşullandırma elemanlarını döndürür; daha fazla işleme veya uygulama için hazırdır. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/zh-TW.md index 1de248997..4ec01d1be 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentage/zh-TW.md @@ -19,4 +19,4 @@ ConditioningSetAreaPercentage 節點專門用於根據百分比值調整條件 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | 返回經過修改的條件化元素,其中包含更新後的區域和強度參數,準備進行進一步處理或應用。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 返回經過修改的條件化元素,其中包含更新後的區域和強度參數,準備進行進一步處理或應用。 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/ar.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/ar.md index fbc9c72d3..529989635 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|---------------|-------| | `التهيئة` | CONDITIONING | بيانات التكييف المعدلة مع تطبيق إعدادات المنطقة والقوة المُحدَّدة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/pt-BR.md index d24914e89..33acd9ac5 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/pt-BR.md @@ -19,4 +19,4 @@ O nó ConditioningSetAreaPercentageVideo modifica dados de condicionamento defin | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com as configurações de área e intensidade especificadas aplicadas | \ No newline at end of file +| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com as configurações de área e intensidade especificadas aplicadas | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/tr.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/tr.md index 71385b192..9b90e40be 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/tr.md @@ -19,4 +19,4 @@ ConditioningSetAreaPercentageVideo düğümü, video üretimi için belirli bir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `koşullandırma` | CONDITIONING | Belirtilen alan ve güç ayarları uygulanmış olarak değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `koşullandırma` | CONDITIONING | Belirtilen alan ve güç ayarları uygulanmış olarak değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/zh-TW.md index c921b3f03..d6d2a03ce 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaPercentageVideo/zh-TW.md @@ -19,4 +19,4 @@ ConditioningSetAreaPercentageVideo 節點透過定義特定區域和時間範圍 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `條件設定` | CONDITIONING | 已應用指定區域和強度設定的修改後條件資料 | \ No newline at end of file +| `條件設定` | CONDITIONING | 已應用指定區域和強度設定的修改後條件資料 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/ar.md b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/ar.md index 20ba65877..ec33cb4c5 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | مجموعة التكييف المعدلة مع قيم القوة المحدثة لكل عنصر. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | مجموعة التكييف المعدلة مع قيم القوة المحدثة لكل عنصر. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/pt-BR.md index 678076f68..da7180035 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/pt-BR.md @@ -13,4 +13,4 @@ Este nó foi projetado para modificar o atributo de força de um conjunto de con | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | O conjunto de condicionamento modificado com os valores de força atualizados para cada elemento. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | O conjunto de condicionamento modificado com os valores de força atualizados para cada elemento. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/tr.md b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/tr.md index 5a7265eaa..297f95f93 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/tr.md @@ -13,4 +13,4 @@ Bu düğüm, belirli bir koşullandırma setinin güç özelliğini değiştirme | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | Her bir öğe için güncellenmiş güç değerlerine sahip, değiştirilmiş koşullandırma seti. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Her bir öğe için güncellenmiş güç değerlerine sahip, değiştirilmiş koşullandırma seti. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/zh-TW.md index f9826cd61..b64904faf 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetAreaStrength/zh-TW.md @@ -13,4 +13,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `CONDITIONING` | CONDITIONING | 具有更新後強度值的修改條件設定集。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 具有更新後強度值的修改條件設定集。 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/ar.md b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/ar.md index 80cc6785f..d608d63df 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المدمجة الناتجة عن دمج مدخلي التكييف الرئيسي والافتراضي | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المدمجة الناتجة عن دمج مدخلي التكييف الرئيسي والافتراضي | diff --git a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/pt-BR.md index 18d3082ed..5b67215cf 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/pt-BR.md @@ -14,4 +14,4 @@ Este nó combina dados de condicionamento com dados de condicionamento padrão u | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados resultantes da fusão das entradas de condicionamento primária e padrão | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados resultantes da fusão das entradas de condicionamento primária e padrão | diff --git a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/tr.md b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/tr.md index fd3cce52f..2c82b83df 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/tr.md @@ -14,4 +14,4 @@ Bu düğüm, kanca tabanlı bir sistem kullanarak koşullandırma verilerini var | Çıkış Adı | Veri Türu | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Birincil ve varsayılan koşullandırma girişlerinin birleştirilmesi sonucu oluşan birleşik koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Birincil ve varsayılan koşullandırma girişlerinin birleştirilmesi sonucu oluşan birleşik koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/zh-TW.md index cffda0594..917d2eb13 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetDefaultAndCombine/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 合併主要和預設條件化輸入後產生的組合條件化資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 合併主要和預設條件化輸入後產生的組合條件化資料 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetMask/ar.md b/comfyui_embedded_docs/docs/ConditioningSetMask/ar.md index 21a11299b..9e97c6986 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetMask/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetMask/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |---------------|--------------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة، بعد تطبيق تعديلات القناع والقوة عليها. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة، بعد تطبيق تعديلات القناع والقوة عليها. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetMask/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetMask/pt-BR.md index 9fd4c73c6..a119a53b2 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetMask/pt-BR.md @@ -17,4 +17,4 @@ Este nó foi projetado para modificar o condicionamento de um modelo generativo | Parâmetro | Tipo de Dados | Descrição | |---------------|--------------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados, com os ajustes de máscara e força aplicados. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados, com os ajustes de máscara e força aplicados. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetMask/tr.md b/comfyui_embedded_docs/docs/ConditioningSetMask/tr.md index db679be9e..363a41c17 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetMask/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetMask/tr.md @@ -17,4 +17,4 @@ Bu düğüm, bir üretken modelin koşullandırmasını, belirli alanlara belirl | Parametre | Veri Tipi | Açıklama | |---------------|--------------|-------------| -| `CONDITIONING` | CONDITIONING | Maske ve güç ayarlamaları uygulanmış, değiştirilmiş koşullandırma verisi. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Maske ve güç ayarlamaları uygulanmış, değiştirilmiş koşullandırma verisi. | diff --git a/comfyui_embedded_docs/docs/ConditioningSetMask/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetMask/zh-TW.md index 9937f8d9c..29780077e 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetMask/zh-TW.md @@ -17,4 +17,4 @@ | 參數名稱 | 資料類型 | 描述 | |---------------|--------------|-------------| -| `CONDITIONING` | CONDITIONING | 已應用遮罩和強度調整的修改後條件設定資料。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 已應用遮罩和強度調整的修改後條件設定資料。 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetProperties/ar.md b/comfyui_embedded_docs/docs/ConditioningSetProperties/ar.md index c761a0bec..bdd35b1d2 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetProperties/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetProperties/ar.md @@ -19,4 +19,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة ذات الخصائص المحدثة | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة ذات الخصائص المحدثة | diff --git a/comfyui_embedded_docs/docs/ConditioningSetProperties/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetProperties/pt-BR.md index 02c528fc8..9d47d942f 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetProperties/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetProperties/pt-BR.md @@ -19,4 +19,4 @@ O nó ConditioningSetProperties modifica as propriedades dos dados de condiciona | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados com as propriedades atualizadas | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados com as propriedades atualizadas | diff --git a/comfyui_embedded_docs/docs/ConditioningSetProperties/tr.md b/comfyui_embedded_docs/docs/ConditioningSetProperties/tr.md index e36570213..0840d5857 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetProperties/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetProperties/tr.md @@ -19,4 +19,4 @@ ConditioningSetProperties düğümü, koşullandırma verilerinin özelliklerini | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Güncellenmiş özelliklere sahip değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Güncellenmiş özelliklere sahip değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/ConditioningSetProperties/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetProperties/zh-TW.md index 662915d6d..da400385d 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetProperties/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetProperties/zh-TW.md @@ -21,4 +21,4 @@ ConditioningSetProperties 節點透過調整強度、區域設定以及應用可 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 具有更新屬性的修改後條件化資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 具有更新屬性的修改後條件化資料 | diff --git a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/ar.md b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/ar.md index 786054a32..647ee84a8 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|---------------|--------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المدمجة مع الخصائص المعدلة | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المدمجة مع الخصائص المعدلة | diff --git a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/pt-BR.md index 68d42038c..0c7cc8430 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/pt-BR.md @@ -20,4 +20,4 @@ O nó ConditioningSetPropertiesAndCombine modifica dados de condicionamento apli | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados com propriedades modificadas | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento combinados com propriedades modificadas | diff --git a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/tr.md b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/tr.md index e7c886719..5fdb2eadf 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/tr.md @@ -20,4 +20,4 @@ ConditioningSetPropertiesAndCombine düğümü, yeni bir koşullandırma girişi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Değiştirilmiş özelliklere sahip birleştirilmiş koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Değiştirilmiş özelliklere sahip birleştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/zh-TW.md index d96e7f66d..52b8c6d93 100644 --- a/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSetPropertiesAndCombine/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 具有修改後屬性的合併條件資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 具有修改後屬性的合併條件資料 | diff --git a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/ar.md b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/ar.md index 95a61d2b7..99b3bc908 100644 --- a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | | --- | --- | --- | -| `CONDITIONING` | CONDITIONING | المخرج هو التكييف المعدل مع تطبيق النطاق الزمني المحدد، وجاهز لمزيد من المعالجة أو التوليد. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | المخرج هو التكييف المعدل مع تطبيق النطاق الزمني المحدد، وجاهز لمزيد من المعالجة أو التوليد. | diff --git a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/pt-BR.md index fc25b6bdb..67a0c24dc 100644 --- a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/pt-BR.md @@ -14,4 +14,4 @@ Este nó é projetado para ajustar o aspecto temporal do condicionamento ao defi | Parâmetro | Tipo de Dados | Descrição | | --- | --- | --- | -| `CONDITIONING` | CONDITIONING | A saída é o condicionamento modificado com o intervalo de passos de tempo especificado aplicado, pronto para processamento ou geração posterior. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | A saída é o condicionamento modificado com o intervalo de passos de tempo especificado aplicado, pronto para processamento ou geração posterior. | diff --git a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/tr.md b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/tr.md index 06af1bf52..d3194e367 100644 --- a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/tr.md @@ -14,4 +14,4 @@ Bu düğüm, belirli bir zaman adımı aralığı ayarlayarak koşullandırmanı | Parametre | Veri Türü | Açıklama | | --- | --- | --- | -| `CONDITIONING` | CONDITIONING | Çıktı, belirtilen zaman adımı aralığı uygulanmış, daha fazla işlem veya üretim için hazır, değiştirilmiş koşullandırmadır. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Çıktı, belirtilen zaman adımı aralığı uygulanmış, daha fazla işlem veya üretim için hazır, değiştirilmiş koşullandırmadır. | diff --git a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/zh-TW.md index 5255d6505..083b0af09 100644 --- a/comfyui_embedded_docs/docs/ConditioningSettimestepRange/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningSettimestepRange/zh-TW.md @@ -16,4 +16,4 @@ | 參數 | 資料類型 | 描述 | | --- | --- | --- | -| `CONDITIONING` | CONDITIONING | 輸出是應用指定時間步長範圍後的修改條件化,準備進行進一步處理或生成。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 輸出是應用指定時間步長範圍後的修改條件化,準備進行進一步處理或生成。 | diff --git a/comfyui_embedded_docs/docs/ConditioningStableAudio/ar.md b/comfyui_embedded_docs/docs/ConditioningStableAudio/ar.md index a77db042f..13121a5bb 100644 --- a/comfyui_embedded_docs/docs/ConditioningStableAudio/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningStableAudio/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التكييف الإيجابي المعدل مع تطبيق معلومات التوقيت الصوتي عليه | -| `سلبي` | CONDITIONING | التكييف السلبي المعدل مع تطبيق معلومات التوقيت الصوتي عليه | \ No newline at end of file +| `سلبي` | CONDITIONING | التكييف السلبي المعدل مع تطبيق معلومات التوقيت الصوتي عليه | diff --git a/comfyui_embedded_docs/docs/ConditioningStableAudio/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningStableAudio/pt-BR.md index 3bec215bf..d7942be02 100644 --- a/comfyui_embedded_docs/docs/ConditioningStableAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningStableAudio/pt-BR.md @@ -16,4 +16,4 @@ O nó ConditioningStableAudio adiciona informações de temporização tanto aos | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado com as informações de temporização de áudio aplicadas | -| `negative` | CONDITIONING | O condicionamento negativo modificado com as informações de temporização de áudio aplicadas | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo modificado com as informações de temporização de áudio aplicadas | diff --git a/comfyui_embedded_docs/docs/ConditioningStableAudio/tr.md b/comfyui_embedded_docs/docs/ConditioningStableAudio/tr.md index 37591a571..8ace5293b 100644 --- a/comfyui_embedded_docs/docs/ConditioningStableAudio/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningStableAudio/tr.md @@ -16,4 +16,4 @@ ConditioningStableAudio düğümü, ses üretimi için hem pozitif hem de negati | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| | `pozitif` | CONDITIONING | Ses zamanlama bilgisi uygulanmış değiştirilmiş pozitif koşullandırma | -| `negatif` | CONDITIONING | Ses zamanlama bilgisi uygulanmış değiştirilmiş negatif koşullandırma | \ No newline at end of file +| `negatif` | CONDITIONING | Ses zamanlama bilgisi uygulanmış değiştirilmiş negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/ConditioningStableAudio/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningStableAudio/zh-TW.md index 860d680d1..a85f38377 100644 --- a/comfyui_embedded_docs/docs/ConditioningStableAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningStableAudio/zh-TW.md @@ -16,4 +16,4 @@ ConditioningStableAudio 節點為音訊生成的正向與負向條件輸入添 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 已應用音訊時間資訊的修改後正向條件 | -| `負向` | CONDITIONING | 已應用音訊時間資訊的修改後負向條件 | \ No newline at end of file +| `負向` | CONDITIONING | 已應用音訊時間資訊的修改後負向條件 | diff --git a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/ar.md b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/ar.md index 5451fad94..b4675ab8c 100644 --- a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/ar.md @@ -15,4 +15,4 @@ |-------------|-----------|-------------| | `قبل النطاق` | TIMESTEPS_RANGE | نطاق الخطوات الزمنية الرئيسي المحدد بواسطة start_percent و end_percent | | `بعد النطاق` | TIMESTEPS_RANGE | نطاق الخطوات الزمنية من 0.0 إلى start_percent | -| `AFTER_RANGE` | TIMESTEPS_RANGE | نطاق الخطوات الزمنية من end_percent إلى 1.0 | \ No newline at end of file +| `AFTER_RANGE` | TIMESTEPS_RANGE | نطاق الخطوات الزمنية من end_percent إلى 1.0 | diff --git a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/pt-BR.md index 1c7eed69d..606042820 100644 --- a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/pt-BR.md @@ -15,4 +15,4 @@ O nó ConditioningTimestepsRange cria três intervalos de timestep distintos par |-------------|-----------|-------------| | `TIMESTEPS_RANGE` | TIMESTEPS_RANGE | O intervalo principal de timestep definido por `start_percent` e `end_percent` | | `BEFORE_RANGE` | TIMESTEPS_RANGE | O intervalo de timestep de 0.0 até `start_percent` | -| `AFTER_RANGE` | TIMESTEPS_RANGE | O intervalo de timestep de `end_percent` até 1.0 | \ No newline at end of file +| `AFTER_RANGE` | TIMESTEPS_RANGE | O intervalo de timestep de `end_percent` até 1.0 | diff --git a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/tr.md b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/tr.md index 8d64a4278..1e733eac9 100644 --- a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/tr.md @@ -15,4 +15,4 @@ ConditioningTimestepsRange düğümü, üretim süreci boyunca koşullandırma e |-------------|-----------|-------------| | `TIMESTEPS_RANGE` | TIMESTEPS_RANGE | start_percent ve end_percent tarafından tanımlanan ana zaman adımı aralığı | | `BEFORE_RANGE` | TIMESTEPS_RANGE | 0.0'dan start_percent'e kadar olan zaman adımı aralığı | -| `AFTER_RANGE` | TIMESTEPS_RANGE | end_percent'ten 1.0'a kadar olan zaman adımı aralığı | \ No newline at end of file +| `AFTER_RANGE` | TIMESTEPS_RANGE | end_percent'ten 1.0'a kadar olan zaman adımı aralığı | diff --git a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/zh-TW.md index 4e4534268..a0e25a090 100644 --- a/comfyui_embedded_docs/docs/ConditioningTimestepsRange/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningTimestepsRange/zh-TW.md @@ -15,4 +15,4 @@ ConditioningTimestepsRange 節點會建立三個不同的時間步長範圍, |-------------|-----------|-------------| | `範圍之前` | TIMESTEPS_RANGE | 由 `起始百分比` 和 `結束百分比` 定義的主要時間步長範圍 | | `範圍之後` | TIMESTEPS_RANGE | 從 0.0 到 `起始百分比` 的時間步長範圍 | -| `AFTER_RANGE` | TIMESTEPS_RANGE | 從 `結束百分比` 到 1.0 的時間步長範圍 | \ No newline at end of file +| `AFTER_RANGE` | TIMESTEPS_RANGE | 從 `結束百分比` 到 1.0 的時間步長範圍 | diff --git a/comfyui_embedded_docs/docs/ConditioningZeroOut/ar.md b/comfyui_embedded_docs/docs/ConditioningZeroOut/ar.md index 0532c9cce..40e70b241 100644 --- a/comfyui_embedded_docs/docs/ConditioningZeroOut/ar.md +++ b/comfyui_embedded_docs/docs/ConditioningZeroOut/ar.md @@ -12,4 +12,4 @@ | المعامل | نوع Comfy | الوصف | |-----------|----------------------------|-------------| -| `CONDITIONING` | CONDITIONING | بنية بيانات التكييف المعدلة، حيث تم تعيين عناصر 'pooled_output' إلى الصفر حيثما كان ذلك مناسبًا. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بنية بيانات التكييف المعدلة، حيث تم تعيين عناصر 'pooled_output' إلى الصفر حيثما كان ذلك مناسبًا. | diff --git a/comfyui_embedded_docs/docs/ConditioningZeroOut/pt-BR.md b/comfyui_embedded_docs/docs/ConditioningZeroOut/pt-BR.md index 6dbad2d68..c372196fb 100644 --- a/comfyui_embedded_docs/docs/ConditioningZeroOut/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConditioningZeroOut/pt-BR.md @@ -12,4 +12,4 @@ Este nó zera elementos específicos dentro da estrutura de dados de condicionam | Parâmetro | Tipo Comfy | Descrição | |-----------|----------------------------|-------------| -| `CONDITIONING` | CONDITIONING | A estrutura de dados de condicionamento modificada, com os elementos 'pooled_output' definidos como zero, quando aplicável. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | A estrutura de dados de condicionamento modificada, com os elementos 'pooled_output' definidos como zero, quando aplicável. | diff --git a/comfyui_embedded_docs/docs/ConditioningZeroOut/tr.md b/comfyui_embedded_docs/docs/ConditioningZeroOut/tr.md index 7d5a57e00..bd150ed2b 100644 --- a/comfyui_embedded_docs/docs/ConditioningZeroOut/tr.md +++ b/comfyui_embedded_docs/docs/ConditioningZeroOut/tr.md @@ -12,4 +12,4 @@ Bu düğüm, koşullandırma veri yapısı içindeki belirli öğeleri sıfırla | Parametre | Comfy dtype | Açıklama | |-----------|----------------------------|-------------| -| `CONDITIONING` | CONDITIONING | Değiştirilmiş koşullandırma veri yapısı; uygulanabilir olduğu durumlarda 'pooled_output' öğeleri sıfıra ayarlanmış halde. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Değiştirilmiş koşullandırma veri yapısı; uygulanabilir olduğu durumlarda 'pooled_output' öğeleri sıfıra ayarlanmış halde. | diff --git a/comfyui_embedded_docs/docs/ConditioningZeroOut/zh-TW.md b/comfyui_embedded_docs/docs/ConditioningZeroOut/zh-TW.md index 1cb2257d0..3a70082b0 100644 --- a/comfyui_embedded_docs/docs/ConditioningZeroOut/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConditioningZeroOut/zh-TW.md @@ -12,4 +12,4 @@ | 參數名稱 | Comfy 資料類型 | 描述 | |----------|----------------|------| -| `CONDITIONING` | CONDITIONING | 修改後的條件資料結構,其中適用的 'pooled_output' 元素已被設為零。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 修改後的條件資料結構,其中適用的 'pooled_output' 元素已被設為零。 | diff --git a/comfyui_embedded_docs/docs/ContextWindowsManual/ar.md b/comfyui_embedded_docs/docs/ContextWindowsManual/ar.md index 02dff683c..c1dd26b12 100644 --- a/comfyui_embedded_docs/docs/ContextWindowsManual/ar.md +++ b/comfyui_embedded_docs/docs/ContextWindowsManual/ar.md @@ -25,4 +25,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `model` | MODEL | النموذج مع تطبيق نوافذ السياق عليه أثناء أخذ العينات. | \ No newline at end of file +| `model` | MODEL | النموذج مع تطبيق نوافذ السياق عليه أثناء أخذ العينات. | diff --git a/comfyui_embedded_docs/docs/ContextWindowsManual/pt-BR.md b/comfyui_embedded_docs/docs/ContextWindowsManual/pt-BR.md index c7d18cb1c..18aed404d 100644 --- a/comfyui_embedded_docs/docs/ContextWindowsManual/pt-BR.md +++ b/comfyui_embedded_docs/docs/ContextWindowsManual/pt-BR.md @@ -25,4 +25,4 @@ O nó Context Windows (Manual) permite configurar manualmente janelas de context | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com as janelas de contexto aplicadas durante a amostragem. | \ No newline at end of file +| `model` | MODEL | O modelo com as janelas de contexto aplicadas durante a amostragem. | diff --git a/comfyui_embedded_docs/docs/ContextWindowsManual/tr.md b/comfyui_embedded_docs/docs/ContextWindowsManual/tr.md index 853aeb9fc..81a46edf3 100644 --- a/comfyui_embedded_docs/docs/ContextWindowsManual/tr.md +++ b/comfyui_embedded_docs/docs/ContextWindowsManual/tr.md @@ -25,4 +25,4 @@ Context Windows (Manual) düğümü, örnekleme sırasında modeller için bağl | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Örnekleme sırasında bağlam pencereleri uygulanmış model. | \ No newline at end of file +| `model` | MODEL | Örnekleme sırasında bağlam pencereleri uygulanmış model. | diff --git a/comfyui_embedded_docs/docs/ContextWindowsManual/zh-TW.md b/comfyui_embedded_docs/docs/ContextWindowsManual/zh-TW.md index 2e2906c8a..ba71246f6 100644 --- a/comfyui_embedded_docs/docs/ContextWindowsManual/zh-TW.md +++ b/comfyui_embedded_docs/docs/ContextWindowsManual/zh-TW.md @@ -25,4 +25,4 @@ Context Windows (Manual) 節點允許您在取樣過程中手動配置模型的 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 在取樣過程中已應用上下文窗口的模型。 | \ No newline at end of file +| `model` | MODEL | 在取樣過程中已應用上下文窗口的模型。 | diff --git a/comfyui_embedded_docs/docs/ControlNetApplySD3/ar.md b/comfyui_embedded_docs/docs/ControlNetApplySD3/ar.md index 0876101cc..813f4df52 100644 --- a/comfyui_embedded_docs/docs/ControlNetApplySD3/ar.md +++ b/comfyui_embedded_docs/docs/ControlNetApplySD3/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التهيئة الإيجابية المعدلة مع تطبيق إرشادات ControlNet | -| `سلبي` | CONDITIONING | التهيئة السلبية المعدلة مع تطبيق إرشادات ControlNet | \ No newline at end of file +| `سلبي` | CONDITIONING | التهيئة السلبية المعدلة مع تطبيق إرشادات ControlNet | diff --git a/comfyui_embedded_docs/docs/ControlNetApplySD3/pt-BR.md b/comfyui_embedded_docs/docs/ControlNetApplySD3/pt-BR.md index 2741c013d..6e19d6298 100644 --- a/comfyui_embedded_docs/docs/ControlNetApplySD3/pt-BR.md +++ b/comfyui_embedded_docs/docs/ControlNetApplySD3/pt-BR.md @@ -22,4 +22,4 @@ Este nó aplica orientação ControlNet ao condicionamento do Stable Diffusion 3 | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado com a orientação ControlNet aplicada | -| `negative` | CONDITIONING | O condicionamento negativo modificado com a orientação ControlNet aplicada | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo modificado com a orientação ControlNet aplicada | diff --git a/comfyui_embedded_docs/docs/ControlNetApplySD3/tr.md b/comfyui_embedded_docs/docs/ControlNetApplySD3/tr.md index 5ec61dd2c..8744c1cc6 100644 --- a/comfyui_embedded_docs/docs/ControlNetApplySD3/tr.md +++ b/comfyui_embedded_docs/docs/ControlNetApplySD3/tr.md @@ -22,4 +22,4 @@ Bu düğüm, Stable Diffusion 3 koşullandırmasına ControlNet kılavuzluğu uy | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | ControlNet kılavuzluğu uygulanmış değiştirilmiş pozitif koşullandırma | -| `negatif` | CONDITIONING | ControlNet kılavuzluğu uygulanmış değiştirilmiş negatif koşullandırma | \ No newline at end of file +| `negatif` | CONDITIONING | ControlNet kılavuzluğu uygulanmış değiştirilmiş negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/ControlNetApplySD3/zh-TW.md b/comfyui_embedded_docs/docs/ControlNetApplySD3/zh-TW.md index 4e2f00e44..5a6019138 100644 --- a/comfyui_embedded_docs/docs/ControlNetApplySD3/zh-TW.md +++ b/comfyui_embedded_docs/docs/ControlNetApplySD3/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 已應用 ControlNet 引導的修改後正向條件設定 | -| `負向` | CONDITIONING | 已應用 ControlNet 引導的修改後負向條件設定 | \ No newline at end of file +| `負向` | CONDITIONING | 已應用 ControlNet 引導的修改後負向條件設定 | diff --git a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/ar.md b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/ar.md index b92b7729a..71c8c025a 100644 --- a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/ar.md +++ b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|---------------------------------------------------------------| | `سلبي` | CONDITIONING | التكييف الإيجابي المعدل مع تطبيق ControlNet للتنضيد | -| `سلبي` | CONDITIONING | التكييف السلبي المعدل مع تطبيق ControlNet للتنضيد | \ No newline at end of file +| `سلبي` | CONDITIONING | التكييف السلبي المعدل مع تطبيق ControlNet للتنضيد | diff --git a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/pt-BR.md b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/pt-BR.md index 89f3ac329..323a3bc66 100644 --- a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/pt-BR.md +++ b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/pt-BR.md @@ -23,4 +23,4 @@ O nó ControlNetInpaintingAliMamaApply aplica o condicionamento ControlNet para | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado com o ControlNet aplicado para inpainting | -| `negative` | CONDITIONING | O condicionamento negativo modificado com o ControlNet aplicado para inpainting | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo modificado com o ControlNet aplicado para inpainting | diff --git a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/tr.md b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/tr.md index a1e350465..b206549c3 100644 --- a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/tr.md +++ b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/tr.md @@ -23,4 +23,4 @@ ControlNetInpaintingAliMamaApply düğümü, pozitif ve negatif koşullandırmay | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | Boyama için ControlNet uygulanmış değiştirilmiş pozitif koşullandırma | -| `negatif` | CONDITIONING | Boyama için ControlNet uygulanmış değiştirilmiş negatif koşullandırma | \ No newline at end of file +| `negatif` | CONDITIONING | Boyama için ControlNet uygulanmış değiştirilmiş negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/zh-TW.md b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/zh-TW.md index 2dae253b3..927cc787e 100644 --- a/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/zh-TW.md +++ b/comfyui_embedded_docs/docs/ControlNetInpaintingAliMamaApply/zh-TW.md @@ -23,4 +23,4 @@ ControlNetInpaintingAliMamaApply 節點透過結合正負向條件與控制圖 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 應用於修補任務並帶有 ControlNet 的修改後正向條件 | -| `負向` | CONDITIONING | 應用於修補任務並帶有 ControlNet 的修改後負向條件 | \ No newline at end of file +| `負向` | CONDITIONING | 應用於修補任務並帶有 ControlNet 的修改後負向條件 | diff --git a/comfyui_embedded_docs/docs/ControlnetApply/ar.md b/comfyui_embedded_docs/docs/ControlnetApply/ar.md index c12e6448b..c5461c6f7 100644 --- a/comfyui_embedded_docs/docs/ControlnetApply/ar.md +++ b/comfyui_embedded_docs/docs/ControlnetApply/ar.md @@ -20,4 +20,4 @@ | المعامل | نوع البيانات | الوظيفة | | --- | --- | --- | | `positive` | `CONDITIONING` | بيانات التكييف الإيجابية المعالجة بواسطة ControlNet، يمكن إخراجها إلى عُقد ControlNet أو K Sampler التالية | -| `negative` | `CONDITIONING` | بيانات التكييف السلبية المعالجة بواسطة ControlNet، يمكن إخراجها إلى عُقد ControlNet أو K Sampler التالية | \ No newline at end of file +| `negative` | `CONDITIONING` | بيانات التكييف السلبية المعالجة بواسطة ControlNet، يمكن إخراجها إلى عُقد ControlNet أو K Sampler التالية | diff --git a/comfyui_embedded_docs/docs/ControlnetApply/pt-BR.md b/comfyui_embedded_docs/docs/ControlnetApply/pt-BR.md index 29d1fd460..c8a340dd6 100644 --- a/comfyui_embedded_docs/docs/ControlnetApply/pt-BR.md +++ b/comfyui_embedded_docs/docs/ControlnetApply/pt-BR.md @@ -20,4 +20,4 @@ O uso do ControlNet requer o pré-processamento das imagens de entrada. Como os | Parâmetro | Tipo de Dados | Função | | --- | --- | --- | | `positive` | `CONDITIONING` | Dados de condicionamento positivo processados pelo ControlNet, podem ser enviados para os próximos nós ControlNet ou K Sampler | -| `negative` | `CONDITIONING` | Dados de condicionamento negativo processados pelo ControlNet, podem ser enviados para os próximos nós ControlNet ou K Sampler | \ No newline at end of file +| `negative` | `CONDITIONING` | Dados de condicionamento negativo processados pelo ControlNet, podem ser enviados para os próximos nós ControlNet ou K Sampler | diff --git a/comfyui_embedded_docs/docs/ControlnetApply/tr.md b/comfyui_embedded_docs/docs/ControlnetApply/tr.md index 64343af7c..076d360b1 100644 --- a/comfyui_embedded_docs/docs/ControlnetApply/tr.md +++ b/comfyui_embedded_docs/docs/ControlnetApply/tr.md @@ -20,4 +20,4 @@ ControlNet kullanımı, girdi görsellerinin ön işleme tabi tutulmasını gere | Parametre | Veri Türü | İşlev | | --- | --- | --- | | `positive` | `CONDITIONING` | ControlNet tarafından işlenmiş pozitif koşullandırma verisi, bir sonraki ControlNet veya K Sampler düğümlerine çıktı olarak verilebilir | -| `negative` | `CONDITIONING` | ControlNet tarafından işlenmiş negatif koşullandırma verisi, bir sonraki ControlNet veya K Sampler düğümlerine çıktı olarak verilebilir | \ No newline at end of file +| `negative` | `CONDITIONING` | ControlNet tarafından işlenmiş negatif koşullandırma verisi, bir sonraki ControlNet veya K Sampler düğümlerine çıktı olarak verilebilir | diff --git a/comfyui_embedded_docs/docs/ControlnetApply/zh-TW.md b/comfyui_embedded_docs/docs/ControlnetApply/zh-TW.md index 62bcc05cb..fd991e04b 100644 --- a/comfyui_embedded_docs/docs/ControlnetApply/zh-TW.md +++ b/comfyui_embedded_docs/docs/ControlnetApply/zh-TW.md @@ -22,4 +22,4 @@ | 參數 | 資料類型 | 功能說明 | | --- | --- | --- | | `positive` | `CONDITIONING` | 經 ControlNet 處理後的正面條件資料,可輸出到下一個 ControlNet 或 K Sampler 節點 | -| `negative` | `CONDITIONING` | 經 ControlNet 處理後的負面條件資料,可輸出到下一個 ControlNet 或 K Sampler 節點 | \ No newline at end of file +| `negative` | `CONDITIONING` | 經 ControlNet 處理後的負面條件資料,可輸出到下一個 ControlNet 或 K Sampler 節點 | diff --git a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/ar.md b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/ar.md index a824f2bdf..1f515303d 100644 --- a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/ar.md +++ b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/ar.md @@ -19,4 +19,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| | `سلبي` | `CONDITIONING` | بيانات التكييف الإيجابية المعدلة بعد تطبيق تحويلات شبكة التحكم، والتي تعكس التحسينات التي تم إجراؤها بناءً على معاملات الإدخال. | -| `سلبي` | `CONDITIONING` | بيانات التكييف السلبية المعدلة بعد تطبيق تحويلات شبكة التحكم، والتي تعكس عملية كبح أو إزالة الميزات المحددة بناءً على معاملات الإدخال. | \ No newline at end of file +| `سلبي` | `CONDITIONING` | بيانات التكييف السلبية المعدلة بعد تطبيق تحويلات شبكة التحكم، والتي تعكس عملية كبح أو إزالة الميزات المحددة بناءً على معاملات الإدخال. | diff --git a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/pt-BR.md b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/pt-BR.md index db2e1988f..22c801f75 100644 --- a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/pt-BR.md +++ b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/pt-BR.md @@ -19,4 +19,4 @@ Este nó aplica transformações avançadas de rede de controle aos dados de con | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| | `positive` | `CONDITIONING` | Os dados de condicionamento positivo modificados após a aplicação das transformações da rede de controle, refletindo os aprimoramentos feitos com base nos parâmetros de entrada. | -| `negative` | `CONDITIONING` | Os dados de condicionamento negativo modificados após a aplicação das transformações da rede de controle, refletindo a supressão ou remoção de características específicas com base nos parâmetros de entrada. | \ No newline at end of file +| `negative` | `CONDITIONING` | Os dados de condicionamento negativo modificados após a aplicação das transformações da rede de controle, refletindo a supressão ou remoção de características específicas com base nos parâmetros de entrada. | diff --git a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/tr.md b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/tr.md index ce47b9f0a..3e51eb518 100644 --- a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/tr.md +++ b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/tr.md @@ -19,4 +19,4 @@ Bu düğüm, bir görüntü ve bir kontrol net modeline dayanarak koşullandırm | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| | `negatif` | `CONDITIONING` | Kontrol net dönüşümleri uygulandıktan sonra değiştirilmiş pozitif koşullandırma verisi. Girdi parametrelerine dayalı olarak yapılan iyileştirmeleri yansıtır. | -| `negatif` | `CONDITIONING` | Kontrol net dönüşümleri uygulandıktan sonra değiştirilmiş negatif koşullandırma verisi. Girdi parametrelerine dayalı olarak belirli özelliklerin bastırılmasını veya kaldırılmasını yansıtır. | \ No newline at end of file +| `negatif` | `CONDITIONING` | Kontrol net dönüşümleri uygulandıktan sonra değiştirilmiş negatif koşullandırma verisi. Girdi parametrelerine dayalı olarak belirli özelliklerin bastırılmasını veya kaldırılmasını yansıtır. | diff --git a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/zh-TW.md b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/zh-TW.md index 55d07fdd9..2f6dc11d3 100644 --- a/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/zh-TW.md +++ b/comfyui_embedded_docs/docs/ControlnetApplyAdvanced/zh-TW.md @@ -21,4 +21,4 @@ | 參數 | 資料類型 | 描述 | |-----------|-------------|-------------| | `負向` | `CONDITIONING` | 應用 ControlNet 轉換後修改過的正面條件資料,反映了基於輸入參數所進行的增強效果。 | -| `負向` | `CONDITIONING` | 應用 ControlNet 轉換後修改過的負面條件資料,反映了基於輸入參數對特定特徵的抑制或移除效果。 | \ No newline at end of file +| `負向` | `CONDITIONING` | 應用 ControlNet 轉換後修改過的負面條件資料,反映了基於輸入參數對特定特徵的抑制或移除效果。 | diff --git a/comfyui_embedded_docs/docs/ControlnetLoader/ar.md b/comfyui_embedded_docs/docs/ControlnetLoader/ar.md index 5c0f4f13a..58b3d622c 100644 --- a/comfyui_embedded_docs/docs/ControlnetLoader/ar.md +++ b/comfyui_embedded_docs/docs/ControlnetLoader/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع Comfy | الوصف | |----------------|---------------|--------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | يُرجع نموذج ControlNet الذي تم تحميله، وجاهزًا للاستخدام في التحكم في عمليات إنشاء المحتوى أو تعديلها. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | يُرجع نموذج ControlNet الذي تم تحميله، وجاهزًا للاستخدام في التحكم في عمليات إنشاء المحتوى أو تعديلها. | diff --git a/comfyui_embedded_docs/docs/ControlnetLoader/pt-BR.md b/comfyui_embedded_docs/docs/ControlnetLoader/pt-BR.md index f44f348cb..b0f3de30e 100644 --- a/comfyui_embedded_docs/docs/ControlnetLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/ControlnetLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó ControlNetLoader é projetado para carregar um modelo ControlNet de um cam | Campo | Tipo Comfy | Descrição | |----------------|----------------|---------------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | Retorna o modelo ControlNet carregado, pronto para ser usado no controle ou na modificação dos processos de geração de conteúdo. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | Retorna o modelo ControlNet carregado, pronto para ser usado no controle ou na modificação dos processos de geração de conteúdo. | diff --git a/comfyui_embedded_docs/docs/ControlnetLoader/tr.md b/comfyui_embedded_docs/docs/ControlnetLoader/tr.md index c4c29d2b6..4d0fab238 100644 --- a/comfyui_embedded_docs/docs/ControlnetLoader/tr.md +++ b/comfyui_embedded_docs/docs/ControlnetLoader/tr.md @@ -14,4 +14,4 @@ ControlNetLoader düğümü, belirtilen bir yoldan bir ControlNet modeli yüklem | Alan | Comfy dtype | Açıklama | |----------------|---------------|--------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | Yüklenen ControlNet modelini döndürür; içerik üretim süreçlerini kontrol etmek veya değiştirmek için kullanıma hazırdır. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | Yüklenen ControlNet modelini döndürür; içerik üretim süreçlerini kontrol etmek veya değiştirmek için kullanıma hazırdır. | diff --git a/comfyui_embedded_docs/docs/ControlnetLoader/zh-TW.md b/comfyui_embedded_docs/docs/ControlnetLoader/zh-TW.md index 1e09a2a0b..9bff8037c 100644 --- a/comfyui_embedded_docs/docs/ControlnetLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/ControlnetLoader/zh-TW.md @@ -14,4 +14,4 @@ ControlNetLoader 節點設計用於從指定路徑載入 ControlNet 模型。它 | 欄位名稱 | Comfy 資料類型 | 描述 | |----------|----------------|------| -| `control_net` | `CONTROL_NET` | 返回已載入的 ControlNet 模型,準備好用於控制或修改內容生成過程。 | \ No newline at end of file +| `control_net` | `CONTROL_NET` | 返回已載入的 ControlNet 模型,準備好用於控制或修改內容生成過程。 | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ar.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ar.md index b9824e676..59d5084cd 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ar.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | COMBO | السلسلة النصية المدخلة، مُنسَّقة الآن كنوع بيانات Combo. | \ No newline at end of file +| `output` | COMBO | السلسلة النصية المدخلة، مُنسَّقة الآن كنوع بيانات Combo. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/en.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/en.md index aa088f849..64ec735c2 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/en.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/en.md @@ -12,4 +12,4 @@ The Convert String to Combo node takes a text string as input and converts it in | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | COMBO | The input string, now formatted as a Combo data type. | \ No newline at end of file +| `output` | COMBO | The input string, now formatted as a Combo data type. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/es.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/es.md index 34758990d..75dc7de69 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/es.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/es.md @@ -12,4 +12,4 @@ El nodo Convertir Cadena a Combo toma una cadena de texto como entrada y la conv | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | COMBO | La cadena de entrada, ahora formateada como un tipo de datos Combo. | \ No newline at end of file +| `output` | COMBO | La cadena de entrada, ahora formateada como un tipo de datos Combo. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/fr.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/fr.md index 0f927ccd8..aa121ca0b 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/fr.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/fr.md @@ -14,4 +14,4 @@ Le nœud Convert String to Combo prend une chaîne de texte en entrée et la con | Sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | COMBO | La chaîne d'entrée, désormais formatée en tant que type de données COMBO. | \ No newline at end of file +| `output` | COMBO | La chaîne d'entrée, désormais formatée en tant que type de données COMBO. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ja.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ja.md index 8777d2c72..051a6d6f4 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ja.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ja.md @@ -12,4 +12,4 @@ Convert String to Combo ノードは、入力されたテキスト文字列を | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | COMBO | 入力された文字列で、Combo データ型としてフォーマットされたものです。 | \ No newline at end of file +| `output` | COMBO | 入力された文字列で、Combo データ型としてフォーマットされたものです。 | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ko.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ko.md index 818e3c405..669416247 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ko.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ko.md @@ -12,4 +12,4 @@ Convert String to Combo 노드는 텍스트 문자열을 입력으로 받아 Com | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | COMBO | 입력 문자열이 Combo 데이터 타입으로 포맷된 형태입니다. | \ No newline at end of file +| `output` | COMBO | 입력 문자열이 Combo 데이터 타입으로 포맷된 형태입니다. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/pt-BR.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/pt-BR.md index d0d05d1a8..a2814798e 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/pt-BR.md @@ -12,4 +12,4 @@ O nó Convert String to Combo recebe uma string de texto como entrada e a conver | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | COMBO | A string de entrada, agora formatada como um tipo de dados COMBO. | \ No newline at end of file +| `output` | COMBO | A string de entrada, agora formatada como um tipo de dados COMBO. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ru.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ru.md index 8c7e5ea55..8166b4b32 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/ru.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | COMBO | Входная строка, теперь отформатированная как тип данных Combo. | \ No newline at end of file +| `output` | COMBO | Входная строка, теперь отформатированная как тип данных Combo. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/tr.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/tr.md index f5b7702d9..e4a65020f 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/tr.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/tr.md @@ -12,4 +12,4 @@ Convert String to Combo düğümü, bir metin dizisini girdi olarak alır ve onu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | COMBO | Girdi dizisi, artık Combo veri türü olarak biçimlendirilmiş şekilde. | \ No newline at end of file +| `output` | COMBO | Girdi dizisi, artık Combo veri türü olarak biçimlendirilmiş şekilde. | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh-TW.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh-TW.md index 0cfc42845..1e836cf01 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | COMBO | 輸入的字串,現已格式化為 COMBO 資料類型。 | \ No newline at end of file +| `output` | COMBO | 輸入的字串,現已格式化為 COMBO 資料類型。 | diff --git a/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh.md b/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh.md index 5b8efebe8..924cfac88 100644 --- a/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh.md +++ b/comfyui_embedded_docs/docs/ConvertStringToComboNode/zh.md @@ -12,4 +12,4 @@ Convert String to Combo 节点接收一个文本字符串作为输入,并将 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | COMBO | 输入的字符串,现在格式化为 COMBO 数据类型。 | \ No newline at end of file +| `output` | COMBO | 输入的字符串,现在格式化为 COMBO 数据类型。 | diff --git a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/ar.md b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/ar.md index eeb8d86b0..40fabd315 100644 --- a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/ar.md +++ b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ مع الصور المشفرة الاختيارية وأقنعة الضوضاء المقابلة لها | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/pt-BR.md b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/pt-BR.md index 764a3cea1..39f41fca1 100644 --- a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/pt-BR.md @@ -20,4 +20,4 @@ O nó CosmosImageToVideoLatent cria representações latentes de vídeo a partir | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `latent` | LATENT | A representação latente de vídeo gerada, com imagens codificadas opcionais e máscaras de ruído correspondentes | \ No newline at end of file +| `latent` | LATENT | A representação latente de vídeo gerada, com imagens codificadas opcionais e máscaras de ruído correspondentes | diff --git a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/tr.md b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/tr.md index 82505965c..e602ed01c 100644 --- a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/tr.md +++ b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/tr.md @@ -20,4 +20,4 @@ CosmosImageToVideoLatent düğümü, girdi görüntülerinden video latent temsi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `latent` | LATENT | İsteğe bağlı kodlanmış görüntüler ve ilgili gürültü maskeleri ile oluşturulan video latent temsili | \ No newline at end of file +| `latent` | LATENT | İsteğe bağlı kodlanmış görüntüler ve ilgili gürültü maskeleri ile oluşturulan video latent temsili | diff --git a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/zh-TW.md b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/zh-TW.md index 3e0a2d370..839bdd0cb 100644 --- a/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/CosmosImageToVideoLatent/zh-TW.md @@ -20,4 +20,4 @@ CosmosImageToVideoLatent 節點可從輸入圖像創建影片潛在表徵。它 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 生成的影片潛在表徵,包含可選的編碼圖像和相應的噪聲遮罩 | \ No newline at end of file +| `latent` | LATENT | 生成的影片潛在表徵,包含可選的編碼圖像和相應的噪聲遮罩 | diff --git a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/ar.md b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/ar.md index 7d267a882..da59401fd 100644 --- a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/ar.md +++ b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `samples` | LATENT | التمثيل الكامن للفيديو المُنشئ الذي يحتوي على تسلسل الفيديو المرمّز | -| `noise_mask`| LATENT | قناع يُشير إلى الأجزاء التي يجب الحفاظ عليها من البيانات الكامنة أثناء عملية التوليد | \ No newline at end of file +| `noise_mask`| LATENT | قناع يُشير إلى الأجزاء التي يجب الحفاظ عليها من البيانات الكامنة أثناء عملية التوليد | diff --git a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/pt-BR.md b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/pt-BR.md index 49d2f769c..b288d9529 100644 --- a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/pt-BR.md @@ -21,4 +21,4 @@ O nó CosmosPredict2ImageToVideoLatent cria representações latentes de vídeo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `samples` | LATENT | A representação latente de vídeo gerada, contendo a sequência de vídeo codificada | -| `noise_mask` | LATENT | Uma máscara que indica quais partes do latente devem ser preservadas durante a geração | \ No newline at end of file +| `noise_mask` | LATENT | Uma máscara que indica quais partes do latente devem ser preservadas durante a geração | diff --git a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/tr.md b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/tr.md index 22a4a55a0..bbe169956 100644 --- a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/tr.md +++ b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/tr.md @@ -21,4 +21,4 @@ CosmosPredict2ImageToVideoLatent düğümü, video oluşturma için görüntüle | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `samples` | LATENT | Kodlanmış video dizisini içeren oluşturulmuş video latent temsili | -| `noise_mask` | LATENT | Oluşturma sırasında latentin hangi bölümlerinin korunması gerektiğini belirten maske | \ No newline at end of file +| `noise_mask` | LATENT | Oluşturma sırasında latentin hangi bölümlerinin korunması gerektiğini belirten maske | diff --git a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/zh-TW.md b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/zh-TW.md index 7042cb961..31039412f 100644 --- a/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/CosmosPredict2ImageToVideoLatent/zh-TW.md @@ -21,4 +21,4 @@ CosmosPredict2ImageToVideoLatent 節點可從圖像建立影片潛在表示, | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `samples` | LATENT | 生成的影片潛在表示,包含編碼後的影片序列 | -| `noise_mask` | LATENT | 指示在生成過程中應保留潛在表示哪些部分的遮罩 | \ No newline at end of file +| `noise_mask` | LATENT | 指示在生成過程中應保留潛在表示哪些部分的遮罩 | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframe/ar.md b/comfyui_embedded_docs/docs/CreateHookKeyframe/ar.md index bd350c549..c6a1e75c9 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframe/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframe/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة من الإطارات المفتاحية للخطافات تتضمن الإطار المفتاحي newly created keyframe | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة من الإطارات المفتاحية للخطافات تتضمن الإطار المفتاحي newly created keyframe | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframe/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookKeyframe/pt-BR.md index 5e71ad53f..7c4fbf233 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframe/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframe/pt-BR.md @@ -14,4 +14,4 @@ O nó Create Hook Keyframe permite que você defina pontos específicos em um pr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | Um grupo de *keyframes* de *hook* incluindo o *keyframe* recém-criado | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | Um grupo de *keyframes* de *hook* incluindo o *keyframe* recém-criado | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframe/tr.md b/comfyui_embedded_docs/docs/CreateHookKeyframe/tr.md index cb6394a47..480b95756 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframe/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframe/tr.md @@ -14,4 +14,4 @@ Create Hook Keyframe düğümü, bir oluşturma sürecinde hook davranışının | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | Yeni oluşturulan kare animasyonunu da içeren bir hook kare animasyonları grubu | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | Yeni oluşturulan kare animasyonunu da içeren bir hook kare animasyonları grubu | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframe/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookKeyframe/zh-TW.md index 16506f2f0..763eafa95 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframe/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframe/zh-TW.md @@ -14,4 +14,4 @@ Create Hook Keyframe 節點允許您在生成過程中定義特定的行為切 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | 包含新建立關鍵幀的一組掛鉤關鍵幀 | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | 包含新建立關鍵幀的一組掛鉤關鍵幀 | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/ar.md b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/ar.md index 1c1e47533..7c6c92818 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة إطارات مفتاحية للخطافات تحتوي على الإطارات المفتاحية المُنشأة حديثًا، إما كمجموعة جديدة أو مضافة إلى مجموعة الإطارات المفتاحية المدخلة | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة إطارات مفتاحية للخطافات تحتوي على الإطارات المفتاحية المُنشأة حديثًا، إما كمجموعة جديدة أو مضافة إلى مجموعة الإطارات المفتاحية المدخلة | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/pt-BR.md index edf5ecdec..681e30f07 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/pt-BR.md @@ -18,4 +18,4 @@ Este nó cria keyframes de gancho a partir de uma lista de valores de força de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | Um grupo de keyframes de gancho contendo os keyframes recém-criados, seja como um novo grupo ou anexado ao grupo de keyframes de entrada | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | Um grupo de keyframes de gancho contendo os keyframes recém-criados, seja como um novo grupo ou anexado ao grupo de keyframes de entrada | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/tr.md b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/tr.md index 7908f6657..cb6ed14b1 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/tr.md @@ -18,4 +18,4 @@ Bu düğüm, belirtilen başlangıç ve bitiş yüzdeleri arasında eşit şekil | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | Yeni oluşturulan kareleri içeren bir kanca kare grubu; yeni bir grup olarak veya girdi kare grubuna eklenmiş şekilde | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | Yeni oluşturulan kareleri içeren bir kanca kare grubu; yeni bir grup olarak veya girdi kare grubuna eklenmiş şekilde | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/zh-TW.md index 1171b0682..5f6b029e2 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesFromFloats/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | 包含新建立關鍵影格的掛鉤關鍵影格群組,可以是新群組或是附加到輸入的關鍵影格群組 | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | 包含新建立關鍵影格的掛鉤關鍵影格群組,可以是新群組或是附加到輸入的關鍵影格群組 | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/ar.md b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/ar.md index 028bfee05..6c06398ec 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة إطارات الخطاف الرئيسية المُنشأة التي تحتوي على التسلسل المُستَفاد | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | مجموعة إطارات الخطاف الرئيسية المُنشأة التي تحتوي على التسلسل المُستَفاد | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/pt-BR.md index 0811dad56..a807d935c 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/pt-BR.md @@ -19,4 +19,4 @@ Cria uma sequência de quadros-chave de gancho com valores de força interpolado | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | O grupo de quadros-chave de gancho gerado contendo a sequência interpolada | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | O grupo de quadros-chave de gancho gerado contendo a sequência interpolada | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/tr.md b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/tr.md index 2a08d8d35..2d88311fe 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/tr.md @@ -19,4 +19,4 @@ Bir başlangıç ve bitiş noktası arasında enterpolasyonlu güç değerlerine | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | Enterpolasyonlu diziyi içeren oluşturulmuş kanca kareleri grubu | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | Enterpolasyonlu diziyi içeren oluşturulmuş kanca kareleri grubu | diff --git a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/zh-TW.md index 1a94194b9..742276e84 100644 --- a/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookKeyframesInterpolated/zh-TW.md @@ -19,4 +19,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `HOOK_KF` | HOOK_KEYFRAMES | 包含插值序列的已生成掛鉤關鍵影格群組 | \ No newline at end of file +| `HOOK_KF` | HOOK_KEYFRAMES | 包含插值序列的已生成掛鉤關鍵影格群組 | diff --git a/comfyui_embedded_docs/docs/CreateHookLora/ar.md b/comfyui_embedded_docs/docs/CreateHookLora/ar.md index 28956ab76..91d42a1bc 100644 --- a/comfyui_embedded_docs/docs/CreateHookLora/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookLora/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|-------------| | `HOOKS` | HOOKS | مجموعة هوك تحتوي على هوكات لورا المدمجة وأي هوكات سابقة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CreateHookLora/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookLora/pt-BR.md index 5b83b877d..e5bedd68c 100644 --- a/comfyui_embedded_docs/docs/CreateHookLora/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookLora/pt-BR.md @@ -20,4 +20,4 @@ O nó Create Hook LoRA gera objetos de hook para aplicar modificações LoRA (Lo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Um grupo de hooks contendo os hooks LoRA combinados e quaisquer hooks anteriores | \ No newline at end of file +| `HOOKS` | HOOKS | Um grupo de hooks contendo os hooks LoRA combinados e quaisquer hooks anteriores | diff --git a/comfyui_embedded_docs/docs/CreateHookLora/tr.md b/comfyui_embedded_docs/docs/CreateHookLora/tr.md index fd6796cf2..3028df65e 100644 --- a/comfyui_embedded_docs/docs/CreateHookLora/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookLora/tr.md @@ -20,4 +20,4 @@ Create Hook LoRA düğümü, modellere LoRA (Düşük Ranklı Adaptasyon) deği | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Birleştirilmiş LoRA kancalarını ve varsa önceki kancaları içeren bir kanca grubu | \ No newline at end of file +| `HOOKS` | HOOKS | Birleştirilmiş LoRA kancalarını ve varsa önceki kancaları içeren bir kanca grubu | diff --git a/comfyui_embedded_docs/docs/CreateHookLora/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookLora/zh-TW.md index eefdb99b8..698d656dc 100644 --- a/comfyui_embedded_docs/docs/CreateHookLora/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookLora/zh-TW.md @@ -20,4 +20,4 @@ Create Hook LoRA 節點會生成掛鉤物件,用於對模型應用 LoRA(低 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | 包含合併後的 LoRA 掛鉤及任何先前掛鉤的掛鉤群組 | \ No newline at end of file +| `HOOKS` | HOOKS | 包含合併後的 LoRA 掛鉤及任何先前掛鉤的掛鉤群組 | diff --git a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/ar.md b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/ar.md index f2b452e20..b25785ed0 100644 --- a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `hooks` | HOOKS | خطاف LoRA المُنشأ الذي يمكن تطبيقه على معالجة النموذج | \ No newline at end of file +| `hooks` | HOOKS | خطاف LoRA المُنشأ الذي يمكن تطبيقه على معالجة النموذج | diff --git a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/pt-BR.md index 97b452720..4bcdb52e9 100644 --- a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/pt-BR.md @@ -14,4 +14,4 @@ Este nó cria um gancho LoRA (Adaptação de Baixa Classificação) que se aplic | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `hooks` | HOOKS | O gancho LoRA criado que pode ser aplicado ao processamento do modelo | \ No newline at end of file +| `hooks` | HOOKS | O gancho LoRA criado que pode ser aplicado ao processamento do modelo | diff --git a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/tr.md b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/tr.md index cc7bb2318..87fd39939 100644 --- a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/tr.md @@ -14,4 +14,4 @@ Bu düğüm, yalnızca model bileşenine uygulanan bir LoRA (Düşük Dereceli U | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `hooks` | HOOKS | Model işlemeye uygulanabilen oluşturulmuş LoRA kancası | \ No newline at end of file +| `hooks` | HOOKS | Model işlemeye uygulanabilen oluşturulmuş LoRA kancası | diff --git a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/zh-TW.md index d6bd019f2..5e6f8913d 100644 --- a/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookLoraModelOnly/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `hooks` | HOOKS | 建立的 LoRA 掛鉤,可應用於模型處理 | \ No newline at end of file +| `hooks` | HOOKS | 建立的 LoRA 掛鉤,可應用於模型處理 | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLora/ar.md b/comfyui_embedded_docs/docs/CreateHookModelAsLora/ar.md index 43460cced..4c97a226f 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLora/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLora/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | خطافات LoRA المنشأة، المدمجة مع أي خطافات سابقة إذا تم توفيرها | \ No newline at end of file +| `HOOKS` | HOOKS | خطافات LoRA المنشأة، المدمجة مع أي خطافات سابقة إذا تم توفيرها | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLora/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookModelAsLora/pt-BR.md index 672e69a41..737d74cb5 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLora/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLora/pt-BR.md @@ -22,4 +22,4 @@ Este nó cria um modelo de hook como um LoRA (Adaptação de Baixa Classificaç | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Os hooks LoRA criados, combinados com quaisquer hooks anteriores, se fornecidos | \ No newline at end of file +| `HOOKS` | HOOKS | Os hooks LoRA criados, combinados com quaisquer hooks anteriores, se fornecidos | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLora/tr.md b/comfyui_embedded_docs/docs/CreateHookModelAsLora/tr.md index 8d9f5f51d..4eccb5b74 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLora/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLora/tr.md @@ -22,4 +22,4 @@ Bu düğüm, kontrol noktası ağırlıklarını yükleyerek ve hem model hem de | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | Oluşturulan LoRA kancaları, sağlandıysa önceki kancalarla birleştirilmiş | \ No newline at end of file +| `HOOKS` | HOOKS | Oluşturulan LoRA kancaları, sağlandıysa önceki kancalarla birleştirilmiş | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLora/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookModelAsLora/zh-TW.md index 1b890f5a5..c97dd3d55 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLora/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLora/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `HOOKS` | HOOKS | 建立的 LoRA 掛鉤,若提供了先前掛鉤則會與其結合 | \ No newline at end of file +| `HOOKS` | HOOKS | 建立的 LoRA 掛鉤,若提供了先前掛鉤則會與其結合 | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/ar.md b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/ar.md index 218427bc4..75e422938 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/ar.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `hooks` | HOOKS | مجموعة الخطافات المنشئة التي تحتوي على تعديل نموذج LoRA | \ No newline at end of file +| `hooks` | HOOKS | مجموعة الخطافات المنشئة التي تحتوي على تعديل نموذج LoRA | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/pt-BR.md b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/pt-BR.md index 56aaddc79..5b33b40ba 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/pt-BR.md @@ -14,4 +14,4 @@ Este nó cria um hook que aplica um modelo LoRA (Low-Rank Adaptation) para modif | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `hooks` | HOOKS | O grupo de hooks criado contendo a modificação do modelo LoRA | \ No newline at end of file +| `hooks` | HOOKS | O grupo de hooks criado contendo a modificação do modelo LoRA | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/tr.md b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/tr.md index 89d1b810e..f667985fb 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/tr.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/tr.md @@ -14,4 +14,4 @@ Bu düğüm, bir sinir ağının yalnızca model bileşenini değiştirmek için | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `hooks` | HOOKS | LoRA model değişikliğini içeren oluşturulan kanca grubu | \ No newline at end of file +| `hooks` | HOOKS | LoRA model değişikliğini içeren oluşturulan kanca grubu | diff --git a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/zh-TW.md b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/zh-TW.md index fdee7fd8e..6c6dc2600 100644 --- a/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateHookModelAsLoraModelOnly/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `hooks` | HOOKS | 建立的掛鉤群組,包含 LoRA 模型修改 | \ No newline at end of file +| `hooks` | HOOKS | 建立的掛鉤群組,包含 LoRA 模型修改 | diff --git a/comfyui_embedded_docs/docs/CreateVideo/ar.md b/comfyui_embedded_docs/docs/CreateVideo/ar.md index 6a2b229fd..93742663f 100644 --- a/comfyui_embedded_docs/docs/CreateVideo/ar.md +++ b/comfyui_embedded_docs/docs/CreateVideo/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `output` | VIDEO | ملف الفيديو المُنشئ الذي يحتوي على الصور المدخلة والصوت الاختياري. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/CreateVideo/pt-BR.md b/comfyui_embedded_docs/docs/CreateVideo/pt-BR.md index e490ced31..5f16810d8 100644 --- a/comfyui_embedded_docs/docs/CreateVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/CreateVideo/pt-BR.md @@ -14,4 +14,4 @@ O nó Create Video gera um arquivo de vídeo a partir de uma sequência de image | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado contendo as imagens de entrada e o áudio opcional. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado contendo as imagens de entrada e o áudio opcional. | diff --git a/comfyui_embedded_docs/docs/CreateVideo/tr.md b/comfyui_embedded_docs/docs/CreateVideo/tr.md index 2808a8f38..1eff663cb 100644 --- a/comfyui_embedded_docs/docs/CreateVideo/tr.md +++ b/comfyui_embedded_docs/docs/CreateVideo/tr.md @@ -14,4 +14,4 @@ Video Oluştur düğümü, bir görüntü dizisinden video dosyası oluşturur. | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi görüntülerini ve isteğe bağlı sesi içeren oluşturulmuş video dosyası. | \ No newline at end of file +| `output` | VIDEO | Girdi görüntülerini ve isteğe bağlı sesi içeren oluşturulmuş video dosyası. | diff --git a/comfyui_embedded_docs/docs/CreateVideo/zh-TW.md b/comfyui_embedded_docs/docs/CreateVideo/zh-TW.md index a4662bb9b..54e288cab 100644 --- a/comfyui_embedded_docs/docs/CreateVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/CreateVideo/zh-TW.md @@ -16,4 +16,4 @@ Create Video 節點可從一系列圖片生成影片檔案。您可以透過設 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案,包含輸入圖片和可選的音訊。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案,包含輸入圖片和可選的音訊。 | diff --git a/comfyui_embedded_docs/docs/CropMask/ar.md b/comfyui_embedded_docs/docs/CropMask/ar.md index b45933e39..3970614c8 100644 --- a/comfyui_embedded_docs/docs/CropMask/ar.md +++ b/comfyui_embedded_docs/docs/CropMask/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `قناع` | MASK | المخرجات هي قناع مقصوص، وهو جزء من القناع الأصلي محدد بالإحداثيات والأبعاد المحددة. | \ No newline at end of file +| `قناع` | MASK | المخرجات هي قناع مقصوص، وهو جزء من القناع الأصلي محدد بالإحداثيات والأبعاد المحددة. | diff --git a/comfyui_embedded_docs/docs/CropMask/pt-BR.md b/comfyui_embedded_docs/docs/CropMask/pt-BR.md index c32982179..65eecfe7b 100644 --- a/comfyui_embedded_docs/docs/CropMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/CropMask/pt-BR.md @@ -16,4 +16,4 @@ O nó CropMask é projetado para recortar uma área específica de uma máscara | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `mask` | MASK | A saída é uma máscara recortada, que é uma porção da máscara original definida pelas coordenadas e dimensões especificadas. | \ No newline at end of file +| `mask` | MASK | A saída é uma máscara recortada, que é uma porção da máscara original definida pelas coordenadas e dimensões especificadas. | diff --git a/comfyui_embedded_docs/docs/CropMask/tr.md b/comfyui_embedded_docs/docs/CropMask/tr.md index f82051f29..d2cf1aef3 100644 --- a/comfyui_embedded_docs/docs/CropMask/tr.md +++ b/comfyui_embedded_docs/docs/CropMask/tr.md @@ -16,4 +16,4 @@ CropMask düğümü, belirli bir maskenin belirtilen bir alanını kırpmak içi | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `maske` | MASK | Çıktı, kırpılmış bir maskedir ve orijinal maskenin belirtilen koordinatlar ve boyutlar ile tanımlanmış bir bölümüdür. | \ No newline at end of file +| `maske` | MASK | Çıktı, kırpılmış bir maskedir ve orijinal maskenin belirtilen koordinatlar ve boyutlar ile tanımlanmış bir bölümüdür. | diff --git a/comfyui_embedded_docs/docs/CropMask/zh-TW.md b/comfyui_embedded_docs/docs/CropMask/zh-TW.md index feb977761..74f4919e9 100644 --- a/comfyui_embedded_docs/docs/CropMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/CropMask/zh-TW.md @@ -16,4 +16,4 @@ CropMask 節點專為從指定遮罩中裁剪特定區域而設計。它允許 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `遮罩` | MASK | 輸出為裁剪後的遮罩,這是原始遮罩中由指定座標和尺寸定義的一部分。 | \ No newline at end of file +| `遮罩` | MASK | 輸出為裁剪後的遮罩,這是原始遮罩中由指定座標和尺寸定義的一部分。 | diff --git a/comfyui_embedded_docs/docs/CustomCombo/ar.md b/comfyui_embedded_docs/docs/CustomCombo/ar.md index a8305dfcd..19da0df68 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/ar.md +++ b/comfyui_embedded_docs/docs/CustomCombo/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | السلسلة النصية للخيار المحدد من صندوق القائمة المخصص. | \ No newline at end of file +| `output` | STRING | السلسلة النصية للخيار المحدد من صندوق القائمة المخصص. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/en.md b/comfyui_embedded_docs/docs/CustomCombo/en.md index 4c6260b06..6b17cb6c2 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/en.md +++ b/comfyui_embedded_docs/docs/CustomCombo/en.md @@ -14,4 +14,4 @@ The Custom Combo node allows you to create a custom dropdown menu with your own | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | STRING | The text string of the option selected from the custom combo box. | \ No newline at end of file +| `output` | STRING | The text string of the option selected from the custom combo box. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/es.md b/comfyui_embedded_docs/docs/CustomCombo/es.md index 1a74b2c1f..f1b502309 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/es.md +++ b/comfyui_embedded_docs/docs/CustomCombo/es.md @@ -14,4 +14,4 @@ El nodo Custom Combo (Combinación Personalizada) te permite crear un menú desp | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | STRING | La cadena de texto de la opción seleccionada en el cuadro combinado personalizado. | \ No newline at end of file +| `output` | STRING | La cadena de texto de la opción seleccionada en el cuadro combinado personalizado. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/fr.md b/comfyui_embedded_docs/docs/CustomCombo/fr.md index b8825d549..988acba9c 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/fr.md +++ b/comfyui_embedded_docs/docs/CustomCombo/fr.md @@ -16,4 +16,4 @@ Le nœud Custom Combo vous permet de créer un menu déroulant personnalisé ave | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | STRING | La chaîne de caractères correspondant à l'option sélectionnée dans la boîte combinée personnalisée. | \ No newline at end of file +| `output` | STRING | La chaîne de caractères correspondant à l'option sélectionnée dans la boîte combinée personnalisée. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/ja.md b/comfyui_embedded_docs/docs/CustomCombo/ja.md index 355682152..71bc2cc2d 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/ja.md +++ b/comfyui_embedded_docs/docs/CustomCombo/ja.md @@ -14,4 +14,4 @@ Custom Comboノードを使用すると、独自のテキストオプション | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | STRING | カスタムコンボボックスから選択されたオプションのテキスト文字列。 | \ No newline at end of file +| `output` | STRING | カスタムコンボボックスから選択されたオプションのテキスト文字列。 | diff --git a/comfyui_embedded_docs/docs/CustomCombo/ko.md b/comfyui_embedded_docs/docs/CustomCombo/ko.md index 9c366c7a8..121ad40da 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/ko.md +++ b/comfyui_embedded_docs/docs/CustomCombo/ko.md @@ -14,4 +14,4 @@ Custom Combo 노드를 사용하면 사용자 정의 텍스트 옵션 목록으 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | STRING | 사용자 정의 콤보 박스에서 선택한 옵션의 텍스트 문자열입니다. | \ No newline at end of file +| `output` | STRING | 사용자 정의 콤보 박스에서 선택한 옵션의 텍스트 문자열입니다. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/pt-BR.md b/comfyui_embedded_docs/docs/CustomCombo/pt-BR.md index 97b558fd3..1664d74ce 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/pt-BR.md +++ b/comfyui_embedded_docs/docs/CustomCombo/pt-BR.md @@ -14,4 +14,4 @@ O nó Custom Combo permite que você crie um menu suspenso personalizado com sua | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string de texto da opção selecionada na caixa de combinação personalizada. | \ No newline at end of file +| `output` | STRING | A string de texto da opção selecionada na caixa de combinação personalizada. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/ru.md b/comfyui_embedded_docs/docs/CustomCombo/ru.md index eb41ec594..a2f04b17b 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/ru.md +++ b/comfyui_embedded_docs/docs/CustomCombo/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | STRING | Текстовая строка опции, выбранной из пользовательского комбинированного списка. | \ No newline at end of file +| `output` | STRING | Текстовая строка опции, выбранной из пользовательского комбинированного списка. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/tr.md b/comfyui_embedded_docs/docs/CustomCombo/tr.md index 9d6eebcf7..126a817b4 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/tr.md +++ b/comfyui_embedded_docs/docs/CustomCombo/tr.md @@ -14,4 +14,4 @@ Custom Combo düğümü, kendi metin seçeneklerinizden oluşan özel bir açıl | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Özel birleşik kutudan seçilen seçeneğin metin dizesi. | \ No newline at end of file +| `output` | STRING | Özel birleşik kutudan seçilen seçeneğin metin dizesi. | diff --git a/comfyui_embedded_docs/docs/CustomCombo/zh-TW.md b/comfyui_embedded_docs/docs/CustomCombo/zh-TW.md index ecbbeec4b..3be634316 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/zh-TW.md +++ b/comfyui_embedded_docs/docs/CustomCombo/zh-TW.md @@ -14,4 +14,4 @@ Custom Combo 節點允許您使用自定義的文字選項列表來創建一個 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 從自定義下拉選單中選擇的選項的文字字串。 | \ No newline at end of file +| `output` | STRING | 從自定義下拉選單中選擇的選項的文字字串。 | diff --git a/comfyui_embedded_docs/docs/CustomCombo/zh.md b/comfyui_embedded_docs/docs/CustomCombo/zh.md index fbb94057c..8f7734d3c 100644 --- a/comfyui_embedded_docs/docs/CustomCombo/zh.md +++ b/comfyui_embedded_docs/docs/CustomCombo/zh.md @@ -14,4 +14,4 @@ Custom Combo 节点允许您创建一个包含自定义文本选项列表的下 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 从自定义组合框中选择的选项的文本字符串。 | \ No newline at end of file +| `output` | STRING | 从自定义组合框中选择的选项的文本字符串。 | diff --git a/comfyui_embedded_docs/docs/DCTestNode/ar.md b/comfyui_embedded_docs/docs/DCTestNode/ar.md index 6693909ad..27d448061 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/ar.md +++ b/comfyui_embedded_docs/docs/DCTestNode/ar.md @@ -16,11 +16,12 @@ | `mask1` | MASK | لا | - | حقل إدخال لقناع. يكون هذا الحقل نشطًا فقط عند تعيين `combo` إلى `"option4"` وتعيين `subcombo` إلى `"opt2"`. وهو اختياري. | **قيود المعاملات:** -* يتحكم معامل `combo` في إظهار وإلزامية جميع حقول الإدخال الأخرى. فقط المدخلات المرتبطة بخيار `combo` المُختار سيتم عرضها وتكون مطلوبة (باستثناء `mask1` الذي هو اختياري). -* عند تعيين `combo` إلى `"option4"`، يصبح معامل `subcombo` مطلوبًا ويتحكم في مجموعة ثانية من المدخلات الفرعية (`float_x`/`float_y` أو `mask1`). + +* يتحكم معامل `combo` في إظهار وإلزامية جميع حقول الإدخال الأخرى. فقط المدخلات المرتبطة بخيار `combo` المُختار سيتم عرضها وتكون مطلوبة (باستثناء `mask1` الذي هو اختياري). +* عند تعيين `combo` إلى `"option4"`، يصبح معامل `subcombo` مطلوبًا ويتحكم في مجموعة ثانية من المدخلات الفرعية (`float_x`/`float_y` أو `mask1`). ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | ANYTYPE | يعتمد المخرج على خيار `combo` المُختار. يمكن أن يكون STRING (`"option1"`)، أو INT (`"option2"`)، أو IMAGE (`"option3"`)، أو تمثيل نصي لقاموس `subcombo` (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | يعتمد المخرج على خيار `combo` المُختار. يمكن أن يكون STRING (`"option1"`)، أو INT (`"option2"`)، أو IMAGE (`"option3"`)، أو تمثيل نصي لقاموس `subcombo` (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/en.md b/comfyui_embedded_docs/docs/DCTestNode/en.md index 1dcb565db..d7f101214 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/en.md +++ b/comfyui_embedded_docs/docs/DCTestNode/en.md @@ -16,11 +16,12 @@ The DCTestNode is a logic node that returns different types of data based on a u | `mask1` | MASK | No | - | A mask input field. This field is only active when `combo` is set to `"option4"` and `subcombo` is set to `"opt2"`. It is optional. | **Parameter Constraints:** -* The `combo` parameter controls the visibility and requirement of all other input fields. Only the inputs associated with the selected `combo` option will be shown and are required (except for `mask1` which is optional). -* When `combo` is set to `"option4"`, the `subcombo` parameter becomes required and controls a second set of nested inputs (`float_x`/`float_y` or `mask1`). + +* The `combo` parameter controls the visibility and requirement of all other input fields. Only the inputs associated with the selected `combo` option will be shown and are required (except for `mask1` which is optional). +* When `combo` is set to `"option4"`, the `subcombo` parameter becomes required and controls a second set of nested inputs (`float_x`/`float_y` or `mask1`). ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | ANYTYPE | The output depends on the selected `combo` option. It can be a STRING (`"option1"`), an INT (`"option2"`), an IMAGE (`"option3"`), or a string representation of the `subcombo` dictionary (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | The output depends on the selected `combo` option. It can be a STRING (`"option1"`), an INT (`"option2"`), an IMAGE (`"option3"`), or a string representation of the `subcombo` dictionary (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/es.md b/comfyui_embedded_docs/docs/DCTestNode/es.md index 08b526424..ac94dc3bd 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/es.md +++ b/comfyui_embedded_docs/docs/DCTestNode/es.md @@ -16,11 +16,12 @@ El DCTestNode es un nodo lógico que devuelve diferentes tipos de datos según l | `mask1` | MASK | No | - | Un campo de entrada para máscaras. Este campo solo está activo cuando `combo` está configurado en `"option4"` y `subcombo` está configurado en `"opt2"`. Es opcional. | **Restricciones de Parámetros:** -* El parámetro `combo` controla la visibilidad y el requerimiento de todos los demás campos de entrada. Solo se mostrarán y serán obligatorios los campos asociados a la opción seleccionada en `combo` (excepto `mask1`, que es opcional). -* Cuando `combo` está configurado en `"option4"`, el parámetro `subcombo` se vuelve obligatorio y controla un segundo conjunto de entradas anidadas (`float_x`/`float_y` o `mask1`). + +* El parámetro `combo` controla la visibilidad y el requerimiento de todos los demás campos de entrada. Solo se mostrarán y serán obligatorios los campos asociados a la opción seleccionada en `combo` (excepto `mask1`, que es opcional). +* Cuando `combo` está configurado en `"option4"`, el parámetro `subcombo` se vuelve obligatorio y controla un segundo conjunto de entradas anidadas (`float_x`/`float_y` o `mask1`). ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | ANYTYPE | La salida depende de la opción seleccionada en `combo`. Puede ser un STRING (`"option1"`), un INT (`"option2"`), una IMAGE (`"option3"`), o una representación en cadena del diccionario `subcombo` (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | La salida depende de la opción seleccionada en `combo`. Puede ser un STRING (`"option1"`), un INT (`"option2"`), una IMAGE (`"option3"`), o una representación en cadena del diccionario `subcombo` (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/fr.md b/comfyui_embedded_docs/docs/DCTestNode/fr.md index 8920ab7d8..88a4639f8 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/fr.md +++ b/comfyui_embedded_docs/docs/DCTestNode/fr.md @@ -16,11 +16,12 @@ Le DCTestNode est un nœud logique qui renvoie différents types de données en | `mask1` | MASK | Non | - | Un champ d'entrée de masque. Ce champ n'est actif que lorsque `combo` est défini sur `"option4"` et `subcombo` sur `"opt2"`. Il est facultatif. | **Contraintes des paramètres :** -* Le paramètre `combo` contrôle la visibilité et l'obligation de tous les autres champs d'entrée. Seules les entrées associées à l'option `combo` sélectionnée seront affichées et seront requises (sauf `mask1` qui est facultatif). -* Lorsque `combo` est défini sur `"option4"`, le paramètre `subcombo` devient obligatoire et contrôle un second ensemble d'entrées imbriquées (`float_x`/`float_y` ou `mask1`). + +* Le paramètre `combo` contrôle la visibilité et l'obligation de tous les autres champs d'entrée. Seules les entrées associées à l'option `combo` sélectionnée seront affichées et seront requises (sauf `mask1` qui est facultatif). +* Lorsque `combo` est défini sur `"option4"`, le paramètre `subcombo` devient obligatoire et contrôle un second ensemble d'entrées imbriquées (`float_x`/`float_y` ou `mask1`). ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | ANYTYPE | La sortie dépend de l'option `combo` sélectionnée. Il peut s'agir d'une STRING (`"option1"`), d'un INT (`"option2"`), d'une IMAGE (`"option3"`), ou d'une représentation textuelle du dictionnaire `subcombo` (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | La sortie dépend de l'option `combo` sélectionnée. Il peut s'agir d'une STRING (`"option1"`), d'un INT (`"option2"`), d'une IMAGE (`"option3"`), ou d'une représentation textuelle du dictionnaire `subcombo` (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/ja.md b/comfyui_embedded_docs/docs/DCTestNode/ja.md index d8c60e1c8..0641024e8 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/ja.md +++ b/comfyui_embedded_docs/docs/DCTestNode/ja.md @@ -16,11 +16,12 @@ DCTestNodeは、ユーザーが動的なコンボボックスから選択した | `mask1` | MASK | いいえ | - | マスク入力フィールドです。このフィールドは、`combo`が`"option4"`に設定され、かつ`subcombo`が`"opt2"`に設定されている場合にのみアクティブになります。オプションです。 | **パラメータの制約:** -* `combo`パラメータは、他のすべての入力フィールドの表示/非表示と必須条件を制御します。選択された`combo`オプションに関連する入力のみが表示され、必須となります(オプションである`mask1`を除く)。 -* `combo`が`"option4"`に設定されている場合、`subcombo`パラメータが必須となり、2番目のネストされた入力セット(`float_x`/`float_y`または`mask1`)を制御します。 + +* `combo`パラメータは、他のすべての入力フィールドの表示/非表示と必須条件を制御します。選択された`combo`オプションに関連する入力のみが表示され、必須となります(オプションである`mask1`を除く)。 +* `combo`が`"option4"`に設定されている場合、`subcombo`パラメータが必須となり、2番目のネストされた入力セット(`float_x`/`float_y`または`mask1`)を制御します。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | ANYTYPE | 出力は、選択された`combo`オプションに依存します。STRING(`"option1"`)、INT(`"option2"`)、IMAGE(`"option3"`)、または`subcombo`辞書の文字列表現(`"option4"`)のいずれかになります。 | \ No newline at end of file +| `output` | ANYTYPE | 出力は、選択された`combo`オプションに依存します。STRING(`"option1"`)、INT(`"option2"`)、IMAGE(`"option3"`)、または`subcombo`辞書の文字列表現(`"option4"`)のいずれかになります。 | diff --git a/comfyui_embedded_docs/docs/DCTestNode/ko.md b/comfyui_embedded_docs/docs/DCTestNode/ko.md index ec07c7bae..c3c1ccd4d 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/ko.md +++ b/comfyui_embedded_docs/docs/DCTestNode/ko.md @@ -16,11 +16,12 @@ DCTestNode는 동적 콤보 박스에서 사용자가 선택한 옵션에 따라 | `mask1` | MASK | 아니요 | - | 마스크 입력 필드입니다. 이 필드는 `combo`가 `"option4"`이고 `subcombo`가 `"opt2"`으로 설정된 경우에만 활성화됩니다. 선택 사항입니다. | **매개변수 제약 조건:** -* `combo` 매개변수는 다른 모든 입력 필드의 가시성과 필수 여부를 제어합니다. 선택된 `combo` 옵션과 연관된 입력만 표시되며 필수입니다 (`mask1`은 선택 사항으로 예외). -* `combo`가 `"option4"`로 설정되면 `subcombo` 매개변수가 필수가 되며, 두 번째 중첩 입력 세트(`float_x`/`float_y` 또는 `mask1`)를 제어합니다. + +* `combo` 매개변수는 다른 모든 입력 필드의 가시성과 필수 여부를 제어합니다. 선택된 `combo` 옵션과 연관된 입력만 표시되며 필수입니다 (`mask1`은 선택 사항으로 예외). +* `combo`가 `"option4"`로 설정되면 `subcombo` 매개변수가 필수가 되며, 두 번째 중첩 입력 세트(`float_x`/`float_y` 또는 `mask1`)를 제어합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | ANYTYPE | 출력은 선택된 `combo` 옵션에 따라 달라집니다. STRING(`"option1"`), INT(`"option2"`), IMAGE(`"option3"`), 또는 `subcombo` 딕셔너리의 문자열 표현(`"option4"`)이 될 수 있습니다. | \ No newline at end of file +| `output` | ANYTYPE | 출력은 선택된 `combo` 옵션에 따라 달라집니다. STRING(`"option1"`), INT(`"option2"`), IMAGE(`"option3"`), 또는 `subcombo` 딕셔너리의 문자열 표현(`"option4"`)이 될 수 있습니다. | diff --git a/comfyui_embedded_docs/docs/DCTestNode/pt-BR.md b/comfyui_embedded_docs/docs/DCTestNode/pt-BR.md index c5341efbc..c403ae0da 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/DCTestNode/pt-BR.md @@ -16,11 +16,12 @@ O DCTestNode é um nó lógico que retorna diferentes tipos de dados com base na | `mask1` | MASK | Não | - | Um campo de entrada de máscara. Este campo só está ativo quando `combo` está definido como `"option4"` e `subcombo` está definido como `"opt2"`. É opcional. | **Restrições dos Parâmetros:** -* O parâmetro `combo` controla a visibilidade e a obrigatoriedade de todos os outros campos de entrada. Somente as entradas associadas à opção `combo` selecionada serão mostradas e serão obrigatórias (exceto `mask1`, que é opcional). -* Quando `combo` está definido como `"option4"`, o parâmetro `subcombo` torna-se obrigatório e controla um segundo conjunto de entradas aninhadas (`float_x`/`float_y` ou `mask1`). + +* O parâmetro `combo` controla a visibilidade e a obrigatoriedade de todos os outros campos de entrada. Somente as entradas associadas à opção `combo` selecionada serão mostradas e serão obrigatórias (exceto `mask1`, que é opcional). +* Quando `combo` está definido como `"option4"`, o parâmetro `subcombo` torna-se obrigatório e controla um segundo conjunto de entradas aninhadas (`float_x`/`float_y` ou `mask1`). ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | ANYTYPE | A saída depende da opção `combo` selecionada. Pode ser uma STRING (`"option1"`), um INT (`"option2"`), uma IMAGE (`"option3"`), ou uma representação em string do dicionário `subcombo` (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | A saída depende da opção `combo` selecionada. Pode ser uma STRING (`"option1"`), um INT (`"option2"`), uma IMAGE (`"option3"`), ou uma representação em string do dicionário `subcombo` (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/ru.md b/comfyui_embedded_docs/docs/DCTestNode/ru.md index 0f0da5122..5975e7ed2 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/ru.md +++ b/comfyui_embedded_docs/docs/DCTestNode/ru.md @@ -16,11 +16,12 @@ | `mask1` | MASK | Нет | - | Поле для ввода маски. Это поле активно только когда `combo` установлен в `"option4"`, а `subcombo` установлен в `"opt2"`. Оно является необязательным. | **Ограничения параметров:** -* Параметр `combo` управляет видимостью и обязательностью всех остальных полей ввода. Будут показаны и станут обязательными только входные данные, связанные с выбранной опцией `combo` (за исключением `mask1`, которое является необязательным). -* Когда `combo` установлен в `"option4"`, параметр `subcombo` становится обязательным и управляет вторым набором вложенных входных данных (`float_x`/`float_y` или `mask1`). + +* Параметр `combo` управляет видимостью и обязательностью всех остальных полей ввода. Будут показаны и станут обязательными только входные данные, связанные с выбранной опцией `combo` (за исключением `mask1`, которое является необязательным). +* Когда `combo` установлен в `"option4"`, параметр `subcombo` становится обязательным и управляет вторым набором вложенных входных данных (`float_x`/`float_y` или `mask1`). ## Выходные данные | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | ANYTYPE | Выходные данные зависят от выбранной опции `combo`. Это может быть STRING (`"option1"`), INT (`"option2"`), IMAGE (`"option3"`) или строковое представление словаря `subcombo` (`"option4"`). | \ No newline at end of file +| `output` | ANYTYPE | Выходные данные зависят от выбранной опции `combo`. Это может быть STRING (`"option1"`), INT (`"option2"`), IMAGE (`"option3"`) или строковое представление словаря `subcombo` (`"option4"`). | diff --git a/comfyui_embedded_docs/docs/DCTestNode/tr.md b/comfyui_embedded_docs/docs/DCTestNode/tr.md index 5cf6eb97c..6f4552627 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/tr.md +++ b/comfyui_embedded_docs/docs/DCTestNode/tr.md @@ -16,11 +16,12 @@ DCTestNode, kullanıcının dinamik bir birleşik giriş kutusundan yaptığı s | `mask1` | MASK | Hayır | - | Bir maske giriş alanı. Bu alan yalnızca `combo` `"option4"` ve `subcombo` `"opt2"` olarak ayarlandığında etkindir. İsteğe bağlıdır. | **Parametre Kısıtlamaları:** -* `combo` parametresi, diğer tüm giriş alanlarının görünürlüğünü ve zorunluluğunu kontrol eder. Yalnızca seçilen `combo` seçeneğiyle ilişkili girişler gösterilecek ve zorunlu olacaktır (`mask1` hariç, bu isteğe bağlıdır). -* `combo` `"option4"` olarak ayarlandığında, `subcombo` parametresi zorunlu hale gelir ve ikinci bir iç içe giriş kümesini (`float_x`/`float_y` veya `mask1`) kontrol eder. + +* `combo` parametresi, diğer tüm giriş alanlarının görünürlüğünü ve zorunluluğunu kontrol eder. Yalnızca seçilen `combo` seçeneğiyle ilişkili girişler gösterilecek ve zorunlu olacaktır (`mask1` hariç, bu isteğe bağlıdır). +* `combo` `"option4"` olarak ayarlandığında, `subcombo` parametresi zorunlu hale gelir ve ikinci bir iç içe giriş kümesini (`float_x`/`float_y` veya `mask1`) kontrol eder. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | ANYTYPE | Çıktı, seçilen `combo` seçeneğine bağlıdır. Bir STRING (`"option1"`), bir INT (`"option2"`), bir IMAGE (`"option3"`) veya `subcombo` sözlüğünün bir dize temsili (`"option4"`) olabilir. | \ No newline at end of file +| `output` | ANYTYPE | Çıktı, seçilen `combo` seçeneğine bağlıdır. Bir STRING (`"option1"`), bir INT (`"option2"`), bir IMAGE (`"option3"`) veya `subcombo` sözlüğünün bir dize temsili (`"option4"`) olabilir. | diff --git a/comfyui_embedded_docs/docs/DCTestNode/zh-TW.md b/comfyui_embedded_docs/docs/DCTestNode/zh-TW.md index 52e83efd7..5edf95572 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/DCTestNode/zh-TW.md @@ -16,11 +16,12 @@ DCTestNode 是一個邏輯節點,它會根據使用者從動態下拉式選單 | `mask1` | MASK | 否 | - | 遮罩輸入欄位。此欄位僅在 `combo` 設定為 `"option4"` 且 `subcombo` 設定為 `"opt2"` 時才處於活動狀態。它是可選的。 | **參數限制條件:** -* `combo` 參數控制所有其他輸入欄位的可見性和必要性。只有與所選 `combo` 選項相關的輸入才會顯示,並且是必填的(除了可選的 `mask1`)。 -* 當 `combo` 設定為 `"option4"` 時,`subcombo` 參數變為必填,並控制第二組巢狀輸入(`float_x`/`float_y` 或 `mask1`)。 + +* `combo` 參數控制所有其他輸入欄位的可見性和必要性。只有與所選 `combo` 選項相關的輸入才會顯示,並且是必填的(除了可選的 `mask1`)。 +* 當 `combo` 設定為 `"option4"` 時,`subcombo` 參數變為必填,並控制第二組巢狀輸入(`float_x`/`float_y` 或 `mask1`)。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | ANYTYPE | 輸出取決於所選的 `combo` 選項。它可以是 STRING (`"option1"`)、INT (`"option2"`)、IMAGE (`"option3"`),或是 `subcombo` 字典的字串表示形式 (`"option4"`)。 | \ No newline at end of file +| `output` | ANYTYPE | 輸出取決於所選的 `combo` 選項。它可以是 STRING (`"option1"`)、INT (`"option2"`)、IMAGE (`"option3"`),或是 `subcombo` 字典的字串表示形式 (`"option4"`)。 | diff --git a/comfyui_embedded_docs/docs/DCTestNode/zh.md b/comfyui_embedded_docs/docs/DCTestNode/zh.md index 46e0f393b..30ff14fcd 100644 --- a/comfyui_embedded_docs/docs/DCTestNode/zh.md +++ b/comfyui_embedded_docs/docs/DCTestNode/zh.md @@ -16,11 +16,12 @@ DCTestNode 是一个逻辑节点,根据用户从动态组合框中的选择返 | `mask1` | MASK | 否 | - | 遮罩输入字段。仅当 `combo` 设置为 `"option4"` 且 `subcombo` 设置为 `"opt2"` 时,此字段才处于活动状态。它是可选的。 | **参数约束:** -* `combo` 参数控制所有其他输入字段的可见性和必填性。只有与所选 `combo` 选项关联的输入才会显示,并且是必填的(`mask1` 除外,它是可选的)。 -* 当 `combo` 设置为 `"option4"` 时,`subcombo` 参数变为必填项,并控制第二组嵌套输入(`float_x`/`float_y` 或 `mask1`)。 + +* `combo` 参数控制所有其他输入字段的可见性和必填性。只有与所选 `combo` 选项关联的输入才会显示,并且是必填的(`mask1` 除外,它是可选的)。 +* 当 `combo` 设置为 `"option4"` 时,`subcombo` 参数变为必填项,并控制第二组嵌套输入(`float_x`/`float_y` 或 `mask1`)。 ## 输出参数 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | ANYTYPE | 输出取决于所选的 `combo` 选项。它可以是 STRING(`"option1"`)、INT(`"option2"`)、IMAGE(`"option3"`)或 `subcombo` 字典的字符串表示形式(`"option4"`)。 | \ No newline at end of file +| `output` | ANYTYPE | 输出取决于所选的 `combo` 选项。它可以是 STRING(`"option1"`)、INT(`"option2"`)、IMAGE(`"option3"`)或 `subcombo` 字典的字符串表示形式(`"option4"`)。 | diff --git a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/ar.md b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/ar.md index b3e5be698..46196b612 100644 --- a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/ar.md +++ b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/ar.md @@ -15,4 +15,4 @@ |-----------|-------------|-------------| | `model` | MODEL | يمثل النموذج الرئيسي الذي تم تحميله من نقطة الفحص، وهو جاهز للمزيد من العمليات أو الاستدلال. | | `clip` | CLIP | يوفر مكون نموذج CLIP، إذا كان متوفرًا ومطلوبًا، والذي تم تحميله من نقطة الفحص. | -| `vae` | VAE | يقدم مكون نموذج VAE، إذا كان متوفرًا ومطلوبًا، والذي تم تحميله من نقطة الفحص. | \ No newline at end of file +| `vae` | VAE | يقدم مكون نموذج VAE، إذا كان متوفرًا ومطلوبًا، والذي تم تحميله من نقطة الفحص. | diff --git a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/pt-BR.md b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/pt-BR.md index 02c334da9..92e884c19 100644 --- a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/pt-BR.md @@ -15,4 +15,4 @@ O nó CheckpointLoader é projetado para operações avançadas de carregamento, |-----------|-------------|-------------| | `model` | MODEL | Representa o modelo principal carregado a partir do checkpoint, pronto para operações posteriores ou inferência. | | `clip` | CLIP | Fornece o componente do modelo CLIP, se disponível e solicitado, carregado a partir do checkpoint. | -| `vae` | VAE | Disponibiliza o componente do modelo VAE, se disponível e solicitado, carregado a partir do checkpoint. | \ No newline at end of file +| `vae` | VAE | Disponibiliza o componente do modelo VAE, se disponível e solicitado, carregado a partir do checkpoint. | diff --git a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/tr.md b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/tr.md index 42b429f56..e621ebd2d 100644 --- a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/tr.md +++ b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/tr.md @@ -15,4 +15,4 @@ CheckpointLoader düğümü, gelişmiş yükleme işlemleri için tasarlanmış |-----------|-----------|----------| | `model` | MODEL | Kontrol noktasından yüklenen, daha fazla işlem veya çıkarım için hazır olan birincil modeli temsil eder. | | `clip` | CLIP | Kontrol noktasından yüklenen, mevcut ve talep edilmişse CLIP model bileşenini sağlar. | -| `vae` | VAE | Kontrol noktasından yüklenen, mevcut ve talep edilmişse VAE model bileşenini sunar. | \ No newline at end of file +| `vae` | VAE | Kontrol noktasından yüklenen, mevcut ve talep edilmişse VAE model bileşenini sunar. | diff --git a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/zh-TW.md b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/zh-TW.md index 9307a1f1f..f488c591e 100644 --- a/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/DeprecatedCheckpointLoader/zh-TW.md @@ -17,4 +17,4 @@ CheckpointLoader 節點專為進階載入操作設計,主要用於載入模型 |----------|----------|------| | `model` | MODEL | 代表從檢查點載入的主要模型,已準備好進行後續操作或推理。 | | `clip` | CLIP | 提供從檢查點載入的 CLIP 模型元件(如果可用且被請求)。 | -| `vae` | VAE | 提供從檢查點載入的 VAE 模型元件(如果可用且被請求)。 | \ No newline at end of file +| `vae` | VAE | 提供從檢查點載入的 VAE 模型元件(如果可用且被請求)。 | diff --git a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/ar.md b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/ar.md index f6f8cddfb..32b0f17e3 100644 --- a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/ar.md +++ b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/ar.md @@ -14,4 +14,4 @@ |-----------|-------------|-------------| | `model` | MODEL | نموذج UNet الذي تم تحميله، وهو جزء من مجموعة المخرجات. يُعد هذا النموذج أساسيًا لمهام تركيب الصور ومعالجتها ضمن إطار عمل ComfyUI. | | `clip` | CLIP | نموذج CLIP الذي تم تحميله، ويُدرج في مجموعة المخرجات عند الطلب. يُتيح هذا النموذج إمكانيات متقدمة لفهم النص والصورة ومعالجتها. | -| `vae` | VAE | نموذج VAE الذي تم تحميله، ويُدرج في مجموعة المخرجات عند الطلب. يُعد هذا النموذج بالغ الأهمية للمهام التي تتضمن التعامل مع الفضاء الكامن وتوليد الصور. | \ No newline at end of file +| `vae` | VAE | نموذج VAE الذي تم تحميله، ويُدرج في مجموعة المخرجات عند الطلب. يُعد هذا النموذج بالغ الأهمية للمهام التي تتضمن التعامل مع الفضاء الكامن وتوليد الصور. | diff --git a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/pt-BR.md b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/pt-BR.md index 3e5d79918..756e3333b 100644 --- a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó DiffusersLoader foi projetado para carregar modelos da biblioteca diffuser |-----------|-------------|-------------| | `model` | MODEL | O modelo UNet carregado, que faz parte da tupla de saída. Este modelo é essencial para tarefas de síntese e manipulação de imagens dentro da estrutura do ComfyUI. | | `clip` | CLIP | O modelo CLIP carregado, incluído na tupla de saída se solicitado. Este modelo permite capacidades avançadas de compreensão e manipulação de texto e imagem. | -| `vae` | VAE | O modelo VAE carregado, incluído na tupla de saída se solicitado. Este modelo é crucial para tarefas envolvendo manipulação do espaço latente e geração de imagens. | \ No newline at end of file +| `vae` | VAE | O modelo VAE carregado, incluído na tupla de saída se solicitado. Este modelo é crucial para tarefas envolvendo manipulação do espaço latente e geração de imagens. | diff --git a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/tr.md b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/tr.md index ce06e315e..963cc3419 100644 --- a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/tr.md +++ b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/tr.md @@ -14,4 +14,4 @@ DiffusersLoader düğümü, diffusers kütüphanesinden model yüklemek için ta |-----------|-------------|-------------| | `model` | MODEL | Yüklenen UNet modelidir ve çıktı demetinin bir parçasıdır. Bu model, ComfyUI çerçevesi içinde görüntü sentezi ve manipülasyonu görevleri için gereklidir. | | `clip` | CLIP | İstenirse çıktı demetine dahil edilen yüklenmiş CLIP modelidir. Bu model, gelişmiş metin ve görüntü anlama ve manipülasyon yetenekleri sağlar. | -| `vae` | VAE | İstenirse çıktı demetine dahil edilen yüklenmiş VAE modelidir. Bu model, gizli uzay manipülasyonu ve görüntü oluşturma içeren görevler için çok önemlidir. | \ No newline at end of file +| `vae` | VAE | İstenirse çıktı demetine dahil edilen yüklenmiş VAE modelidir. Bu model, gizli uzay manipülasyonu ve görüntü oluşturma içeren görevler için çok önemlidir. | diff --git a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/zh-TW.md b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/zh-TW.md index 3a29c41e2..1bc576ad5 100644 --- a/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/DeprecatedDiffusersLoader/zh-TW.md @@ -14,4 +14,4 @@ DiffusersLoader 節點專為從 diffusers 庫加載模型而設計,特別處 |----------|----------|------| | `model` | MODEL | 已加載的 UNet 模型,這是輸出元組的一部分。該模型對於 ComfyUI 框架內的圖像合成和處理任務至關重要。 | | `clip` | CLIP | 已加載的 CLIP 模型,如果請求則包含在輸出元組中。該模型能夠實現高級的文字和圖像理解與處理功能。 | -| `vae` | VAE | 已加載的 VAE 模型,如果請求則包含在輸出元組中。該模型對於涉及潛在空間操作和圖像生成的任務至關重要。 | \ No newline at end of file +| `vae` | VAE | 已加載的 VAE 模型,如果請求則包含在輸出元組中。該模型對於涉及潛在空間操作和圖像生成的任務至關重要。 | diff --git a/comfyui_embedded_docs/docs/DiffControlnetLoader/ar.md b/comfyui_embedded_docs/docs/DiffControlnetLoader/ar.md index 338965ce2..926ace516 100644 --- a/comfyui_embedded_docs/docs/DiffControlnetLoader/ar.md +++ b/comfyui_embedded_docs/docs/DiffControlnetLoader/ar.md @@ -15,4 +15,4 @@ | الحقل | نوع Comfy | الوصف | |----------------|---------------|-------------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | شبكة تحكم تفاضلية تم تحميلها وهي جاهزة للتطبيق على نموذج أساسي لتعديل السلوك. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | شبكة تحكم تفاضلية تم تحميلها وهي جاهزة للتطبيق على نموذج أساسي لتعديل السلوك. | diff --git a/comfyui_embedded_docs/docs/DiffControlnetLoader/pt-BR.md b/comfyui_embedded_docs/docs/DiffControlnetLoader/pt-BR.md index 630277a17..0b0847f8c 100644 --- a/comfyui_embedded_docs/docs/DiffControlnetLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/DiffControlnetLoader/pt-BR.md @@ -15,4 +15,4 @@ O nó DiffControlNetLoader é projetado para carregar redes de controle diferenc | Campo | Tipo Comfy | Descrição | |----------------|---------------|-------------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | Uma rede de controle diferencial que foi carregada e está pronta para ser aplicada a um modelo base para modificação de comportamento. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | Uma rede de controle diferencial que foi carregada e está pronta para ser aplicada a um modelo base para modificação de comportamento. | diff --git a/comfyui_embedded_docs/docs/DiffControlnetLoader/tr.md b/comfyui_embedded_docs/docs/DiffControlnetLoader/tr.md index 1973012bf..399808c5c 100644 --- a/comfyui_embedded_docs/docs/DiffControlnetLoader/tr.md +++ b/comfyui_embedded_docs/docs/DiffControlnetLoader/tr.md @@ -15,4 +15,4 @@ DiffControlNetLoader düğümü, diferansiyel kontrol ağlarını yüklemek içi | Alan | Comfy Veri Türü | Açıklama | |----------------|---------------|-------------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | Yüklenmiş olan ve bir temel modele davranış değişikliği için uygulanmaya hazır bir diferansiyel kontrol ağı. | \ No newline at end of file +| `control_net` | `CONTROL_NET` | Yüklenmiş olan ve bir temel modele davranış değişikliği için uygulanmaya hazır bir diferansiyel kontrol ağı. | diff --git a/comfyui_embedded_docs/docs/DiffControlnetLoader/zh-TW.md b/comfyui_embedded_docs/docs/DiffControlnetLoader/zh-TW.md index beb36b080..8f5904736 100644 --- a/comfyui_embedded_docs/docs/DiffControlnetLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/DiffControlnetLoader/zh-TW.md @@ -15,4 +15,4 @@ DiffControlNetLoader 節點專為載入差分控制網路而設計,這些是 | 欄位名稱 | Comfy 資料類型 | 描述 | |-----------------|------------------|---------------------------------------------------------------------------| -| `control_net` | `CONTROL_NET` | 已載入的差分控制網路,準備好應用於基礎模型以進行行為修改。 | \ No newline at end of file +| `control_net` | `CONTROL_NET` | 已載入的差分控制網路,準備好應用於基礎模型以進行行為修改。 | diff --git a/comfyui_embedded_docs/docs/DifferentialDiffusion/ar.md b/comfyui_embedded_docs/docs/DifferentialDiffusion/ar.md index 40dd5151a..6cd3f0c4b 100644 --- a/comfyui_embedded_docs/docs/DifferentialDiffusion/ar.md +++ b/comfyui_embedded_docs/docs/DifferentialDiffusion/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `النموذج` | MODEL | نموذج الانتشار المعدل مع وظيفة قناع إزالة الضوضاء المحدثة | \ No newline at end of file +| `النموذج` | MODEL | نموذج الانتشار المعدل مع وظيفة قناع إزالة الضوضاء المحدثة | diff --git a/comfyui_embedded_docs/docs/DifferentialDiffusion/pt-BR.md b/comfyui_embedded_docs/docs/DifferentialDiffusion/pt-BR.md index a1b4aed47..aba47e1e9 100644 --- a/comfyui_embedded_docs/docs/DifferentialDiffusion/pt-BR.md +++ b/comfyui_embedded_docs/docs/DifferentialDiffusion/pt-BR.md @@ -13,4 +13,4 @@ O nó Differential Diffusion modifica o processo de remoção de ruído aplicand | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo de difusão modificado com a função de máscara de remoção de ruído atualizada | \ No newline at end of file +| `model` | MODEL | O modelo de difusão modificado com a função de máscara de remoção de ruído atualizada | diff --git a/comfyui_embedded_docs/docs/DifferentialDiffusion/tr.md b/comfyui_embedded_docs/docs/DifferentialDiffusion/tr.md index 2ae004595..c0afcc0fb 100644 --- a/comfyui_embedded_docs/docs/DifferentialDiffusion/tr.md +++ b/comfyui_embedded_docs/docs/DifferentialDiffusion/tr.md @@ -13,4 +13,4 @@ Differential Diffusion düğümü, zaman adımı eşiklerine dayalı bir ikili m | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Güncellenmiş gürültü giderme maske fonksiyonuna sahip değiştirilmiş difüzyon modeli | \ No newline at end of file +| `model` | MODEL | Güncellenmiş gürültü giderme maske fonksiyonuna sahip değiştirilmiş difüzyon modeli | diff --git a/comfyui_embedded_docs/docs/DifferentialDiffusion/zh-TW.md b/comfyui_embedded_docs/docs/DifferentialDiffusion/zh-TW.md index e8d0b8f55..8f8fdd062 100644 --- a/comfyui_embedded_docs/docs/DifferentialDiffusion/zh-TW.md +++ b/comfyui_embedded_docs/docs/DifferentialDiffusion/zh-TW.md @@ -15,4 +15,4 @@ Differential Diffusion 節點透過基於時間步長閾值應用二值遮罩來 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `模型` | MODEL | 帶有更新去噪遮罩功能的修改後擴散模型 | \ No newline at end of file +| `模型` | MODEL | 帶有更新去噪遮罩功能的修改後擴散模型 | diff --git a/comfyui_embedded_docs/docs/DiffusersLoader/ar.md b/comfyui_embedded_docs/docs/DiffusersLoader/ar.md index c94f83838..55c2d6622 100644 --- a/comfyui_embedded_docs/docs/DiffusersLoader/ar.md +++ b/comfyui_embedded_docs/docs/DiffusersLoader/ar.md @@ -16,4 +16,4 @@ |-------------|-----------|-------------| | `MODEL` | MODEL | مكون النموذج المحمّل من تنسيق diffusers | | `CLIP` | CLIP | مكون نموذج CLIP المحمّل من تنسيق diffusers | -| `VAE` | VAE | مكون VAE (المشفر التلقائي التبايني) المحمّل من تنسيق diffusers | \ No newline at end of file +| `VAE` | VAE | مكون VAE (المشفر التلقائي التبايني) المحمّل من تنسيق diffusers | diff --git a/comfyui_embedded_docs/docs/DiffusersLoader/pt-BR.md b/comfyui_embedded_docs/docs/DiffusersLoader/pt-BR.md index f2403832d..800fa309d 100644 --- a/comfyui_embedded_docs/docs/DiffusersLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/DiffusersLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó DiffusersLoader carrega modelos pré-treinados no formato diffusers. Ele b |-------------|-----------|-------------| | `MODEL` | MODEL | O componente de modelo carregado a partir do formato diffusers | | `CLIP` | CLIP | O componente do modelo CLIP carregado a partir do formato diffusers | -| `VAE` | VAE | O componente VAE (Variational Autoencoder) carregado a partir do formato diffusers | \ No newline at end of file +| `VAE` | VAE | O componente VAE (Variational Autoencoder) carregado a partir do formato diffusers | diff --git a/comfyui_embedded_docs/docs/DiffusersLoader/tr.md b/comfyui_embedded_docs/docs/DiffusersLoader/tr.md index 0a054aa05..f9f566cc0 100644 --- a/comfyui_embedded_docs/docs/DiffusersLoader/tr.md +++ b/comfyui_embedded_docs/docs/DiffusersLoader/tr.md @@ -14,4 +14,4 @@ DiffusersLoader düğümü, önceden eğitilmiş modelleri diffusers formatında |-------------|-----------|-------------| | `MODEL` | MODEL | Diffusers formatından yüklenen model bileşeni | | `CLIP` | CLIP | Diffusers formatından yüklenen CLIP model bileşeni | -| `VAE` | VAE | Diffusers formatından yüklenen VAE (Değişimli Otokodlayıcı) bileşeni | \ No newline at end of file +| `VAE` | VAE | Diffusers formatından yüklenen VAE (Değişimli Otokodlayıcı) bileşeni | diff --git a/comfyui_embedded_docs/docs/DiffusersLoader/zh-TW.md b/comfyui_embedded_docs/docs/DiffusersLoader/zh-TW.md index 0630d708f..9a9c8e344 100644 --- a/comfyui_embedded_docs/docs/DiffusersLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/DiffusersLoader/zh-TW.md @@ -14,4 +14,4 @@ DiffusersLoader 節點從 diffusers 格式載入預訓練模型。它會搜尋 |-------------|-----------|-------------| | `MODEL` | MODEL | 從 diffusers 格式載入的模型元件 | | `CLIP` | CLIP | 從 diffusers 格式載入的 CLIP 模型元件 | -| `VAE` | VAE | 從 diffusers 格式載入的 VAE(變分自編碼器)元件 | \ No newline at end of file +| `VAE` | VAE | 從 diffusers 格式載入的 VAE(變分自編碼器)元件 | diff --git a/comfyui_embedded_docs/docs/DisableNoise/ar.md b/comfyui_embedded_docs/docs/DisableNoise/ar.md index d74d35abf..b00aed568 100644 --- a/comfyui_embedded_docs/docs/DisableNoise/ar.md +++ b/comfyui_embedded_docs/docs/DisableNoise/ar.md @@ -12,4 +12,4 @@ | اسم الخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `NOISE` | NOISE | يُرجع إعداد ضوضاء فارغًا يمكن استخدامه لتعطيل توليد الضوضاء في عمليات أخذ العينات. | \ No newline at end of file +| `NOISE` | NOISE | يُرجع إعداد ضوضاء فارغًا يمكن استخدامه لتعطيل توليد الضوضاء في عمليات أخذ العينات. | diff --git a/comfyui_embedded_docs/docs/DisableNoise/pt-BR.md b/comfyui_embedded_docs/docs/DisableNoise/pt-BR.md index 8c9538b69..3c2d720ee 100644 --- a/comfyui_embedded_docs/docs/DisableNoise/pt-BR.md +++ b/comfyui_embedded_docs/docs/DisableNoise/pt-BR.md @@ -12,4 +12,4 @@ O nó DisableNoise fornece uma configuração de ruído vazia que pode ser usada | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `NOISE` | NOISE | Retorna uma configuração de ruído vazia que pode ser usada para desativar a geração de ruído em processos de amostragem. | \ No newline at end of file +| `NOISE` | NOISE | Retorna uma configuração de ruído vazia que pode ser usada para desativar a geração de ruído em processos de amostragem. | diff --git a/comfyui_embedded_docs/docs/DisableNoise/tr.md b/comfyui_embedded_docs/docs/DisableNoise/tr.md index 0a285865e..e5f3929e8 100644 --- a/comfyui_embedded_docs/docs/DisableNoise/tr.md +++ b/comfyui_embedded_docs/docs/DisableNoise/tr.md @@ -12,4 +12,4 @@ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `NOISE` | NOISE | Örnekleme işlemlerinde gürültü oluşturmayı devre dışı bırakmak için kullanılabilecek boş bir gürültü yapılandırması döndürür. | \ No newline at end of file +| `NOISE` | NOISE | Örnekleme işlemlerinde gürültü oluşturmayı devre dışı bırakmak için kullanılabilecek boş bir gürültü yapılandırması döndürür. | diff --git a/comfyui_embedded_docs/docs/DisableNoise/zh-TW.md b/comfyui_embedded_docs/docs/DisableNoise/zh-TW.md index 8fcc7f91b..08f1ceae6 100644 --- a/comfyui_embedded_docs/docs/DisableNoise/zh-TW.md +++ b/comfyui_embedded_docs/docs/DisableNoise/zh-TW.md @@ -14,4 +14,4 @@ DisableNoise 節點提供了一個空的噪聲配置,可用於在採樣過程 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `NOISE` | NOISE | 返回一個空的噪聲配置,可用於在採樣過程中停用噪聲生成。 | \ No newline at end of file +| `NOISE` | NOISE | 返回一個空的噪聲配置,可用於在採樣過程中停用噪聲生成。 | diff --git a/comfyui_embedded_docs/docs/DualCFGGuider/ar.md b/comfyui_embedded_docs/docs/DualCFGGuider/ar.md index 2945fca1a..b930dc49c 100644 --- a/comfyui_embedded_docs/docs/DualCFGGuider/ar.md +++ b/comfyui_embedded_docs/docs/DualCFGGuider/ar.md @@ -20,4 +20,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |--------------|---------------|--------| | `GUIDER` | GUIDER | نظام توجيه مُهيأ وجاهز للاستخدام مع أخذ العينات | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/DualCFGGuider/pt-BR.md b/comfyui_embedded_docs/docs/DualCFGGuider/pt-BR.md index 9a1fb65ac..4b6e68219 100644 --- a/comfyui_embedded_docs/docs/DualCFGGuider/pt-BR.md +++ b/comfyui_embedded_docs/docs/DualCFGGuider/pt-BR.md @@ -18,4 +18,4 @@ O nó DualCFGGuider cria um sistema de orientação para amostragem com orienta | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Um sistema de orientação configurado e pronto para uso com amostragem | \ No newline at end of file +| `GUIDER` | GUIDER | Um sistema de orientação configurado e pronto para uso com amostragem | diff --git a/comfyui_embedded_docs/docs/DualCFGGuider/tr.md b/comfyui_embedded_docs/docs/DualCFGGuider/tr.md index 7ffdda883..4f35232de 100644 --- a/comfyui_embedded_docs/docs/DualCFGGuider/tr.md +++ b/comfyui_embedded_docs/docs/DualCFGGuider/tr.md @@ -18,4 +18,4 @@ DualCFGGuider düğümü, çift sınıflandırıcısız kılavuzluk örneklemesi | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | Örnekleme ile kullanıma hazır yapılandırılmış bir kılavuzluk sistemi | \ No newline at end of file +| `GUIDER` | GUIDER | Örnekleme ile kullanıma hazır yapılandırılmış bir kılavuzluk sistemi | diff --git a/comfyui_embedded_docs/docs/DualCFGGuider/zh-TW.md b/comfyui_embedded_docs/docs/DualCFGGuider/zh-TW.md index 26e42a113..6c3fcda94 100644 --- a/comfyui_embedded_docs/docs/DualCFGGuider/zh-TW.md +++ b/comfyui_embedded_docs/docs/DualCFGGuider/zh-TW.md @@ -18,4 +18,4 @@ DualCFGGuider 節點建立了一個用於雙重無分類器引導採樣的引導 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `GUIDER` | GUIDER | 已配置完成的引導系統,可立即用於採樣過程 | \ No newline at end of file +| `GUIDER` | GUIDER | 已配置完成的引導系統,可立即用於採樣過程 | diff --git a/comfyui_embedded_docs/docs/DualClipLoader/ar.md b/comfyui_embedded_docs/docs/DualClipLoader/ar.md index 6cf10f380..9422e6320 100644 --- a/comfyui_embedded_docs/docs/DualClipLoader/ar.md +++ b/comfyui_embedded_docs/docs/DualClipLoader/ar.md @@ -20,4 +20,4 @@ | المعامل | نوع البيانات | الوصف | | --------- | ----------- | ------------------------------------------------------------------------------- | | `clip` | CLIP | المخرج هو نموذج CLIP مدمج يدمج ميزات أو وظائف نموذجي CLIP المحددين. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/DualClipLoader/pt-BR.md b/comfyui_embedded_docs/docs/DualClipLoader/pt-BR.md index 2bc0b6d41..4eec7aab6 100644 --- a/comfyui_embedded_docs/docs/DualClipLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/DualClipLoader/pt-BR.md @@ -18,4 +18,4 @@ Este nó detectará modelos localizados na pasta `ComfyUI/models/text_encoders`. | Parâmetro | Tipo de Dado | Descrição | | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------- | -| `clip` | CLIP | A saída é um modelo CLIP combinado que integra as características ou funcionalidades dos dois modelos CLIP especificados. | \ No newline at end of file +| `clip` | CLIP | A saída é um modelo CLIP combinado que integra as características ou funcionalidades dos dois modelos CLIP especificados. | diff --git a/comfyui_embedded_docs/docs/DualClipLoader/tr.md b/comfyui_embedded_docs/docs/DualClipLoader/tr.md index 2110ded0c..6674099b3 100644 --- a/comfyui_embedded_docs/docs/DualClipLoader/tr.md +++ b/comfyui_embedded_docs/docs/DualClipLoader/tr.md @@ -18,4 +18,4 @@ Bu düğüm, `ComfyUI/models/text_encoders` klasöründe bulunan modelleri tespi | Parametre | Veri Türü | Açıklama | | --------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| `clip` | CLIP | Çıktı, belirtilen iki CLIP modelinin özelliklerini veya işlevselliğini birleştiren birleşik bir CLIP modelidir. | \ No newline at end of file +| `clip` | CLIP | Çıktı, belirtilen iki CLIP modelinin özelliklerini veya işlevselliğini birleştiren birleşik bir CLIP modelidir. | diff --git a/comfyui_embedded_docs/docs/DualClipLoader/zh-TW.md b/comfyui_embedded_docs/docs/DualClipLoader/zh-TW.md index 10979d09a..e09af2d60 100644 --- a/comfyui_embedded_docs/docs/DualClipLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/DualClipLoader/zh-TW.md @@ -20,4 +20,4 @@ DualCLIPLoader 節點專為同時載入兩個 CLIP 模型而設計,便於需 | 參數名稱 | 資料類型 | 描述 | | -------- | -------- | -------------------------------------------------- | -| `clip` | CLIP | 輸出是一個整合了兩個指定 CLIP 模型特徵或功能的組合 CLIP 模型。 | \ No newline at end of file +| `clip` | CLIP | 輸出是一個整合了兩個指定 CLIP 模型特徵或功能的組合 CLIP 模型。 | diff --git a/comfyui_embedded_docs/docs/EasyCache/ar.md b/comfyui_embedded_docs/docs/EasyCache/ar.md index ec44c7882..e157b2c04 100644 --- a/comfyui_embedded_docs/docs/EasyCache/ar.md +++ b/comfyui_embedded_docs/docs/EasyCache/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------------------------------------------| | `model` | MODEL | النموذج مع إضافة وظيفة EasyCache إليه. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/EasyCache/pt-BR.md b/comfyui_embedded_docs/docs/EasyCache/pt-BR.md index cacc6242b..a271f4a5d 100644 --- a/comfyui_embedded_docs/docs/EasyCache/pt-BR.md +++ b/comfyui_embedded_docs/docs/EasyCache/pt-BR.md @@ -16,4 +16,4 @@ O nó EasyCache implementa um sistema de cache nativo para modelos, visando melh | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com a funcionalidade EasyCache adicionada. | \ No newline at end of file +| `model` | MODEL | O modelo com a funcionalidade EasyCache adicionada. | diff --git a/comfyui_embedded_docs/docs/EasyCache/tr.md b/comfyui_embedded_docs/docs/EasyCache/tr.md index 23149afc4..f80a43536 100644 --- a/comfyui_embedded_docs/docs/EasyCache/tr.md +++ b/comfyui_embedded_docs/docs/EasyCache/tr.md @@ -16,4 +16,4 @@ EasyCache düğümü, örnekleme işlemi sırasında önceden hesaplanmış adı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | EasyCache işlevselliği eklenmiş model. | \ No newline at end of file +| `model` | MODEL | EasyCache işlevselliği eklenmiş model. | diff --git a/comfyui_embedded_docs/docs/EasyCache/zh-TW.md b/comfyui_embedded_docs/docs/EasyCache/zh-TW.md index 199e96789..ff8f12348 100644 --- a/comfyui_embedded_docs/docs/EasyCache/zh-TW.md +++ b/comfyui_embedded_docs/docs/EasyCache/zh-TW.md @@ -16,4 +16,4 @@ EasyCache 節點實現了一個原生模型快取系統,透過在採樣過程 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已添加 EasyCache 功能的模型。 | \ No newline at end of file +| `model` | MODEL | 已添加 EasyCache 功能的模型。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ar.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ar.md new file mode 100644 index 000000000..8e2c17a6a --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ar.md @@ -0,0 +1,15 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ar.md) + +عُقدة ElevenLabs Voice Isolation تزيل الضوضاء الخلفية من ملف صوتي، معززةً الأصوات أو الكلام. تُرسل الصوت إلى واجهة برمجة تطبيقات (API) ElevenLabs للمعالجة وتعيد الصوت المُنقّى. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | نعم | | الصوت المراد معالجته لإزالة الضوضاء الخلفية. | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | الصوت المُعالَج بعد إزالة الضوضاء الخلفية. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/en.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/en.md new file mode 100644 index 000000000..12343a3fd --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/en.md @@ -0,0 +1,15 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/en.md) + +The ElevenLabs Voice Isolation node removes background noise from an audio file, isolating the vocals or speech. It sends the audio to the ElevenLabs API for processing and returns the cleaned audio. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Yes | | Audio to process for background noise removal. | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The processed audio with background noise removed. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/es.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/es.md new file mode 100644 index 000000000..4722a3127 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/es.md @@ -0,0 +1,15 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/es.md) + +El nodo ElevenLabs Voice Isolation elimina el ruido de fondo de un archivo de audio, aislando las voces o el habla. Envía el audio a la API de ElevenLabs para su procesamiento y devuelve el audio limpio. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sí | | Audio a procesar para la eliminación de ruido de fondo. | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | El audio procesado con el ruido de fondo eliminado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/fr.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/fr.md new file mode 100644 index 000000000..fcf94d131 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/fr.md @@ -0,0 +1,15 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/fr.md) + +Le nœud ElevenLabs Voice Isolation supprime le bruit de fond d'un fichier audio, en isolant les voix ou la parole. Il envoie l'audio à l'API ElevenLabs pour traitement et renvoie l'audio nettoyé. + +## Entrées + +| Paramètre | Type de données | Obligatoire | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Oui | | Audio à traiter pour la suppression du bruit de fond. | + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | L'audio traité avec le bruit de fond supprimé. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ja.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ja.md new file mode 100644 index 000000000..a95f93258 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ja.md @@ -0,0 +1,15 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ja.md) + +ElevenLabs Voice Isolation ノードは、オーディオファイルから背景ノイズを除去し、ボーカルやスピーチを分離します。オーディオを ElevenLabs API に送信して処理し、クリーンなオーディオを返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | はい | | 背景ノイズ除去のために処理するオーディオ。 | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 背景ノイズが除去された処理済みオーディオ。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ko.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ko.md new file mode 100644 index 000000000..e1dc38d9c --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ko.md @@ -0,0 +1,15 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ko.md) + +ElevenLabs Voice Isolation 노드는 오디오 파일에서 배경 소음을 제거하여 보컬이나 음성을 분리합니다. 오디오를 ElevenLabs API로 전송하여 처리하고 정제된 오디오를 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 예 | | 배경 소음을 제거하기 위해 처리할 오디오입니다. | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 배경 소음이 제거된 처리된 오디오입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/pt-BR.md new file mode 100644 index 000000000..a446d0052 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/pt-BR.md @@ -0,0 +1,15 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/pt-BR.md) + +O nó ElevenLabs Voice Isolation remove ruídos de fundo de um arquivo de áudio, isolando os vocais ou a fala. Ele envia o áudio para a API da ElevenLabs para processamento e retorna o áudio limpo. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sim | | Áudio a ser processado para remoção de ruído de fundo. | + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | O áudio processado com o ruído de fundo removido. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ru.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ru.md new file mode 100644 index 000000000..eddc63a90 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ru.md @@ -0,0 +1,15 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/ru.md) + +Узел ElevenLabs Voice Isolation удаляет фоновый шум из аудиофайла, изолируя вокал или речь. Он отправляет аудио на обработку в API ElevenLabs и возвращает очищенный звук. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Да | | Аудио для обработки с целью удаления фонового шума. | + +## Выходы + +| Название выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Обработанное аудио с удалённым фоновым шумом. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/tr.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/tr.md new file mode 100644 index 000000000..2fa05c3de --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/tr.md @@ -0,0 +1,15 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/tr.md) + +ElevenLabs Ses İzolasyon düğümü, bir ses dosyasından arka plan gürültüsünü kaldırarak vokalleri veya konuşmayı izole eder. İşlem için sesi ElevenLabs API'sine gönderir ve temizlenmiş sesi döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Evet | | Arka plan gürültüsünün kaldırılması için işlenecek ses. | + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Arka plan gürültüsü kaldırılmış işlenmiş ses. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh-TW.md new file mode 100644 index 000000000..92015954a --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh-TW.md @@ -0,0 +1,15 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh-TW.md) + +此節點可從音訊檔案中移除背景噪音,隔離人聲或語音。它會將音訊發送至 ElevenLabs API 進行處理,並返回處理後的乾淨音訊。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | | 需要進行背景噪音移除處理的音訊。 | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 已移除背景噪音的處理後音訊。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh.md b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh.md new file mode 100644 index 000000000..ddac689d2 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh.md @@ -0,0 +1,15 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsAudioIsolation/zh.md) + +此节点可从音频文件中去除背景噪音,实现人声或语音的分离。它会将音频发送至 ElevenLabs API 进行处理,并返回降噪后的音频。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | | 需要进行背景噪音去除处理的音频。 | + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 经过处理、已去除背景噪音的音频。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ar.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ar.md new file mode 100644 index 000000000..2d9fdbaa3 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ar.md) + +عُقدة استنساخ الصوت الفوري من إيلفين لابس (ElevenLabs Instant Voice Clone) تُنشئ نموذج صوتي جديد وفريد من خلال تحليل ما بين 1 إلى 8 تسجيل صوتي لشخص ما. تُرسل هذه العينات إلى واجهة برمجة تطبيقات (API) إيلفين لابس، التي تعالجها لتوليد استنساخ صوتي يمكن استخدامه في توليف النص إلى كلام. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | نعم | من 1 إلى 8 ملفات | التسجيلات الصوتية لاستنساخ الصوت. يجب تقديم ما بين 1 و 8 ملف صوتي. | +| `remove_background_noise` | BOOLEAN | لا | صحيح / خطأ | إزالة ضوضاء الخلفية من عينات الصوت باستخدام عزل الصوت. (الافتراضي: خطأ) | + +**ملاحظة:** يجب تقديم ملف صوتي واحد على الأقل، ويمكن تقديم ما يصل إلى ثمانية ملفات. ستُنشئ العُقدة تلقائيًا فتحات إدخال للملفات الصوتية التي تضيفها. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | المُعرِّف الفريد لنموذج الصوت المستنسخ المُنشأ حديثًا. يمكن توصيل هذا المخرج بعُقد إيلفين لابس الأخرى لتوليف النص إلى كلام. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/en.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/en.md new file mode 100644 index 000000000..03b016c64 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/en.md) + +The ElevenLabs Instant Voice Clone node creates a new, unique voice model by analyzing 1 to 8 audio recordings of a person's voice. It sends these samples to the ElevenLabs API, which processes them to generate a voice clone that can be used for text-to-speech synthesis. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Yes | 1 to 8 files | Audio recordings for voice cloning. You must provide between 1 and 8 audio files. | +| `remove_background_noise` | BOOLEAN | No | True / False | Remove background noise from voice samples using audio isolation. (default: False) | + +**Note:** You must provide at least one audio file, and you can provide up to eight. The node will automatically create input slots for the audio files you add. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | The unique identifier for the newly created cloned voice model. This output can be connected to other ElevenLabs text-to-speech nodes. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/es.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/es.md new file mode 100644 index 000000000..8b22c4c97 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/es.md) + +El nodo ElevenLabs Instant Voice Clone crea un nuevo modelo de voz único mediante el análisis de 1 a 8 grabaciones de audio de la voz de una persona. Envía estas muestras a la API de ElevenLabs, que las procesa para generar un clon de voz que puede utilizarse para la síntesis de texto a voz. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Sí | 1 a 8 archivos | Grabaciones de audio para la clonación de voz. Debes proporcionar entre 1 y 8 archivos de audio. | +| `remove_background_noise` | BOOLEAN | No | True / False | Elimina el ruido de fondo de las muestras de voz mediante aislamiento de audio. (por defecto: False) | + +**Nota:** Debes proporcionar al menos un archivo de audio, y puedes proporcionar hasta ocho. El nodo creará automáticamente ranuras de entrada para los archivos de audio que añadas. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | El identificador único para el modelo de voz clonado recién creado. Esta salida puede conectarse a otros nodos de texto a voz de ElevenLabs. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/fr.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/fr.md new file mode 100644 index 000000000..d74f8c77d --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/fr.md @@ -0,0 +1,16 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/fr.md) + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Oui | 1 à 8 fichiers | Enregistrements audio pour le clonage vocal. Vous devez fournir entre 1 et 8 fichiers audio. | +| `remove_background_noise` | BOOLEAN | Non | Vrai / Faux | Supprime le bruit de fond des échantillons vocaux en utilisant l'isolation audio. (par défaut : Faux) | + +**Note :** Vous devez fournir au moins un fichier audio, et vous pouvez en fournir jusqu'à huit. Le nœud créera automatiquement des emplacements d'entrée pour les fichiers audio que vous ajoutez. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | L'identifiant unique du nouveau modèle vocal cloné créé. Cette sortie peut être connectée à d'autres nœuds de synthèse vocale ElevenLabs. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ja.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ja.md new file mode 100644 index 000000000..2dd9cbad5 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ja.md) + +ElevenLabs Instant Voice Cloneノードは、人物の声の1~8個の音声録音を分析することで、新しい独自の音声モデルを作成します。これらのサンプルをElevenLabs APIに送信し、処理を行うことで、テキスト読み上げ合成に使用できる音声クローンを生成します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | はい | 1~8ファイル | 音声クローニング用の音声録音です。1個から8個の音声ファイルを提供する必要があります。 | +| `remove_background_noise` | BOOLEAN | いいえ | True / False | 音声分離を使用して音声サンプルから背景ノイズを除去します。(デフォルト: False) | + +**注意:** 少なくとも1つの音声ファイルを提供する必要があり、最大8個まで提供できます。追加した音声ファイルに対して、ノードは自動的に入力スロットを作成します。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | 新しく作成されたクローン音声モデルの一意の識別子です。この出力は他のElevenLabsテキスト読み上げノードに接続できます。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ko.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ko.md new file mode 100644 index 000000000..68e6c7fdb --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ko.md) + +ElevenLabs Instant Voice Clone 노드는 한 사람의 목소리 녹음 파일 1개에서 8개를 분석하여 새로운 고유 음성 모델을 생성합니다. 이 노드는 샘플을 ElevenLabs API로 전송하며, API는 이를 처리하여 텍스트 음성 합성에 사용할 수 있는 음성 복제본을 생성합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | 예 | 1개 ~ 8개 파일 | 음성 복제에 사용할 오디오 녹음 파일입니다. 1개에서 8개 사이의 오디오 파일을 제공해야 합니다. | +| `remove_background_noise` | BOOLEAN | 아니요 | True / False | 오디오 분리 기술을 사용하여 음성 샘플의 배경 잡음을 제거합니다. (기본값: False) | + +**참고:** 최소한 하나의 오디오 파일을 제공해야 하며, 최대 여덟 개까지 제공할 수 있습니다. 노드는 추가한 오디오 파일에 대해 입력 슬롯을 자동으로 생성합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | 새로 생성된 복제 음성 모델의 고유 식별자입니다. 이 출력은 다른 ElevenLabs 텍스트 음성 합성 노드에 연결할 수 있습니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/pt-BR.md new file mode 100644 index 000000000..79893cae2 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/pt-BR.md) + +O nó ElevenLabs Instant Voice Clone cria um novo modelo de voz único analisando de 1 a 8 gravações de áudio da voz de uma pessoa. Ele envia essas amostras para a API da ElevenLabs, que as processa para gerar um clone de voz que pode ser usado para síntese de texto em fala. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Sim | 1 a 8 arquivos | Gravações de áudio para clonagem de voz. Você deve fornecer entre 1 e 8 arquivos de áudio. | +| `remove_background_noise` | BOOLEAN | Não | Verdadeiro / Falso | Remove ruído de fundo das amostras de voz usando isolamento de áudio. (padrão: Falso) | + +**Observação:** Você deve fornecer pelo menos um arquivo de áudio, podendo fornecer até oito. O nó criará automaticamente slots de entrada para os arquivos de áudio que você adicionar. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | O identificador único para o modelo de voz clonado recém-criado. Esta saída pode ser conectada a outros nós de texto em fala da ElevenLabs. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ru.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ru.md new file mode 100644 index 000000000..5e0dc2eff --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/ru.md) + +Узел ElevenLabs Instant Voice Clone создает новую, уникальную модель голоса, анализируя от 1 до 8 аудиозаписей голоса человека. Он отправляет эти образцы в API ElevenLabs, который обрабатывает их для создания клона голоса, который можно использовать для синтеза речи из текста. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Да | от 1 до 8 файлов | Аудиозаписи для клонирования голоса. Необходимо предоставить от 1 до 8 аудиофайлов. | +| `remove_background_noise` | BOOLEAN | Нет | True / False | Удалить фоновый шум из голосовых образцов с помощью изоляции аудио. (по умолчанию: False) | + +**Примечание:** Необходимо предоставить как минимум один аудиофайл, максимум — восемь. Узел автоматически создаст входные слоты для добавленных вами аудиофайлов. + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | Уникальный идентификатор для вновь созданной модели клонированного голоса. Этот выход можно подключить к другим узлам ElevenLabs для синтеза речи из текста. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/tr.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/tr.md new file mode 100644 index 000000000..daf084e85 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/tr.md) + +ElevenLabs Instant Voice Clone düğümü, bir kişinin sesine ait 1 ila 8 adet ses kaydını analiz ederek yeni ve benzersiz bir ses modeli oluşturur. Bu örnekleri ElevenLabs API'sine gönderir ve API, metinden sese sentez için kullanılabilecek bir ses klonu oluşturmak üzere bunları işler. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | Evet | 1 ila 8 dosya | Ses klonlama için ses kayıtları. 1 ila 8 arasında ses dosyası sağlamanız gerekir. | +| `remove_background_noise` | BOOLEAN | Hayır | True / False | Ses izolasyonu kullanarak ses örneklerinden arka plan gürültüsünü kaldırır. (varsayılan: False) | + +**Not:** En az bir ses dosyası sağlamanız gerekir ve en fazla sekiz dosya sağlayabilirsiniz. Düğüm, eklediğiniz ses dosyaları için otomatik olarak giriş yuvaları oluşturacaktır. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | Yeni oluşturulan klonlanmış ses modeli için benzersiz tanımlayıcı. Bu çıkış, diğer ElevenLabs metinden sese düğümlerine bağlanabilir. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh-TW.md new file mode 100644 index 000000000..289afec6e --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh-TW.md) + +此節點透過分析 1 至 8 段人聲錄音,創建一個全新且獨特的語音模型。它會將這些樣本發送至 ElevenLabs API 進行處理,以生成可用於文字轉語音合成的語音複製品。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | 是 | 1 至 8 個檔案 | 用於語音複製的音訊錄音。您必須提供 1 到 8 個音訊檔案。 | +| `remove_background_noise` | BOOLEAN | 否 | True / False | 使用音訊隔離技術從語音樣本中移除背景噪音。(預設值: False) | + +**注意:** 您必須提供至少一個音訊檔案,最多可提供八個。節點會根據您添加的音訊檔案自動創建輸入插槽。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | 新創建的複製語音模型的唯一識別碼。此輸出可連接至其他 ElevenLabs 文字轉語音節點。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh.md b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh.md new file mode 100644 index 000000000..f193f55c2 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsInstantVoiceClone/zh.md) + +ElevenLabs Instant Voice Clone 节点通过分析 1 到 8 段人声录音来创建一个新的、独特的语音模型。它会将这些样本发送到 ElevenLabs API,API 将处理这些样本以生成可用于文本转语音合成的语音克隆。 + +## 输入参数 + +| 参数 | 数据类型 | 必需 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio_*` | AUDIO | 是 | 1 到 8 个文件 | 用于语音克隆的音频录音。您必须提供 1 到 8 个音频文件。 | +| `remove_background_noise` | BOOLEAN | 否 | True / False | 使用音频隔离技术从语音样本中去除背景噪音。(默认值:False) | + +**注意:** 您必须提供至少一个音频文件,最多可提供八个。节点将根据您添加的音频文件自动创建输入槽。 + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `voice` | ELEVENLABS_VOICE | 新创建的克隆语音模型的唯一标识符。此输出可以连接到其他 ElevenLabs 文本转语音节点。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ar.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ar.md new file mode 100644 index 000000000..17e7fc2ac --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ar.md @@ -0,0 +1,23 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ar.md) + +# عقدة تحويل الكلام إلى كلام من ElevenLabs + +تقوم عقدة تحويل الكلام إلى كلام من ElevenLabs بتحويل ملف صوتي مُدخل من صوت إلى صوت آخر. تستخدم واجهة برمجة تطبيقات ElevenLabs لتحويل الكلام مع الحفاظ على المحتوى الأصلي والنبرة العاطفية للصوت. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | نعم | - | الصوت الهدف للتحويل. يتم التوصيل من أداة اختيار الصوت أو استنساخ الصوت الفوري. | +| `audio` | AUDIO | نعم | - | الصوت المصدر المطلوب تحويله. | +| `stability` | FLOAT | لا | 0.0 - 1.0 | ثبات الصوت. القيم الأقل تعطي نطاقاً عاطفياً أوسع، والقيم الأعلى تنتج كلاماً أكثر اتساقاً ولكنه قد يكون رتيباً (القيمة الافتراضية: 0.5). | +| `model` | DYNAMICCOMBO | لا | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | النموذج المستخدم لتحويل الكلام إلى كلام. يوفر كل خيار مجموعة محددة من إعدادات الصوت (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | لا | `"mp3_44100_192"`
`"opus_48000_192"` | تنسيق الصوت الناتج (القيمة الافتراضية: "mp3_44100_192"). | +| `seed` | INT | لا | 0 - 4294967295 | البذرة لإمكانية إعادة الإنتاج (القيمة الافتراضية: 0). | +| `remove_background_noise` | BOOLEAN | لا | - | إزالة ضوضاء الخلفية من الصوت المدخل باستخدام عزل الصوت (القيمة الافتراضية: False). | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | ملف الصوت المحول بالتنسيق المحدد للمخرج. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/en.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/en.md new file mode 100644 index 000000000..8214fcd58 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/en.md @@ -0,0 +1,21 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/en.md) + +The ElevenLabs Speech to Speech node transforms an input audio file from one voice to another. It uses the ElevenLabs API to convert speech while preserving the original content and emotional tone of the audio. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Yes | - | Target voice for the transformation. Connect from Voice Selector or Instant Voice Clone. | +| `audio` | AUDIO | Yes | - | Source audio to transform. | +| `stability` | FLOAT | No | 0.0 - 1.0 | Voice stability. Lower values give broader emotional range, higher values produce more consistent but potentially monotonous speech (default: 0.5). | +| `model` | DYNAMICCOMBO | No | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Model to use for speech-to-speech transformation. Each option provides a specific set of voice settings (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Audio output format (default: "mp3_44100_192"). | +| `seed` | INT | No | 0 - 4294967295 | Seed for reproducibility (default: 0). | +| `remove_background_noise` | BOOLEAN | No | - | Remove background noise from input audio using audio isolation (default: False). | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The transformed audio file in the specified output format. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/es.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/es.md new file mode 100644 index 000000000..1f3116c51 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/es.md @@ -0,0 +1,21 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/es.md) + +El nodo ElevenLabs Speech to Speech transforma un archivo de audio de entrada de una voz a otra. Utiliza la API de ElevenLabs para convertir el habla preservando el contenido original y el tono emocional del audio. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Sí | - | Voz objetivo para la transformación. Conectar desde el Selector de Voz o Clonación Instantánea de Voz. | +| `audio` | AUDIO | Sí | - | Audio fuente a transformar. | +| `stability` | FLOAT | No | 0.0 - 1.0 | Estabilidad de la voz. Valores más bajos dan un rango emocional más amplio, valores más altos producen un habla más consistente pero potencialmente monótona (por defecto: 0.5). | +| `model` | DYNAMICCOMBO | No | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Modelo a utilizar para la transformación de habla a habla. Cada opción proporciona un conjunto específico de ajustes de voz (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de salida de audio (por defecto: "mp3_44100_192"). | +| `seed` | INT | No | 0 - 4294967295 | Semilla para reproducibilidad (por defecto: 0). | +| `remove_background_noise` | BOOLEAN | No | - | Eliminar ruido de fondo del audio de entrada usando aislamiento de audio (por defecto: False). | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | El archivo de audio transformado en el formato de salida especificado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/fr.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/fr.md new file mode 100644 index 000000000..6447e5bac --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/fr.md @@ -0,0 +1,19 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/fr.md) + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Oui | - | Voix cible pour la transformation. À connecter depuis Voice Selector ou Instant Voice Clone. | +| `audio` | AUDIO | Oui | - | Audio source à transformer. | +| `stability` | FLOAT | Non | 0.0 - 1.0 | Stabilité de la voix. Des valeurs plus basses donnent une plage émotionnelle plus large, des valeurs plus élevées produisent une parole plus cohérente mais potentiellement monotone (par défaut : 0.5). | +| `model` | DYNAMICCOMBO | Non | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Modèle à utiliser pour la transformation parole-à-parole. Chaque option fournit un ensemble spécifique de paramètres vocaux (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | Non | `"mp3_44100_192"`
`"opus_48000_192"` | Format de sortie audio (par défaut : "mp3_44100_192"). | +| `seed` | INT | Non | 0 - 4294967295 | Graine pour la reproductibilité (par défaut : 0). | +| `remove_background_noise` | BOOLEAN | Non | - | Supprimer le bruit de fond de l'audio d'entrée en utilisant l'isolation audio (par défaut : False). | + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | Le fichier audio transformé dans le format de sortie spécifié. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ja.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ja.md new file mode 100644 index 000000000..c17429823 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ja.md @@ -0,0 +1,21 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ja.md) + +ElevenLabs Speech to Speech ノードは、入力された音声ファイルをある声から別の声へと変換します。ElevenLabs API を使用して音声を変換し、元の音声の内容と感情的なトーンを保持します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | はい | - | 変換先のターゲット音声。Voice Selector または Instant Voice Clone から接続します。 | +| `audio` | AUDIO | はい | - | 変換する元の音声。 | +| `stability` | FLOAT | いいえ | 0.0 - 1.0 | 音声の安定性。低い値は感情の幅を広げ、高い値はより一貫性のある音声を生成しますが、単調になる可能性があります(デフォルト: 0.5)。 | +| `model` | DYNAMICCOMBO | いいえ | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | 音声間変換に使用するモデル。各オプションは、特定の音声設定(similarity_boost, style, use_speaker_boost, speed)を提供します。 | +| `output_format` | COMBO | いいえ | `"mp3_44100_192"`
`"opus_48000_192"` | 音声出力フォーマット(デフォルト: "mp3_44100_192")。 | +| `seed` | INT | いいえ | 0 - 4294967295 | 再現性のためのシード値(デフォルト: 0)。 | +| `remove_background_noise` | BOOLEAN | いいえ | - | 音声分離を使用して入力音声から背景ノイズを除去します(デフォルト: False)。 | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 指定された出力フォーマットで変換された音声ファイル。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ko.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ko.md new file mode 100644 index 000000000..563bb2c53 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ko.md @@ -0,0 +1,21 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ko.md) + +ElevenLabs Speech to Speech 노드는 입력 오디오 파일의 음성을 다른 음성으로 변환합니다. ElevenLabs API를 사용하여 오디오의 원본 내용과 감정적 톤을 유지하면서 음성을 변환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 예 | - | 변환할 대상 음성입니다. Voice Selector 또는 Instant Voice Clone 노드에서 연결하세요. | +| `audio` | AUDIO | 예 | - | 변환할 원본 오디오입니다. | +| `stability` | FLOAT | 아니요 | 0.0 - 1.0 | 음성 안정성입니다. 값이 낮을수록 감정 표현 범위가 넓어지고, 값이 높을수록 더 일관되지만 단조로울 수 있는 음성을 생성합니다 (기본값: 0.5). | +| `model` | DYNAMICCOMBO | 아니요 | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | 음성 대 음성 변환에 사용할 모델입니다. 각 옵션은 음성 설정(유사성 부스트, 스타일, 화자 부스트 사용, 속도)의 특정 세트를 제공합니다. | +| `output_format` | COMBO | 아니요 | `"mp3_44100_192"`
`"opus_48000_192"` | 오디오 출력 형식입니다 (기본값: "mp3_44100_192"). | +| `seed` | INT | 아니요 | 0 - 4294967295 | 재현성을 위한 시드 값입니다 (기본값: 0). | +| `remove_background_noise` | BOOLEAN | 아니요 | - | 오디오 분리를 사용하여 입력 오디오의 배경 잡음을 제거합니다 (기본값: False). | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 지정된 출력 형식으로 변환된 오디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/pt-BR.md new file mode 100644 index 000000000..e034a09c4 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/pt-BR.md @@ -0,0 +1,21 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/pt-BR.md) + +O nó ElevenLabs Speech to Speech transforma um arquivo de áudio de entrada de uma voz para outra. Ele usa a API da ElevenLabs para converter a fala, preservando o conteúdo original e o tom emocional do áudio. + +## Entradas + +| Parâmetro | Tipo de Dado | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Sim | - | Voz de destino para a transformação. Conecte a partir do Seletor de Voz ou da Clonagem Instantânea de Voz. | +| `audio` | AUDIO | Sim | - | Áudio de origem a ser transformado. | +| `stability` | FLOAT | Não | 0.0 - 1.0 | Estabilidade da voz. Valores mais baixos proporcionam uma gama emocional mais ampla, valores mais altos produzem uma fala mais consistente, mas potencialmente monótona (padrão: 0.5). | +| `model` | DYNAMICCOMBO | Não | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Modelo a ser usado para a transformação de fala em fala. Cada opção fornece um conjunto específico de configurações de voz (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | Não | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de saída do áudio (padrão: "mp3_44100_192"). | +| `seed` | INT | Não | 0 - 4294967295 | Semente para reprodutibilidade (padrão: 0). | +| `remove_background_noise` | BOOLEAN | Não | - | Remove o ruído de fundo do áudio de entrada usando isolamento de áudio (padrão: False). | + +## Saídas + +| Nome da Saída | Tipo de Dado | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | O arquivo de áudio transformado no formato de saída especificado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ru.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ru.md new file mode 100644 index 000000000..299dd1cfd --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ru.md @@ -0,0 +1,21 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/ru.md) + +Узел ElevenLabs Speech to Speech преобразует входной аудиофайл из одного голоса в другой. Он использует API ElevenLabs для конвертации речи, сохраняя исходное содержание и эмоциональную окраску аудио. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Да | - | Целевой голос для преобразования. Подключите из узла Voice Selector или Instant Voice Clone. | +| `audio` | AUDIO | Да | - | Исходное аудио для преобразования. | +| `stability` | FLOAT | Нет | 0.0 - 1.0 | Стабильность голоса. Меньшие значения дают более широкий эмоциональный диапазон, большие значения производят более стабильную, но потенциально монотонную речь (по умолчанию: 0.5). | +| `model` | DYNAMICCOMBO | Нет | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Модель для преобразования речи в речь. Каждая опция предоставляет определённый набор настроек голоса (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | Нет | `"mp3_44100_192"`
`"opus_48000_192"` | Формат выходного аудио (по умолчанию: "mp3_44100_192"). | +| `seed` | INT | Нет | 0 - 4294967295 | Сид (начальное число) для воспроизводимости результатов (по умолчанию: 0). | +| `remove_background_noise` | BOOLEAN | Нет | - | Удалить фоновый шум из входного аудио с помощью изоляции звука (по умолчанию: False). | + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Преобразованный аудиофайл в указанном формате вывода. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/tr.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/tr.md new file mode 100644 index 000000000..a4fb49e87 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/tr.md @@ -0,0 +1,21 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/tr.md) + +ElevenLabs Speech to Speech düğümü, bir giriş ses dosyasını bir sesten diğerine dönüştürür. Orijinal sesin içeriğini ve duygusal tonunu koruyarak konuşmayı dönüştürmek için ElevenLabs API'sini kullanır. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Evet | - | Dönüşüm için hedef ses. Voice Selector veya Instant Voice Clone'dan bağlayın. | +| `audio` | AUDIO | Evet | - | Dönüştürülecek kaynak ses. | +| `stability` | FLOAT | Hayır | 0.0 - 1.0 | Ses kararlılığı. Düşük değerler daha geniş bir duygusal aralık sağlar, yüksek değerler daha tutarlı ancak potansiyel olarak monoton bir konuşma üretir (varsayılan: 0.5). | +| `model` | DYNAMICCOMBO | Hayır | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | Konuşmadan-konuşmaya dönüşüm için kullanılacak model. Her seçenek belirli bir ses ayarları kümesi sağlar (similarity_boost, style, use_speaker_boost, speed). | +| `output_format` | COMBO | Hayır | `"mp3_44100_192"`
`"opus_48000_192"` | Ses çıkış formatı (varsayılan: "mp3_44100_192"). | +| `seed` | INT | Hayır | 0 - 4294967295 | Tekrarlanabilirlik için tohum değeri (varsayılan: 0). | +| `remove_background_noise` | BOOLEAN | Hayır | - | Giriş sesinden ses izolasyonu kullanarak arka plan gürültüsünü kaldırır (varsayılan: False). | + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Belirtilen çıkış formatındaki dönüştürülmüş ses dosyası. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh-TW.md new file mode 100644 index 000000000..932d08a43 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh-TW.md @@ -0,0 +1,21 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh-TW.md) + +此節點將輸入的音訊檔案從一個聲音轉換為另一個聲音。它使用 ElevenLabs API 來轉換語音,同時保留原始音訊的內容和情感基調。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 是 | - | 轉換的目標聲音。請從 Voice Selector 或 Instant Voice Clone 節點連接。 | +| `audio` | AUDIO | 是 | - | 要轉換的來源音訊。 | +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 聲音穩定性。較低的值提供更廣泛的情感範圍,較高的值產生更一致但可能單調的語音(預設值:0.5)。 | +| `model` | DYNAMICCOMBO | 否 | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | 用於語音轉語音轉換的模型。每個選項提供一組特定的聲音設定(相似度增強、風格、使用說話者增強、速度)。 | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音訊輸出格式(預設值:"mp3_44100_192")。 | +| `seed` | INT | 否 | 0 - 4294967295 | 用於重現性的種子值(預設值:0)。 | +| `remove_background_noise` | BOOLEAN | 否 | - | 使用音訊隔離功能移除輸入音訊中的背景噪音(預設值:False)。 | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 以指定輸出格式轉換後的音訊檔案。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh.md new file mode 100644 index 000000000..8d6eb6660 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh.md @@ -0,0 +1,21 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToSpeech/zh.md) + +ElevenLabs 语音转语音节点可将输入的音频文件从一种声音转换为另一种声音。它利用 ElevenLabs API 进行语音转换,同时保留音频的原始内容和情感基调。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 是 | - | 转换的目标声音。请从 Voice Selector 或 Instant Voice Clone 节点连接。 | +| `audio` | AUDIO | 是 | - | 待转换的源音频。 | +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 语音稳定性。较低的值提供更广的情感范围,较高的值产生更一致但可能单调的语音(默认值:0.5)。 | +| `model` | DYNAMICCOMBO | 否 | `eleven_multilingual_sts_v2`
`eleven_english_sts_v2` | 用于语音转语音转换的模型。每个选项提供一组特定的语音设置(similarity_boost、style、use_speaker_boost、speed)。 | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音频输出格式(默认值:"mp3_44100_192")。 | +| `seed` | INT | 否 | 0 - 4294967295 | 用于确保结果可复现的随机种子(默认值:0)。 | +| `remove_background_noise` | BOOLEAN | 否 | - | 使用音频隔离技术去除输入音频中的背景噪音(默认值:False)。 | + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 转换后的音频文件,格式为指定的输出格式。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ar.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ar.md new file mode 100644 index 000000000..3f23c526a --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ar.md @@ -0,0 +1,28 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ar.md) + +عقدة ElevenLabs Speech to Text تقوم بتحويل الملفات الصوتية إلى نص مكتوب. تستخدم واجهة برمجة التطبيقات (API) من ElevenLabs لتحويل الكلمات المنطوقة إلى نص مكتوب، مع دعم ميزات مثل الكشف التلقائي عن اللغة، وتحديد المتحدثين المختلفين، ووضع علامات على الأصوات غير الكلامية مثل الموسيقى أو الضحك. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | نعم | - | الملف الصوتي المراد تحويله إلى نص. | +| `model` | COMBO | نعم | `"scribe_v2"` | النموذج المستخدم في عملية التحويل إلى نص. اختيار هذا النموذج يكشف عن معاملات إضافية. | +| `tag_audio_events` | BOOLEAN | لا | - | وضع تعليقات توضيحية على الأصوات مثل (ضحك)، (موسيقى)، إلخ في النص. يظهر هذا المعامل عند اختيار نموذج `"scribe_v2"`. (القيمة الافتراضية: False) | +| `diarize` | BOOLEAN | لا | - | وضع تعليقات توضيحية تشير إلى المتحدث. يظهر هذا المعامل عند اختيار نموذج `"scribe_v2"`. (القيمة الافتراضية: False) | +| `diarization_threshold` | FLOAT | لا | 0.1 - 0.4 | حساسية فصل المتحدثين. القيم الأقل تعني حساسية أكبر لتغيير المتحدث. يظهر هذا المعامل عند اختيار نموذج `"scribe_v2"` وتمكين خيار `diarize`. (القيمة الافتراضية: 0.22) | +| `temperature` | FLOAT | لا | 0.0 - 2.0 | التحكم في العشوائية. القيمة 0.0 تستخدم الإعداد الافتراضي للنموذج. القيم الأعلى تزيد من العشوائية. يظهر هذا المعامل عند اختيار نموذج `"scribe_v2"`. (القيمة الافتراضية: 0.0) | +| `timestamps_granularity` | COMBO | لا | `"word"`
`"character"`
`"none"` | دقة التوقيت الزمني للكلمات في النص. يظهر هذا المعامل عند اختيار نموذج `"scribe_v2"`. (القيمة الافتراضية: "word") | +| `language_code` | STRING | لا | - | رمز اللغة وفقًا لمعيار ISO-639-1 أو ISO-639-3 (مثل 'en'، 'es'، 'fra'). اتركه فارغًا للكشف التلقائي. (القيمة الافتراضية: "") | +| `num_speakers` | INT | لا | 0 - 32 | الحد الأقصى لعدد المتحدثين المتوقعين. اضبط على 0 للكشف التلقائي. (القيمة الافتراضية: 0) | +| `seed` | INT | لا | 0 - 2147483647 | البذرة (Seed) لضمان إمكانية إعادة النتائج (لا يوجد ضمان للنتائج الحتمية). (القيمة الافتراضية: 1) | + +**ملاحظة:** لا يمكن تعيين المعامل `num_speakers` إلى قيمة أكبر من 0 عند تمكين خيار `diarize`. يجب إما تعطيل `diarize` أو تعيين `num_speakers` إلى 0. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `text` | STRING | النص الناتج من تحويل الصوت. | +| `language_code` | STRING | رمز اللغة المكتشف للملف الصوتي. | +| `words_json` | STRING | سلسلة نصية بتنسيق JSON تحتوي على معلومات مفصلة على مستوى الكلمات، بما في ذلك الطوابع الزمنية وتسميات المتحدثين إذا تم تمكينها. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/en.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/en.md new file mode 100644 index 000000000..86ff719da --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/en.md @@ -0,0 +1,28 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/en.md) + +The ElevenLabs Speech to Text node transcribes audio files into text. It uses ElevenLabs' API to convert spoken words into a written transcript, supporting features like automatic language detection, identifying different speakers, and tagging non-speech sounds like music or laughter. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Yes | - | Audio to transcribe. | +| `model` | COMBO | Yes | `"scribe_v2"` | Model to use for transcription. Selecting this model reveals additional parameters. | +| `tag_audio_events` | BOOLEAN | No | - | Annotate sounds like (laughter), (music), etc. in transcript. This parameter is revealed when the `"scribe_v2"` model is selected. (default: False) | +| `diarize` | BOOLEAN | No | - | Annotate which speaker is talking. This parameter is revealed when the `"scribe_v2"` model is selected. (default: False) | +| `diarization_threshold` | FLOAT | No | 0.1 - 0.4 | Speaker separation sensitivity. Lower values are more sensitive to speaker changes. This parameter is revealed when the `"scribe_v2"` model is selected and `diarize` is enabled. (default: 0.22) | +| `temperature` | FLOAT | No | 0.0 - 2.0 | Randomness control. 0.0 uses model default. Higher values increase randomness. This parameter is revealed when the `"scribe_v2"` model is selected. (default: 0.0) | +| `timestamps_granularity` | COMBO | No | `"word"`
`"character"`
`"none"` | Timing precision for transcript words. This parameter is revealed when the `"scribe_v2"` model is selected. (default: "word") | +| `language_code` | STRING | No | - | ISO-639-1 or ISO-639-3 language code (e.g., 'en', 'es', 'fra'). Leave empty for automatic detection. (default: "") | +| `num_speakers` | INT | No | 0 - 32 | Maximum number of speakers to predict. Set to 0 for automatic detection. (default: 0) | +| `seed` | INT | No | 0 - 2147483647 | Seed for reproducibility (determinism not guaranteed). (default: 1) | + +**Note:** The `num_speakers` parameter cannot be set to a value greater than 0 when the `diarize` option is enabled. You must either disable `diarize` or set `num_speakers` to 0. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `text` | STRING | The transcribed text from the audio. | +| `language_code` | STRING | The detected language code of the audio. | +| `words_json` | STRING | A JSON-formatted string containing detailed word-level information, including timestamps and speaker labels if enabled. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/es.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/es.md new file mode 100644 index 000000000..a309bbea0 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/es.md @@ -0,0 +1,28 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/es.md) + +El nodo ElevenLabs Speech to Text transcribe archivos de audio a texto. Utiliza la API de ElevenLabs para convertir palabras habladas en una transcripción escrita, admitiendo funciones como detección automática de idioma, identificación de diferentes hablantes y etiquetado de sonidos no verbales como música o risas. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sí | - | Audio a transcribir. | +| `model` | COMBO | Sí | `"scribe_v2"` | Modelo a utilizar para la transcripción. Seleccionar este modelo revela parámetros adicionales. | +| `tag_audio_events` | BOOLEAN | No | - | Anota sonidos como (risas), (música), etc. en la transcripción. Este parámetro se revela cuando se selecciona el modelo `"scribe_v2"`. (valor por defecto: Falso) | +| `diarize` | BOOLEAN | No | - | Anota qué hablante está hablando. Este parámetro se revela cuando se selecciona el modelo `"scribe_v2"`. (valor por defecto: Falso) | +| `diarization_threshold` | FLOAT | No | 0.1 - 0.4 | Sensibilidad de separación de hablantes. Valores más bajos son más sensibles a los cambios de hablante. Este parámetro se revela cuando se selecciona el modelo `"scribe_v2"` y `diarize` está habilitado. (valor por defecto: 0.22) | +| `temperature` | FLOAT | No | 0.0 - 2.0 | Control de aleatoriedad. 0.0 usa el valor por defecto del modelo. Valores más altos aumentan la aleatoriedad. Este parámetro se revela cuando se selecciona el modelo `"scribe_v2"`. (valor por defecto: 0.0) | +| `timestamps_granularity` | COMBO | No | `"word"`
`"character"`
`"none"` | Precisión de temporización para las palabras de la transcripción. Este parámetro se revela cuando se selecciona el modelo `"scribe_v2"`. (valor por defecto: "word") | +| `language_code` | STRING | No | - | Código de idioma ISO-639-1 o ISO-639-3 (ej., 'en', 'es', 'fra'). Déjelo vacío para detección automática. (valor por defecto: "") | +| `num_speakers` | INT | No | 0 - 32 | Número máximo de hablantes a predecir. Establezca en 0 para detección automática. (valor por defecto: 0) | +| `seed` | INT | No | 0 - 2147483647 | Semilla para reproducibilidad (no se garantiza determinismo). (valor por defecto: 1) | + +**Nota:** El parámetro `num_speakers` no puede establecerse en un valor mayor que 0 cuando la opción `diarize` está habilitada. Debe deshabilitar `diarize` o establecer `num_speakers` en 0. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `text` | STRING | El texto transcrito del audio. | +| `language_code` | STRING | El código de idioma detectado del audio. | +| `words_json` | STRING | Una cadena con formato JSON que contiene información detallada a nivel de palabra, incluyendo marcas de tiempo y etiquetas de hablante si están habilitadas. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/fr.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/fr.md new file mode 100644 index 000000000..8c48c18e9 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/fr.md @@ -0,0 +1,28 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/fr.md) + +Le nœud ElevenLabs Speech to Text (Reconnaissance vocale) retranscrit des fichiers audio en texte. Il utilise l'API d'ElevenLabs pour convertir la parole en une transcription écrite, prenant en charge des fonctionnalités comme la détection automatique de la langue, l'identification des différents locuteurs et l'étiquetage des sons non vocaux comme la musique ou les rires. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Oui | - | Audio à transcrire. | +| `model` | COMBO | Oui | `"scribe_v2"` | Modèle à utiliser pour la transcription. La sélection de ce modèle révèle des paramètres supplémentaires. | +| `tag_audio_events` | BOOLEAN | Non | - | Annote les sons comme (rire), (musique), etc. dans la transcription. Ce paramètre est révélé lorsque le modèle `"scribe_v2"` est sélectionné. (par défaut : Faux) | +| `diarize` | BOOLEAN | Non | - | Annote quel locuteur parle. Ce paramètre est révélé lorsque le modèle `"scribe_v2"` est sélectionné. (par défaut : Faux) | +| `diarization_threshold` | FLOAT | Non | 0.1 - 0.4 | Sensibilité de la séparation des locuteurs. Des valeurs plus basses sont plus sensibles aux changements de locuteur. Ce paramètre est révélé lorsque le modèle `"scribe_v2"` est sélectionné et que `diarize` est activé. (par défaut : 0.22) | +| `temperature` | FLOAT | Non | 0.0 - 2.0 | Contrôle de l'aléatoire. 0.0 utilise la valeur par défaut du modèle. Des valeurs plus élevées augmentent l'aléatoire. Ce paramètre est révélé lorsque le modèle `"scribe_v2"` est sélectionné. (par défaut : 0.0) | +| `timestamps_granularity` | COMBO | Non | `"word"`
`"character"`
`"none"` | Précision du minutage pour les mots de la transcription. Ce paramètre est révélé lorsque le modèle `"scribe_v2"` est sélectionné. (par défaut : "word") | +| `language_code` | STRING | Non | - | Code de langue ISO-639-1 ou ISO-639-3 (par ex., 'en', 'es', 'fra'). Laisser vide pour une détection automatique. (par défaut : "") | +| `num_speakers` | INT | Non | 0 - 32 | Nombre maximum de locuteurs à prédire. Régler à 0 pour une détection automatique. (par défaut : 0) | +| `seed` | INT | Non | 0 - 2147483647 | Graine pour la reproductibilité (la déterminisme n'est pas garantie). (par défaut : 1) | + +**Note :** Le paramètre `num_speakers` ne peut pas être défini sur une valeur supérieure à 0 lorsque l'option `diarize` est activée. Vous devez soit désactiver `diarize`, soit définir `num_speakers` sur 0. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `text` | STRING | Le texte transcrit de l'audio. | +| `language_code` | STRING | Le code de langue détecté de l'audio. | +| `words_json` | STRING | Une chaîne de caractères au format JSON contenant des informations détaillées au niveau des mots, y compris les horodatages et les étiquettes de locuteur si activées. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ja.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ja.md new file mode 100644 index 000000000..df7c7b45b --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ja.md @@ -0,0 +1,28 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ja.md) + +ElevenLabs Speech to Text ノードは、音声ファイルをテキストに書き起こします。ElevenLabs の API を使用して話し言葉を書き起こしテキストに変換し、自動言語検出、異なる話者の識別、音楽や笑い声などの非音声のタグ付けなどの機能をサポートします。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | はい | - | 書き起こす音声データです。 | +| `model` | COMBO | はい | `"scribe_v2"` | 書き起こしに使用するモデルです。このモデルを選択すると、追加のパラメータが表示されます。 | +| `tag_audio_events` | BOOLEAN | いいえ | - | 書き起こし文内の(笑い声)、(音楽)などの音を注釈付けします。このパラメータは `"scribe_v2"` モデルが選択されたときに表示されます。(デフォルト: False) | +| `diarize` | BOOLEAN | いいえ | - | 誰が話しているかを注釈付けします。このパラメータは `"scribe_v2"` モデルが選択されたときに表示されます。(デフォルト: False) | +| `diarization_threshold` | FLOAT | いいえ | 0.1 - 0.4 | 話者分離の感度です。値が低いほど話者の変化に対してより敏感になります。このパラメータは `"scribe_v2"` モデルが選択され、かつ `diarize` が有効なときに表示されます。(デフォルト: 0.22) | +| `temperature` | FLOAT | いいえ | 0.0 - 2.0 | ランダム性の制御です。0.0 はモデルのデフォルトを使用します。値が高いほどランダム性が増します。このパラメータは `"scribe_v2"` モデルが選択されたときに表示されます。(デフォルト: 0.0) | +| `timestamps_granularity` | COMBO | いいえ | `"word"`
`"character"`
`"none"` | 書き起こし単語のタイミング精度です。このパラメータは `"scribe_v2"` モデルが選択されたときに表示されます。(デフォルト: "word") | +| `language_code` | STRING | いいえ | - | ISO-639-1 または ISO-639-3 言語コード(例: 'en', 'es', 'fra')。自動検出の場合は空欄のままにします。(デフォルト: "") | +| `num_speakers` | INT | いいえ | 0 - 32 | 予測する最大話者数です。自動検出の場合は 0 に設定します。(デフォルト: 0) | +| `seed` | INT | いいえ | 0 - 2147483647 | 再現性のためのシード値です(決定性は保証されません)。(デフォルト: 1) | + +**注意:** `diarize` オプションが有効な場合、`num_speakers` パラメータを 0 より大きい値に設定することはできません。`diarize` を無効にするか、`num_speakers` を 0 に設定する必要があります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `text` | STRING | 音声から書き起こされたテキストです。 | +| `language_code` | STRING | 音声の検出された言語コードです。 | +| `words_json` | STRING | タイムスタンプや話者ラベル(有効な場合)を含む詳細な単語レベルの情報を格納した JSON 形式の文字列です。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ko.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ko.md new file mode 100644 index 000000000..bc87e8353 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ko.md @@ -0,0 +1,28 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ko.md) + +ElevenLabs Speech to Text 노드는 오디오 파일을 텍스트로 전사합니다. ElevenLabs의 API를 사용하여 음성을 문자 기록으로 변환하며, 자동 언어 감지, 다른 화자 식별, 음악이나 웃음과 같은 비언어적 소리 태그 지정과 같은 기능을 지원합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 예 | - | 전사할 오디오입니다. | +| `model` | COMBO | 예 | `"scribe_v2"` | 전사에 사용할 모델입니다. 이 모델을 선택하면 추가 매개변수가 표시됩니다. | +| `tag_audio_events` | BOOLEAN | 아니요 | - | 전사본에 (웃음), (음악) 등의 소리를 주석으로 추가합니다. 이 매개변수는 `"scribe_v2"` 모델이 선택되었을 때 표시됩니다. (기본값: False) | +| `diarize` | BOOLEAN | 아니요 | - | 어떤 화자가 말하는지 주석을 추가합니다. 이 매개변수는 `"scribe_v2"` 모델이 선택되었을 때 표시됩니다. (기본값: False) | +| `diarization_threshold` | FLOAT | 아니요 | 0.1 - 0.4 | 화자 분리 민감도입니다. 값이 낮을수록 화자 변경에 더 민감합니다. 이 매개변수는 `"scribe_v2"` 모델이 선택되고 `diarize`가 활성화되었을 때 표시됩니다. (기본값: 0.22) | +| `temperature` | FLOAT | 아니요 | 0.0 - 2.0 | 무작위성 제어입니다. 0.0은 모델 기본값을 사용합니다. 값이 높을수록 무작위성이 증가합니다. 이 매개변수는 `"scribe_v2"` 모델이 선택되었을 때 표시됩니다. (기본값: 0.0) | +| `timestamps_granularity` | COMBO | 아니요 | `"word"`
`"character"`
`"none"` | 전사된 단어의 타이밍 정밀도입니다. 이 매개변수는 `"scribe_v2"` 모델이 선택되었을 때 표시됩니다. (기본값: "word") | +| `language_code` | STRING | 아니요 | - | ISO-639-1 또는 ISO-639-3 언어 코드입니다 (예: 'en', 'es', 'fra'). 자동 감지를 위해서는 비워 두세요. (기본값: "") | +| `num_speakers` | INT | 아니요 | 0 - 32 | 예측할 최대 화자 수입니다. 자동 감지를 위해서는 0으로 설정하세요. (기본값: 0) | +| `seed` | INT | 아니요 | 0 - 2147483647 | 재현성을 위한 시드입니다 (결정론적 보장은 없음). (기본값: 1) | + +**참고:** `diarize` 옵션이 활성화된 상태에서는 `num_speakers` 매개변수를 0보다 큰 값으로 설정할 수 없습니다. `diarize`를 비활성화하거나 `num_speakers`를 0으로 설정해야 합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `text` | STRING | 오디오에서 전사된 텍스트입니다. | +| `language_code` | STRING | 오디오에서 감지된 언어 코드입니다. | +| `words_json` | STRING | 타임스탬프 및 활성화된 경우 화자 레이블을 포함한 상세한 단어 수준 정보가 담긴 JSON 형식의 문자열입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/pt-BR.md new file mode 100644 index 000000000..fa0c9010d --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/pt-BR.md @@ -0,0 +1,28 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/pt-BR.md) + +O nó ElevenLabs Speech to Text transcreve arquivos de áudio em texto. Ele utiliza a API da ElevenLabs para converter palavras faladas em uma transcrição escrita, suportando recursos como detecção automática de idioma, identificação de diferentes falantes e marcação de sons não verbais, como música ou risadas. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Sim | - | Áudio a ser transcrito. | +| `model` | COMBO | Sim | `"scribe_v2"` | Modelo a ser usado para a transcrição. Selecionar este modelo revela parâmetros adicionais. | +| `tag_audio_events` | BOOLEAN | Não | - | Anota sons como (risadas), (música), etc. na transcrição. Este parâmetro é revelado quando o modelo `"scribe_v2"` é selecionado. (padrão: Falso) | +| `diarize` | BOOLEAN | Não | - | Anota qual falante está falando. Este parâmetro é revelado quando o modelo `"scribe_v2"` é selecionado. (padrão: Falso) | +| `diarization_threshold` | FLOAT | Não | 0.1 - 0.4 | Sensibilidade da separação de falantes. Valores mais baixos são mais sensíveis a mudanças de falante. Este parâmetro é revelado quando o modelo `"scribe_v2"` é selecionado e `diarize` está habilitado. (padrão: 0.22) | +| `temperature` | FLOAT | Não | 0.0 - 2.0 | Controle de aleatoriedade. 0.0 usa o padrão do modelo. Valores mais altos aumentam a aleatoriedade. Este parâmetro é revelado quando o modelo `"scribe_v2"` é selecionado. (padrão: 0.0) | +| `timestamps_granularity` | COMBO | Não | `"word"`
`"character"`
`"none"` | Precisão de temporização para as palavras da transcrição. Este parâmetro é revelado quando o modelo `"scribe_v2"` é selecionado. (padrão: "word") | +| `language_code` | STRING | Não | - | Código de idioma ISO-639-1 ou ISO-639-3 (ex.: 'en', 'es', 'fra'). Deixe vazio para detecção automática. (padrão: "") | +| `num_speakers` | INT | Não | 0 - 32 | Número máximo de falantes a prever. Defina como 0 para detecção automática. (padrão: 0) | +| `seed` | INT | Não | 0 - 2147483647 | Semente para reprodutibilidade (determinismo não garantido). (padrão: 1) | + +**Observação:** O parâmetro `num_speakers` não pode ser definido com um valor maior que 0 quando a opção `diarize` está habilitada. Você deve desabilitar `diarize` ou definir `num_speakers` como 0. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `text` | STRING | O texto transcrito do áudio. | +| `language_code` | STRING | O código de idioma detectado do áudio. | +| `words_json` | STRING | Uma string formatada em JSON contendo informações detalhadas em nível de palavra, incluindo timestamps e rótulos de falante, se habilitados. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ru.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ru.md new file mode 100644 index 000000000..d97ef399a --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ru.md @@ -0,0 +1,28 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/ru.md) + +Узел ElevenLabs Speech to Text преобразует аудиофайлы в текст. Он использует API ElevenLabs для перевода устной речи в письменную транскрипцию, поддерживая такие функции, как автоматическое определение языка, идентификация разных говорящих и пометка неречевых звуков, таких как музыка или смех. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Да | - | Аудио для транскрипции. | +| `model` | COMBO | Да | `"scribe_v2"` | Модель, используемая для транскрипции. Выбор этой модели открывает дополнительные параметры. | +| `tag_audio_events` | BOOLEAN | Нет | - | Аннотировать звуки, такие как (смех), (музыка) и т.д., в транскрипции. Этот параметр отображается при выборе модели `"scribe_v2"`. (по умолчанию: False) | +| `diarize` | BOOLEAN | Нет | - | Аннотировать, какой говорящий говорит. Этот параметр отображается при выборе модели `"scribe_v2"`. (по умолчанию: False) | +| `diarization_threshold` | FLOAT | Нет | 0.1 - 0.4 | Чувствительность разделения говорящих. Более низкие значения более чувствительны к смене говорящего. Этот параметр отображается при выборе модели `"scribe_v2"` и включении опции `diarize`. (по умолчанию: 0.22) | +| `temperature` | FLOAT | Нет | 0.0 - 2.0 | Управление случайностью. 0.0 использует значение по умолчанию модели. Более высокие значения увеличивают случайность. Этот параметр отображается при выборе модели `"scribe_v2"`. (по умолчанию: 0.0) | +| `timestamps_granularity` | COMBO | Нет | `"word"`
`"character"`
`"none"` | Точность временных меток для слов в транскрипции. Этот параметр отображается при выборе модели `"scribe_v2"`. (по умолчанию: "word") | +| `language_code` | STRING | Нет | - | Код языка ISO-639-1 или ISO-639-3 (например, 'en', 'es', 'fra'). Оставьте пустым для автоматического определения. (по умолчанию: "") | +| `num_speakers` | INT | Нет | 0 - 32 | Максимальное количество говорящих для предсказания. Установите 0 для автоматического определения. (по умолчанию: 0) | +| `seed` | INT | Нет | 0 - 2147483647 | Сид (начальное число) для воспроизводимости (детерминизм не гарантирован). (по умолчанию: 1) | + +**Примечание:** Параметр `num_speakers` не может быть установлен в значение больше 0, когда включена опция `diarize`. Вы должны либо отключить `diarize`, либо установить `num_speakers` в 0. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `text` | STRING | Транскрибированный текст из аудио. | +| `language_code` | STRING | Определенный код языка аудио. | +| `words_json` | STRING | Строка в формате JSON, содержащая подробную информацию на уровне слов, включая временные метки и метки говорящих, если они включены. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/tr.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/tr.md new file mode 100644 index 000000000..bd37cacad --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/tr.md @@ -0,0 +1,28 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/tr.md) + +ElevenLabs Speech to Text düğümü, ses dosyalarını metne dönüştürür. ElevenLabs'ın API'sini kullanarak konuşulan kelimeleri yazılı bir transkripte çevirir; otomatik dil algılama, farklı konuşmacıları tanımlama ve müzik veya kahkaha gibi konuşma dışı sesleri etiketleme gibi özellikleri destekler. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | Evet | - | Transkripte dönüştürülecek ses. | +| `model` | COMBO | Evet | `"scribe_v2"` | Transkripsiyon için kullanılacak model. Bu model seçildiğinde ek parametreler görünür. | +| `tag_audio_events` | BOOLEAN | Hayır | - | Transkriptte (kahkaha), (müzik) vb. sesleri notlandırır. Bu parametre, `"scribe_v2"` modeli seçildiğinde görünür. (varsayılan: False) | +| `diarize` | BOOLEAN | Hayır | - | Hangi konuşmacının konuştuğunu notlandırır. Bu parametre, `"scribe_v2"` modeli seçildiğinde görünür. (varsayılan: False) | +| `diarization_threshold` | FLOAT | Hayır | 0.1 - 0.4 | Konuşmacı ayrımı hassasiyeti. Düşük değerler, konuşmacı değişikliklerine karşı daha hassastır. Bu parametre, `"scribe_v2"` modeli seçildiğinde ve `diarize` etkinleştirildiğinde görünür. (varsayılan: 0.22) | +| `temperature` | FLOAT | Hayır | 0.0 - 2.0 | Rastgelelik kontrolü. 0.0 modelin varsayılanını kullanır. Daha yüksek değerler rastgeleliği artırır. Bu parametre, `"scribe_v2"` modeli seçildiğinde görünür. (varsayılan: 0.0) | +| `timestamps_granularity` | COMBO | Hayır | `"word"`
`"character"`
`"none"` | Transkript kelimeleri için zaman damgası hassasiyeti. Bu parametre, `"scribe_v2"` modeli seçildiğinde görünür. (varsayılan: "word") | +| `language_code` | STRING | Hayır | - | ISO-639-1 veya ISO-639-3 dil kodu (örn., 'en', 'es', 'fra'). Otomatik algılama için boş bırakın. (varsayılan: "") | +| `num_speakers` | INT | Hayır | 0 - 32 | Tahmin edilecek maksimum konuşmacı sayısı. Otomatik algılama için 0 olarak ayarlayın. (varsayılan: 0) | +| `seed` | INT | Hayır | 0 - 2147483647 | Tekrarlanabilirlik için tohum (determinizm garanti edilmez). (varsayılan: 1) | + +**Not:** `diarize` seçeneği etkinleştirildiğinde, `num_speakers` parametresi 0'dan büyük bir değere ayarlanamaz. Ya `diarize`'ı devre dışı bırakmalı ya da `num_speakers`'ı 0 olarak ayarlamalısınız. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `text` | STRING | Sesten transkripte dönüştürülen metin. | +| `language_code` | STRING | Sesin algılanan dil kodu. | +| `words_json` | STRING | Zaman damgaları ve etkinleştirilmişse konuşmacı etiketleri de dahil olmak üzere ayrıntılı kelime düzeyinde bilgiler içeren JSON formatlı bir dize. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh-TW.md new file mode 100644 index 000000000..77313a8d6 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh-TW.md @@ -0,0 +1,28 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh-TW.md) + +ElevenLabs 語音轉文字節點將音訊檔案轉錄為文字。它使用 ElevenLabs 的 API 將口語轉換為書面文字稿,支援自動語言偵測、識別不同說話者以及標記非語音聲音(如音樂或笑聲)等功能。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | - | 要轉錄的音訊。 | +| `model` | COMBO | 是 | `"scribe_v2"` | 用於轉錄的模型。選擇此模型會顯示額外參數。 | +| `tag_audio_events` | BOOLEAN | 否 | - | 在文字稿中標註聲音,例如(笑聲)、(音樂)等。當選擇 `"scribe_v2"` 模型時,此參數會顯示。(預設值:False) | +| `diarize` | BOOLEAN | 否 | - | 標註正在說話的說話者。當選擇 `"scribe_v2"` 模型時,此參數會顯示。(預設值:False) | +| `diarization_threshold` | FLOAT | 否 | 0.1 - 0.4 | 說話者分離靈敏度。數值越低,對說話者變化的偵測越靈敏。當選擇 `"scribe_v2"` 模型且啟用 `diarize` 時,此參數會顯示。(預設值:0.22) | +| `temperature` | FLOAT | 否 | 0.0 - 2.0 | 隨機性控制。0.0 使用模型預設值。數值越高,隨機性越大。當選擇 `"scribe_v2"` 模型時,此參數會顯示。(預設值:0.0) | +| `timestamps_granularity` | COMBO | 否 | `"word"`
`"character"`
`"none"` | 文字稿單詞的時間戳記精確度。當選擇 `"scribe_v2"` 模型時,此參數會顯示。(預設值:"word") | +| `language_code` | STRING | 否 | - | ISO-639-1 或 ISO-639-3 語言代碼(例如 'en'、'es'、'fra')。留空則自動偵測。(預設值:"") | +| `num_speakers` | INT | 否 | 0 - 32 | 要預測的最大說話者數量。設為 0 則自動偵測。(預設值:0) | +| `seed` | INT | 否 | 0 - 2147483647 | 用於重現性的種子(不保證確定性)。(預設值:1) | + +**注意:** 當啟用 `diarize` 選項時,`num_speakers` 參數不能設定為大於 0 的值。您必須停用 `diarize` 或將 `num_speakers` 設為 0。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `text` | STRING | 從音訊轉錄的文字。 | +| `language_code` | STRING | 偵測到的音訊語言代碼。 | +| `words_json` | STRING | 一個 JSON 格式的字串,包含詳細的單詞層級資訊,如果啟用則包括時間戳記和說話者標籤。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh.md b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh.md new file mode 100644 index 000000000..8bcdc5167 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh.md @@ -0,0 +1,28 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsSpeechToText/zh.md) + +ElevenLabs 语音转文本节点可将音频文件转录为文本。它利用 ElevenLabs 的 API 将语音转换为文字记录,支持自动语言检测、识别不同说话者以及标记非语音声音(如音乐或笑声)等功能。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `audio` | AUDIO | 是 | - | 待转录的音频。 | +| `model` | COMBO | 是 | `"scribe_v2"` | 用于转录的模型。选择此模型会显示额外参数。 | +| `tag_audio_events` | BOOLEAN | 否 | - | 在转录文本中标注如(笑声)、(音乐)等声音。此参数在选择 `"scribe_v2"` 模型时显示。(默认值:False) | +| `diarize` | BOOLEAN | 否 | - | 标注当前说话的说话者。此参数在选择 `"scribe_v2"` 模型时显示。(默认值:False) | +| `diarization_threshold` | FLOAT | 否 | 0.1 - 0.4 | 说话者分离敏感度。数值越低对说话者变化越敏感。此参数在选择 `"scribe_v2"` 模型且启用 `diarize` 时显示。(默认值:0.22) | +| `temperature` | FLOAT | 否 | 0.0 - 2.0 | 随机性控制。0.0 使用模型默认值。数值越高随机性越大。此参数在选择 `"scribe_v2"` 模型时显示。(默认值:0.0) | +| `timestamps_granularity` | COMBO | 否 | `"word"`
`"character"`
`"none"` | 转录文本中单词的时间戳精度。此参数在选择 `"scribe_v2"` 模型时显示。(默认值:"word") | +| `language_code` | STRING | 否 | - | ISO-639-1 或 ISO-639-3 语言代码(例如 'en'、'es'、'fra')。留空则自动检测。(默认值:"") | +| `num_speakers` | INT | 否 | 0 - 32 | 预测的最大说话者数量。设置为 0 则自动检测。(默认值:0) | +| `seed` | INT | 否 | 0 - 2147483647 | 用于结果可复现性的种子值(不保证完全确定性)。(默认值:1) | + +**注意:** 启用 `diarize` 选项时,`num_speakers` 参数不能设置为大于 0 的值。您必须禁用 `diarize` 或将 `num_speakers` 设置为 0。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `text` | STRING | 从音频转录得到的文本。 | +| `language_code` | STRING | 检测到的音频语言代码。 | +| `words_json` | STRING | JSON 格式的字符串,包含详细的词级信息,如启用则包括时间戳和说话者标签。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ar.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ar.md new file mode 100644 index 000000000..e7a2eddef --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ar.md @@ -0,0 +1,23 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ar.md) + +يُنتج عقد ElevenLabs Text to Dialogue حوارًا صوتيًا متعدد المتحدثين من نص. يسمح لك بإنشاء محادثة عن طريق تحديد أسطر نصية مختلفة وأصوات مميزة لكل مشارك. يرسل العقد طلب الحوار إلى واجهة برمجة تطبيقات ElevenLabs ويعيد الصوت المُنشأ. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | لا | 0.0 - 1.0 | استقرار الصوت. القيم الأقل تعطي نطاقًا عاطفيًا أوسع، والقيم الأعلى تنتج كلامًا أكثر اتساقًا ولكنه قد يكون رتيبًا. (القيمة الافتراضية: 0.5) | +| `apply_text_normalization` | COMBO | لا | `"auto"`
`"on"`
`"off"` | وضع تطبيع النص. 'auto' تترك القرار للنظام، 'on' تطبق التطبيع دائمًا، 'off' تتخطاه. | +| `model` | COMBO | لا | `"eleven_v3"` | النموذج المستخدم لتوليد الحوار. | +| `inputs` | DYNAMICCOMBO | نعم | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | عدد مدخلات الحوار. اختيار رقم سيُنشئ حقول إدخال نص وصوت بنفس العدد. | +| `language_code` | STRING | لا | - | رمز اللغة ISO-639-1 أو ISO-639-3 (مثل 'en', 'es', 'fra'). اتركه فارغًا للكشف التلقائي. (القيمة الافتراضية: فارغ) | +| `seed` | INT | لا | 0 - 4294967295 | بذرة لإمكانية إعادة الإنتاج. (القيمة الافتراضية: 1) | +| `output_format` | COMBO | لا | `"mp3_44100_192"`
`"opus_48000_192"` | تنسيق إخراج الصوت. | + +**ملاحظة:** المعامل `inputs` ديناميكي. عند اختيار رقم (مثل "3")، سيعرض العقد حقول إدخال `text` و `voice` مقابلة بنفس العدد (مثل `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). يجب أن يحتوي كل حقل `text` على حرف واحد على الأقل. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | الصوت المُنشأ للحوار متعدد المتحدثين بالتنسيق المحدد. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/en.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/en.md new file mode 100644 index 000000000..301df7f7b --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/en.md @@ -0,0 +1,23 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/en.md) + +The ElevenLabs Text to Dialogue node generates a multi-speaker audio dialogue from text. It allows you to create a conversation by specifying different text lines and distinct voices for each participant. The node sends the dialogue request to the ElevenLabs API and returns the generated audio. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | No | 0.0 - 1.0 | Voice stability. Lower values give broader emotional range, higher values produce more consistent but potentially monotonous speech. (default: 0.5) | +| `apply_text_normalization` | COMBO | No | `"auto"`
`"on"`
`"off"` | Text normalization mode. 'auto' lets the system decide, 'on' always applies normalization, 'off' skips it. | +| `model` | COMBO | No | `"eleven_v3"` | Model to use for dialogue generation. | +| `inputs` | DYNAMICCOMBO | Yes | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Number of dialogue entries. Selecting a number will generate that many text and voice input fields. | +| `language_code` | STRING | No | - | ISO-639-1 or ISO-639-3 language code (e.g., 'en', 'es', 'fra'). Leave empty for automatic detection. (default: empty) | +| `seed` | INT | No | 0 - 4294967295 | Seed for reproducibility. (default: 1) | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Audio output format. | + +**Note:** The `inputs` parameter is dynamic. When you select a number (e.g., "3"), the node will display three corresponding `text` and `voice` input fields (e.g., `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Each `text` field must contain at least one character. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The generated multi-speaker dialogue audio in the selected output format. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/es.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/es.md new file mode 100644 index 000000000..55496d9a4 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/es.md @@ -0,0 +1,23 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/es.md) + +El nodo ElevenLabs Text to Dialogue genera un diálogo de audio con múltiples hablantes a partir de texto. Permite crear una conversación especificando diferentes líneas de texto y voces distintas para cada participante. El nodo envía la solicitud de diálogo a la API de ElevenLabs y devuelve el audio generado. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | No | 0.0 - 1.0 | Estabilidad de la voz. Valores más bajos dan un rango emocional más amplio, valores más altos producen un habla más consistente pero potencialmente monótona. (por defecto: 0.5) | +| `apply_text_normalization` | COMBO | No | `"auto"`
`"on"`
`"off"` | Modo de normalización de texto. 'auto' deja que el sistema decida, 'on' siempre aplica normalización, 'off' la omite. | +| `model` | COMBO | No | `"eleven_v3"` | Modelo a utilizar para la generación del diálogo. | +| `inputs` | DYNAMICCOMBO | Sí | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Número de entradas de diálogo. Seleccionar un número generará esa cantidad de campos de entrada para texto y voz. | +| `language_code` | STRING | No | - | Código de idioma ISO-639-1 o ISO-639-3 (ej., 'en', 'es', 'fra'). Déjelo vacío para detección automática. (por defecto: vacío) | +| `seed` | INT | No | 0 - 4294967295 | Semilla para reproducibilidad. (por defecto: 1) | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de salida de audio. | + +**Nota:** El parámetro `inputs` es dinámico. Cuando selecciona un número (ej., "3"), el nodo mostrará tres campos de entrada `text` y `voice` correspondientes (ej., `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Cada campo `text` debe contener al menos un carácter. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | El audio del diálogo con múltiples hablantes generado, en el formato de salida seleccionado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/fr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/fr.md new file mode 100644 index 000000000..20808895d --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/fr.md @@ -0,0 +1,23 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/fr.md) + +Le nœud ElevenLabs Text to Dialogue génère un dialogue audio multi-interlocuteurs à partir de texte. Il vous permet de créer une conversation en spécifiant différentes lignes de texte et des voix distinctes pour chaque participant. Le nœud envoie la requête de dialogue à l'API ElevenLabs et renvoie l'audio généré. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | Non | 0.0 - 1.0 | Stabilité de la voix. Des valeurs plus basses donnent une gamme émotionnelle plus large, des valeurs plus élevées produisent une parole plus cohérente mais potentiellement monotone. (par défaut : 0.5) | +| `apply_text_normalization` | COMBO | Non | `"auto"`
`"on"`
`"off"` | Mode de normalisation du texte. 'auto' laisse le système décider, 'on' applique toujours la normalisation, 'off' la saute. | +| `model` | COMBO | Non | `"eleven_v3"` | Modèle à utiliser pour la génération du dialogue. | +| `inputs` | DYNAMICCOMBO | Oui | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Nombre d'entrées de dialogue. Sélectionner un nombre générera autant de champs d'entrée pour le texte et la voix. | +| `language_code` | STRING | Non | - | Code de langue ISO-639-1 ou ISO-639-3 (par ex., 'en', 'es', 'fra'). Laisser vide pour une détection automatique. (par défaut : vide) | +| `seed` | INT | Non | 0 - 4294967295 | Graine pour la reproductibilité. (par défaut : 1) | +| `output_format` | COMBO | Non | `"mp3_44100_192"`
`"opus_48000_192"` | Format de sortie audio. | + +**Note :** Le paramètre `inputs` est dynamique. Lorsque vous sélectionnez un nombre (par ex. "3"), le nœud affichera trois champs d'entrée `text` et `voice` correspondants (par ex. `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Chaque champ `text` doit contenir au moins un caractère. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | Le dialogue audio multi-interlocuteurs généré, dans le format de sortie sélectionné. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ja.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ja.md new file mode 100644 index 000000000..7729f1d74 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ja.md @@ -0,0 +1,23 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ja.md) + +ElevenLabs Text to Dialogue ノードは、テキストから複数の話者による音声対話を生成します。異なるテキスト行と、各参加者ごとに異なる声を指定することで、会話を作成することができます。このノードは対話リクエストを ElevenLabs API に送信し、生成された音声を返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | いいえ | 0.0 - 1.0 | 声の安定性です。低い値ほど感情の幅が広がり、高い値ほど一貫性はあるものの、単調になる可能性のある音声を生成します。(デフォルト: 0.5) | +| `apply_text_normalization` | COMBO | いいえ | `"auto"`
`"on"`
`"off"` | テキスト正規化モードです。'auto' はシステムに決定させ、'on' は常に正規化を適用し、'off' はスキップします。 | +| `model` | COMBO | いいえ | `"eleven_v3"` | 対話生成に使用するモデルです。 | +| `inputs` | DYNAMICCOMBO | はい | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | 対話エントリの数です。数字を選択すると、その数だけテキストと音声の入力フィールドが生成されます。 | +| `language_code` | STRING | いいえ | - | ISO-639-1 または ISO-639-3 言語コード (例: 'en', 'es', 'fra')。自動検出の場合は空欄のままにします。(デフォルト: 空) | +| `seed` | INT | いいえ | 0 - 4294967295 | 再現性のためのシード値です。(デフォルト: 1) | +| `output_format` | COMBO | いいえ | `"mp3_44100_192"`
`"opus_48000_192"` | 音声出力フォーマットです。 | + +**注意:** `inputs` パラメータは動的です。数字 (例: "3") を選択すると、ノードは対応する数の `text` および `voice` 入力フィールド (例: `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`) を表示します。各 `text` フィールドには少なくとも1文字以上を入力する必要があります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 選択した出力フォーマットで生成された、複数話者による対話音声です。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ko.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ko.md new file mode 100644 index 000000000..ca8838b6f --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ko.md @@ -0,0 +1,23 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ko.md) + +ElevenLabs Text to Dialogue 노드는 텍스트에서 다중 화자 오디오 대화를 생성합니다. 서로 다른 텍스트 줄과 각 참가자별로 구별된 음성을 지정하여 대화를 만들 수 있습니다. 이 노드는 대화 생성 요청을 ElevenLabs API로 전송하고 생성된 오디오를 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | 아니요 | 0.0 - 1.0 | 음성 안정성. 값이 낮을수록 감정 범위가 넓어지고, 값이 높을수록 더 일관되지만 단조로울 수 있는 발화를 생성합니다. (기본값: 0.5) | +| `apply_text_normalization` | COMBO | 아니요 | `"auto"`
`"on"`
`"off"` | 텍스트 정규화 모드. 'auto'는 시스템이 결정하게 하고, 'on'은 항상 정규화를 적용하며, 'off'는 건너뜁니다. | +| `model` | COMBO | 아니요 | `"eleven_v3"` | 대화 생성에 사용할 모델입니다. | +| `inputs` | DYNAMICCOMBO | 예 | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | 대화 항목의 수입니다. 숫자를 선택하면 해당 개수만큼의 텍스트 및 음성 입력 필드가 생성됩니다. | +| `language_code` | STRING | 아니요 | - | ISO-639-1 또는 ISO-639-3 언어 코드 (예: 'en', 'es', 'fra'). 자동 감지를 위해 비워 둡니다. (기본값: 비어 있음) | +| `seed` | INT | 아니요 | 0 - 4294967295 | 재현성을 위한 시드 값입니다. (기본값: 1) | +| `output_format` | COMBO | 아니요 | `"mp3_44100_192"`
`"opus_48000_192"` | 오디오 출력 형식입니다. | + +**참고:** `inputs` 매개변수는 동적입니다. 숫자(예: "3")를 선택하면 노드는 해당 개수(예: `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`)의 `text` 및 `voice` 입력 필드를 표시합니다. 각 `text` 필드는 최소 한 글자 이상을 포함해야 합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 선택한 출력 형식으로 생성된 다중 화자 대화 오디오입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/pt-BR.md new file mode 100644 index 000000000..1318a0bff --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/pt-BR.md @@ -0,0 +1,23 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/pt-BR.md) + +O nó ElevenLabs Text to Dialogue gera um áudio de diálogo com múltiplos falantes a partir de texto. Ele permite que você crie uma conversa especificando diferentes linhas de texto e vozes distintas para cada participante. O nó envia a solicitação de diálogo para a API da ElevenLabs e retorna o áudio gerado. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | Não | 0.0 - 1.0 | Estabilidade da voz. Valores mais baixos proporcionam uma gama emocional mais ampla, valores mais altos produzem uma fala mais consistente, mas potencialmente monótona. (padrão: 0.5) | +| `apply_text_normalization` | COMBO | Não | `"auto"`
`"on"`
`"off"` | Modo de normalização de texto. 'auto' deixa o sistema decidir, 'on' sempre aplica normalização, 'off' ignora. | +| `model` | COMBO | Não | `"eleven_v3"` | Modelo a ser usado para geração do diálogo. | +| `inputs` | DYNAMICCOMBO | Sim | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Número de entradas de diálogo. Selecionar um número gerará essa quantidade de campos de entrada para texto e voz. | +| `language_code` | STRING | Não | - | Código de idioma ISO-639-1 ou ISO-639-3 (ex.: 'en', 'es', 'fra'). Deixe vazio para detecção automática. (padrão: vazio) | +| `seed` | INT | Não | 0 - 4294967295 | Semente para reprodutibilidade. (padrão: 1) | +| `output_format` | COMBO | Não | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de saída do áudio. | + +**Observação:** O parâmetro `inputs` é dinâmico. Quando você seleciona um número (ex.: "3"), o nó exibirá três campos de entrada `text` e `voice` correspondentes (ex.: `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Cada campo `text` deve conter pelo menos um caractere. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | O áudio do diálogo com múltiplos falantes gerado, no formato de saída selecionado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ru.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ru.md new file mode 100644 index 000000000..8108035cd --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ru.md @@ -0,0 +1,23 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/ru.md) + +Узел ElevenLabs Text to Dialogue генерирует многоголосый аудиодиалог из текста. Он позволяет создать разговор, указывая различные реплики и уникальные голоса для каждого участника. Узел отправляет запрос на генерацию диалога в API ElevenLabs и возвращает созданное аудио. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | Нет | 0.0 - 1.0 | Стабильность голоса. Более низкие значения дают более широкий эмоциональный диапазон, более высокие значения производят более последовательную, но потенциально монотонную речь. (по умолчанию: 0.5) | +| `apply_text_normalization` | COMBO | Нет | `"auto"`
`"on"`
`"off"` | Режим нормализации текста. 'auto' позволяет системе решать, 'on' всегда применяет нормализацию, 'off' пропускает её. | +| `model` | COMBO | Нет | `"eleven_v3"` | Модель для генерации диалога. | +| `inputs` | DYNAMICCOMBO | Да | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Количество реплик в диалоге. Выбор числа создаст соответствующее количество полей ввода для текста и голоса. | +| `language_code` | STRING | Нет | - | Код языка по стандарту ISO-639-1 или ISO-639-3 (например, 'en', 'es', 'fra'). Оставьте пустым для автоматического определения. (по умолчанию: пусто) | +| `seed` | INT | Нет | 0 - 4294967295 | Сид (начальное число) для воспроизводимости результата. (по умолчанию: 1) | +| `output_format` | COMBO | Нет | `"mp3_44100_192"`
`"opus_48000_192"` | Формат выходного аудиофайла. | + +**Примечание:** Параметр `inputs` является динамическим. Когда вы выбираете число (например, "3"), узел отобразит три соответствующих поля ввода для `text` и `voice` (например, `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Каждое поле `text` должно содержать хотя бы один символ. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Сгенерированное многоголосое аудио диалога в выбранном формате. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/tr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/tr.md new file mode 100644 index 000000000..32b4b5e97 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/tr.md @@ -0,0 +1,23 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/tr.md) + +ElevenLabs Metinden Diyaloğa düğümü, metinden çoklu konuşmacılı bir ses diyaloğu oluşturur. Farklı metin satırları ve her katılımcı için ayrı sesler belirterek bir konuşma oluşturmanıza olanak tanır. Düğüm, diyalog isteğini ElevenLabs API'sine gönderir ve oluşturulan sesi döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | Hayır | 0.0 - 1.0 | Ses kararlılığı. Düşük değerler daha geniş bir duygusal aralık sağlar, yüksek değerler daha tutarlı ancak potansiyel olarak monoton bir konuşma üretir. (varsayılan: 0.5) | +| `apply_text_normalization` | COMBO | Hayır | `"auto"`
`"on"`
`"off"` | Metin normalleştirme modu. 'auto' sistemi karar vermeye bırakır, 'on' her zaman normalleştirme uygular, 'off' atlar. | +| `model` | COMBO | Hayır | `"eleven_v3"` | Diyalog oluşturmak için kullanılacak model. | +| `inputs` | DYNAMICCOMBO | Evet | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | Diyalog girişi sayısı. Bir sayı seçmek, o kadar metin ve ses giriş alanı oluşturacaktır. | +| `language_code` | STRING | Hayır | - | ISO-639-1 veya ISO-639-3 dil kodu (örn., 'en', 'es', 'fra'). Otomatik algılama için boş bırakın. (varsayılan: boş) | +| `seed` | INT | Hayır | 0 - 4294967295 | Tekrarlanabilirlik için tohum değeri. (varsayılan: 1) | +| `output_format` | COMBO | Hayır | `"mp3_44100_192"`
`"opus_48000_192"` | Ses çıktı formatı. | + +**Not:** `inputs` parametresi dinamiktir. Bir sayı (örn., "3") seçtiğinizde, düğüm üç adet karşılık gelen `text` ve `voice` giriş alanı görüntüleyecektir (örn., `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`). Her `text` alanı en az bir karakter içermelidir. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Seçilen çıktı formatında oluşturulan çoklu konuşmacılı diyalog sesi. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh-TW.md new file mode 100644 index 000000000..810ef4e59 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh-TW.md @@ -0,0 +1,23 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh-TW.md) + +此節點從文字生成多說話者的音訊對話。它允許您透過為每個參與者指定不同的文字行和獨特的聲音來創建對話。該節點將對話請求發送到 ElevenLabs API 並返回生成的音訊。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 聲音穩定性。較低的值提供更廣泛的情感範圍,較高的值產生更一致但可能單調的語音。(預設值: 0.5) | +| `apply_text_normalization` | COMBO | 否 | `"auto"`
`"on"`
`"off"` | 文字正規化模式。'auto' 讓系統決定,'on' 總是套用正規化,'off' 則跳過。 | +| `model` | COMBO | 否 | `"eleven_v3"` | 用於對話生成的模型。 | +| `inputs` | DYNAMICCOMBO | 是 | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | 對話條目的數量。選擇一個數字將生成相應數量的文字和聲音輸入欄位。 | +| `language_code` | STRING | 否 | - | ISO-639-1 或 ISO-639-3 語言代碼 (例如 'en', 'es', 'fra')。留空則自動偵測。(預設值: 空) | +| `seed` | INT | 否 | 0 - 4294967295 | 用於重現性的種子值。(預設值: 1) | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音訊輸出格式。 | + +**注意:** `inputs` 參數是動態的。當您選擇一個數字 (例如 "3") 時,節點將顯示三個對應的 `text` 和 `voice` 輸入欄位 (例如 `text1`, `voice1`, `text2`, `voice2`, `text3`, `voice3`)。每個 `text` 欄位必須至少包含一個字元。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 以所選輸出格式生成的多說話者對話音訊。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh.md b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh.md new file mode 100644 index 000000000..6e120f2a6 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh.md @@ -0,0 +1,23 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToDialogue/zh.md) + +ElevenLabs 文本转对话节点可从文本生成多说话人音频对话。它允许您通过为每个参与者指定不同的文本行和独特音色来创建对话。该节点将对话请求发送至 ElevenLabs API 并返回生成的音频。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 音色稳定性。数值越低情感范围越广,数值越高语音越一致但可能单调。(默认:0.5) | +| `apply_text_normalization` | COMBO | 否 | `"auto"`
`"on"`
`"off"` | 文本归一化模式。'auto' 由系统决定,'on' 始终应用归一化,'off' 跳过归一化。 | +| `model` | COMBO | 否 | `"eleven_v3"` | 用于对话生成的模型。 | +| `inputs` | DYNAMICCOMBO | 是 | `"1"`
`"2"`
`"3"`
`"4"`
`"5"`
`"6"`
`"7"`
`"8"`
`"9"`
`"10"` | 对话条目数量。选择数字将生成相应数量的文本和音色输入字段。 | +| `language_code` | STRING | 否 | - | ISO-639-1 或 ISO-639-3 语言代码(如 'en'、'es'、'fra')。留空则自动检测。(默认:空) | +| `seed` | INT | 否 | 0 - 4294967295 | 用于可重现性的随机种子。(默认:1) | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音频输出格式。 | + +**注意:** `inputs` 参数是动态的。当您选择一个数字(例如 "3")时,节点将显示三个对应的 `text` 和 `voice` 输入字段(例如 `text1`、`voice1`、`text2`、`voice2`、`text3`、`voice3`)。每个 `text` 字段必须包含至少一个字符。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 以选定输出格式生成的多说话人对话音频。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ar.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ar.md new file mode 100644 index 000000000..d23ce1f96 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ar.md @@ -0,0 +1,21 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ar.md) + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | نعم | غير متاح | الوصف النصي لتأثير الصوت المراد توليده. هذا حقل إلزامي. | +| `model` | COMBO | نعم | `"eleven_sfx_v2"` | النموذج المستخدم لتوليد تأثيرات الصوت. يؤدي اختيار هذا النموذج إلى إظهار معاملات إضافية: `duration` (القيمة الافتراضية: 5.0، النطاق: من 0.5 إلى 30.0 ثانية)، `loop` (القيمة الافتراضية: False)، و `prompt_influence` (القيمة الافتراضية: 0.3، النطاق: من 0.0 إلى 1.0). | +| `output_format` | COMBO | نعم | `"mp3_44100_192"`
`"opus_48000_192"` | تنسيق إخراج الصوت. | + +**تفاصيل المعاملات:** + +* **`model["duration"]`**: مدة الصوت المُولد بالثواني. القيمة الافتراضية هي 5.0، مع حد أدنى 0.5 وحد أقصى 30.0. +* **`model["loop"]`**: عند التمكين، ينشئ تأثير صوتي يدور بسلاسة. القيمة الافتراضية هي False. +* **`model["prompt_influence"]`**: يتحكم في مدى تقيد التوليد بالنص المطلوب. القيم الأعلى تجعل الصوت يتبع النص بشكل أكبر. القيمة الافتراضية هي 0.3، مع نطاق من 0.0 إلى 1.0. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | ملف الصوت لتأثير الصوت المُولد. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/en.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/en.md new file mode 100644 index 000000000..9c4a581f2 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/en.md @@ -0,0 +1,23 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/en.md) + +The ElevenLabs Text to Sound Effects node generates audio sound effects from a text description. It uses the ElevenLabs API to create sound effects based on your prompt, allowing you to control the duration, looping behavior, and how closely the sound follows the text. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Yes | N/A | Text description of the sound effect to generate. This is a required field. | +| `model` | COMBO | Yes | `"eleven_sfx_v2"` | Model to use for sound effect generation. Selecting this model reveals additional parameters: `duration` (default: 5.0, range: 0.5 to 30.0 seconds), `loop` (default: False), and `prompt_influence` (default: 0.3, range: 0.0 to 1.0). | +| `output_format` | COMBO | Yes | `"mp3_44100_192"`
`"opus_48000_192"` | Audio output format. | + +**Parameter Details:** + +* **`model["duration"]`**: Duration of the generated sound in seconds. Default is 5.0, with a minimum of 0.5 and a maximum of 30.0. +* **`model["loop"]`**: When enabled, creates a smoothly looping sound effect. Default is False. +* **`model["prompt_influence"]`**: Controls how closely the generation follows the text prompt. Higher values make the sound follow the text more closely. Default is 0.3, with a range from 0.0 to 1.0. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The generated sound effect audio file. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/es.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/es.md new file mode 100644 index 000000000..2e5befb2d --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/es.md @@ -0,0 +1,23 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/es.md) + +El nodo ElevenLabs Text to Sound Effects genera efectos de sonido a partir de una descripción de texto. Utiliza la API de ElevenLabs para crear efectos de sonido basados en tu indicación, permitiéndote controlar la duración, el comportamiento de bucle y qué tan fielmente sigue el sonido al texto. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Sí | N/A | Descripción de texto del efecto de sonido a generar. Este es un campo obligatorio. | +| `model` | COMBO | Sí | `"eleven_sfx_v2"` | Modelo a utilizar para la generación de efectos de sonido. Seleccionar este modelo revela parámetros adicionales: `duration` (por defecto: 5.0, rango: 0.5 a 30.0 segundos), `loop` (por defecto: False), y `prompt_influence` (por defecto: 0.3, rango: 0.0 a 1.0). | +| `output_format` | COMBO | Sí | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de salida de audio. | + +**Detalles de los Parámetros:** + +* **`model["duration"]`**: Duración del sonido generado en segundos. El valor por defecto es 5.0, con un mínimo de 0.5 y un máximo de 30.0. +* **`model["loop"]`**: Cuando está habilitado, crea un efecto de sonido que se repite suavemente en bucle. El valor por defecto es False. +* **`model["prompt_influence"]`**: Controla qué tan fielmente sigue la generación a la indicación de texto. Valores más altos hacen que el sonido siga el texto más de cerca. El valor por defecto es 0.3, con un rango de 0.0 a 1.0. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | El archivo de audio del efecto de sonido generado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/fr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/fr.md new file mode 100644 index 000000000..446790e4c --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/fr.md @@ -0,0 +1,23 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/fr.md) + +Le nœud ElevenLabs Text to Sound Effects génère des effets sonores audio à partir d'une description textuelle. Il utilise l'API ElevenLabs pour créer des effets sonores basés sur votre prompt, vous permettant de contrôler la durée, le comportement de boucle et la fidélité du son au texte. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Oui | N/A | Description textuelle de l'effet sonore à générer. Ce champ est obligatoire. | +| `model` | COMBO | Oui | `"eleven_sfx_v2"` | Modèle à utiliser pour la génération d'effets sonores. La sélection de ce modèle révèle des paramètres supplémentaires : `duration` (par défaut : 5.0, plage : 0.5 à 30.0 secondes), `loop` (par défaut : False), et `prompt_influence` (par défaut : 0.3, plage : 0.0 à 1.0). | +| `output_format` | COMBO | Oui | `"mp3_44100_192"`
`"opus_48000_192"` | Format de sortie audio. | + +**Détails des paramètres :** + +* **`model["duration"]`** : Durée du son généré en secondes. La valeur par défaut est 5.0, avec un minimum de 0.5 et un maximum de 30.0. +* **`model["loop"]`** : Lorsqu'il est activé, crée un effet sonore qui boucle de manière fluide. La valeur par défaut est False. +* **`model["prompt_influence"]`** : Contrôle à quel point la génération suit fidèlement le prompt textuel. Des valeurs plus élevées font que le son suit le texte de plus près. La valeur par défaut est 0.3, avec une plage de 0.0 à 1.0. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | Le fichier audio de l'effet sonore généré. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ja.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ja.md new file mode 100644 index 000000000..1229ade10 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ja.md @@ -0,0 +1,23 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ja.md) + +ElevenLabs Text to Sound Effects ノードは、テキストの説明からオーディオのサウンドエフェクトを生成します。ElevenLabs API を使用してプロンプトに基づいたサウンドエフェクトを作成し、音の長さ、ループ動作、テキストにどれだけ忠実に従うかを制御できます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | はい | N/A | 生成するサウンドエフェクトのテキスト説明です。このフィールドは必須です。 | +| `model` | COMBO | はい | `"eleven_sfx_v2"` | サウンドエフェクト生成に使用するモデルです。このモデルを選択すると、追加のパラメータが表示されます: `duration` (デフォルト: 5.0, 範囲: 0.5 から 30.0 秒)、`loop` (デフォルト: False)、`prompt_influence` (デフォルト: 0.3, 範囲: 0.0 から 1.0)。 | +| `output_format` | COMBO | はい | `"mp3_44100_192"`
`"opus_48000_192"` | オーディオ出力フォーマットです。 | + +**パラメータ詳細:** + +* **`model["duration"]`**: 生成される音の長さ(秒単位)です。デフォルトは 5.0 で、最小 0.5、最大 30.0 です。 +* **`model["loop"]`**: 有効にすると、スムーズにループするサウンドエフェクトを作成します。デフォルトは False です。 +* **`model["prompt_influence"]`**: 生成がテキストプロンプトにどれだけ忠実に従うかを制御します。値が高いほど、音はテキストにより忠実になります。デフォルトは 0.3 で、範囲は 0.0 から 1.0 です。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 生成されたサウンドエフェクトのオーディオファイルです。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ko.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ko.md new file mode 100644 index 000000000..cc7eae334 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ko.md @@ -0,0 +1,23 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ko.md) + +ElevenLabs Text to Sound Effects 노드는 텍스트 설명으로부터 오디오 사운드 효과를 생성합니다. ElevenLabs API를 사용하여 프롬프트를 기반으로 사운드 효과를 만들며, 지속 시간, 반복 동작, 그리고 사운드가 텍스트를 얼마나 밀접하게 따를지 제어할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | 예 | 해당 없음 | 생성할 사운드 효과의 텍스트 설명입니다. 필수 입력 항목입니다. | +| `model` | COMBO | 예 | `"eleven_sfx_v2"` | 사운드 효과 생성에 사용할 모델입니다. 이 모델을 선택하면 추가 매개변수(`duration`(기본값: 5.0, 범위: 0.5~30.0초), `loop`(기본값: False), `prompt_influence`(기본값: 0.3, 범위: 0.0~1.0))가 표시됩니다. | +| `output_format` | COMBO | 예 | `"mp3_44100_192"`
`"opus_48000_192"` | 오디오 출력 형식입니다. | + +**매개변수 상세 설명:** + +* **`model["duration"]`**: 생성된 사운드의 지속 시간(초)입니다. 기본값은 5.0이며, 최소 0.5, 최대 30.0까지 설정할 수 있습니다. +* **`model["loop"]`**: 활성화하면 부드럽게 반복되는 사운드 효과를 생성합니다. 기본값은 False입니다. +* **`model["prompt_influence"]`**: 생성 결과가 텍스트 프롬프트를 얼마나 밀접하게 따를지 제어합니다. 값이 높을수록 사운드가 텍스트를 더 가깝게 따릅니다. 기본값은 0.3이며, 범위는 0.0에서 1.0까지입니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 생성된 사운드 효과 오디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/pt-BR.md new file mode 100644 index 000000000..580041aef --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/pt-BR.md @@ -0,0 +1,23 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/pt-BR.md) + +O nó ElevenLabs Text to Sound Effects gera efeitos sonoros em áudio a partir de uma descrição em texto. Ele utiliza a API da ElevenLabs para criar efeitos sonoros com base no seu prompt, permitindo controlar a duração, o comportamento de loop e o quão fielmente o som segue o texto. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Sim | N/A | Descrição em texto do efeito sonoro a ser gerado. Este é um campo obrigatório. | +| `model` | COMBO | Sim | `"eleven_sfx_v2"` | Modelo a ser usado para a geração do efeito sonoro. Selecionar este modelo revela parâmetros adicionais: `duration` (padrão: 5.0, intervalo: 0.5 a 30.0 segundos), `loop` (padrão: False) e `prompt_influence` (padrão: 0.3, intervalo: 0.0 a 1.0). | +| `output_format` | COMBO | Sim | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de saída do áudio. | + +**Detalhes dos Parâmetros:** + +* **`model["duration"]`**: Duração do som gerado em segundos. O padrão é 5.0, com um mínimo de 0.5 e um máximo de 30.0. +* **`model["loop"]`**: Quando ativado, cria um efeito sonoro com loop suave. O padrão é False. +* **`model["prompt_influence"]`**: Controla o quão fielmente a geração segue o prompt de texto. Valores mais altos fazem o som seguir o texto mais de perto. O padrão é 0.3, com um intervalo de 0.0 a 1.0. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | O arquivo de áudio do efeito sonoro gerado. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ru.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ru.md new file mode 100644 index 000000000..d0372fde7 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ru.md @@ -0,0 +1,23 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/ru.md) + +Узел ElevenLabs Text to Sound Effects генерирует звуковые эффекты из текстового описания. Он использует API ElevenLabs для создания звуковых эффектов на основе вашего промпта, позволяя контролировать длительность, зацикливание и степень соответствия звука тексту. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Да | N/A | Текстовое описание генерируемого звукового эффекта. Это обязательное поле. | +| `model` | COMBO | Да | `"eleven_sfx_v2"` | Модель для генерации звуковых эффектов. Выбор этой модели открывает дополнительные параметры: `duration` (по умолчанию: 5.0, диапазон: от 0.5 до 30.0 секунд), `loop` (по умолчанию: False) и `prompt_influence` (по умолчанию: 0.3, диапазон: от 0.0 до 1.0). | +| `output_format` | COMBO | Да | `"mp3_44100_192"`
`"opus_48000_192"` | Формат выходного аудиофайла. | + +**Детали параметров:** + +* **`model["duration"]`**: Длительность генерируемого звука в секундах. По умолчанию 5.0, минимум 0.5, максимум 30.0. +* **`model["loop"]`**: При включении создаёт плавно зацикленный звуковой эффект. По умолчанию False. +* **`model["prompt_influence"]`**: Определяет, насколько точно генерация следует текстовому промпту. Более высокие значения заставляют звук точнее соответствовать тексту. По умолчанию 0.3, диапазон от 0.0 до 1.0. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Сгенерированный аудиофайл со звуковым эффектом. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/tr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/tr.md new file mode 100644 index 000000000..f8748aa1f --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/tr.md @@ -0,0 +1,23 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/tr.md) + +ElevenLabs Text to Sound Effects düğümü, bir metin açıklamasından ses efektleri oluşturur. ElevenLabs API'sini kullanarak isteminize dayalı ses efektleri oluşturur ve süre, döngü davranışı ile sesin metni ne kadar yakından takip ettiğini kontrol etmenize olanak tanır. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | Evet | Yok | Oluşturulacak ses efektinin metin açıklaması. Bu zorunlu bir alandır. | +| `model` | COMBO | Evet | `"eleven_sfx_v2"` | Ses efekti oluşturmak için kullanılacak model. Bu model seçildiğinde ek parametreler görünür: `duration` (varsayılan: 5.0, aralık: 0.5 ila 30.0 saniye), `loop` (varsayılan: False) ve `prompt_influence` (varsayılan: 0.3, aralık: 0.0 ila 1.0). | +| `output_format` | COMBO | Evet | `"mp3_44100_192"`
`"opus_48000_192"` | Ses çıktı formatı. | + +**Parametre Detayları:** + +* **`model["duration"]`**: Oluşturulan sesin saniye cinsinden süresi. Varsayılan 5.0'dır, minimum 0.5 ve maksimum 30.0'dır. +* **`model["loop"]`**: Etkinleştirildiğinde, sorunsuz bir şekilde döngü yapan bir ses efekti oluşturur. Varsayılan değer False'dur. +* **`model["prompt_influence"]`**: Oluşturmanın metin istemini ne kadar yakından takip ettiğini kontrol eder. Daha yüksek değerler, sesin metni daha yakından takip etmesini sağlar. Varsayılan 0.3'tür ve aralığı 0.0 ila 1.0'dır. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Oluşturulan ses efekti ses dosyası. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh-TW.md new file mode 100644 index 000000000..74aae8967 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh-TW.md @@ -0,0 +1,23 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh-TW.md) + +此節點可根據文字描述生成音效。它使用 ElevenLabs API 來根據您的提示創建音效,讓您可以控制音效的持續時間、循環行為以及音效與文字描述的貼合程度。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | 是 | N/A | 要生成的音效的文字描述。此為必填欄位。 | +| `model` | COMBO | 是 | `"eleven_sfx_v2"` | 用於生成音效的模型。選擇此模型會顯示額外參數:`duration`(預設值:5.0,範圍:0.5 至 30.0 秒)、`loop`(預設值:False)和 `prompt_influence`(預設值:0.3,範圍:0.0 至 1.0)。 | +| `output_format` | COMBO | 是 | `"mp3_44100_192"`
`"opus_48000_192"` | 音訊輸出格式。 | + +**參數詳情:** + +* **`model["duration"]`**:生成音效的持續時間(單位:秒)。預設值為 5.0,最小值為 0.5,最大值為 30.0。 +* **`model["loop"]`**:啟用時,會創建一個平滑循環的音效。預設值為 False。 +* **`model["prompt_influence"]`**:控制生成結果與文字提示的貼合程度。數值越高,音效越貼近文字描述。預設值為 0.3,範圍從 0.0 到 1.0。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 生成的音效音訊檔案。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh.md new file mode 100644 index 000000000..d6573eb3b --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh.md @@ -0,0 +1,23 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSoundEffects/zh.md) + +ElevenLabs 文本转音效节点可根据文本描述生成音频音效。它利用 ElevenLabs API 基于您的提示创建音效,允许您控制音效的持续时间、循环行为以及音效与文本描述的贴合程度。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `text` | STRING | 是 | 不适用 | 要生成的音效的文本描述。此为必填字段。 | +| `model` | COMBO | 是 | `"eleven_sfx_v2"` | 用于音效生成的模型。选择此模型会显示额外参数:`duration`(默认值:5.0,范围:0.5 至 30.0 秒)、`loop`(默认值:False)和 `prompt_influence`(默认值:0.3,范围:0.0 至 1.0)。 | +| `output_format` | COMBO | 是 | `"mp3_44100_192"`
`"opus_48000_192"` | 音频输出格式。 | + +**参数详情:** + +* **`model["duration"]`**:生成音效的持续时间(秒)。默认值为 5.0,最小值为 0.5,最大值为 30.0。 +* **`model["loop"]`**:启用后,将创建平滑循环的音效。默认值为 False。 +* **`model["prompt_influence"]`**:控制生成结果与文本提示的贴合程度。数值越高,音效越贴合文本。默认值为 0.3,取值范围为 0.0 至 1.0。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 生成的音效音频文件。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ar.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ar.md new file mode 100644 index 000000000..59848b1e4 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ar.md @@ -0,0 +1,35 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ar.md) + +يحول عقدة تحويل النص إلى كلام من ElevenLabs النص المكتوب إلى صوت منطوق باستخدام واجهة برمجة تطبيقات (API) الخاصة بـ ElevenLabs. تتيح لك تحديد صوت معين وضبط خصائص الكلام المختلفة بدقة مثل الثبات والسرعة والأسلوب لتوليد مخرجات صوتية مخصصة. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | نعم | N/A | الصوت المستخدم في توليف الكلام. قم بالاتصال من عقدة Voice Selector أو Instant Voice Clone. | +| `text` | STRING | نعم | N/A | النص المراد تحويله إلى كلام. | +| `stability` | FLOAT | لا | 0.0 - 1.0 | ثبات الصوت. القيم الأقل تعطي نطاقًا عاطفيًا أوسع، والقيم الأعلى تنتج كلامًا أكثر اتساقًا ولكنه قد يكون رتيبًا (القيمة الافتراضية: 0.5). | +| `apply_text_normalization` | COMBO | لا | `"auto"`
`"on"`
`"off"` | وضع تطبيع النص. 'auto' يترك القرار للنظام، 'on' يطبق التطبيع دائمًا، 'off' يتخطاه. | +| `model` | DYNAMICCOMBO | لا | `"eleven_multilingual_v2"`
`"eleven_v3"` | النموذج المستخدم لتحويل النص إلى كلام. اختيار نموذج يكشف عن معاملاته المحددة. | +| `language_code` | STRING | لا | N/A | رمز اللغة ISO-639-1 أو ISO-639-3 (مثل 'en'، 'es'، 'fra'). اتركه فارغًا للكشف التلقائي (القيمة الافتراضية: ""). | +| `seed` | INT | لا | 0 - 2147483647 | بذرة (Seed) لإمكانية إعادة الإنتاج (لا يتم ضمان الحتمية) (القيمة الافتراضية: 1). | +| `output_format` | COMBO | لا | `"mp3_44100_192"`
`"opus_48000_192"` | تنسيق مخرجات الصوت. | + +**المعاملات الخاصة بالنموذج:** +عند تعيين معامل `model` إلى `"eleven_multilingual_v2"`، تصبح المعاملات الإضافية التالية متاحة: + +* `speed`: سرعة الكلام. 1.0 هي السرعة العادية، <1.0 أبطأ، >1.0 أسرع (القيمة الافتراضية: 1.0، النطاق: 0.7 - 1.3). +* `similarity_boost`: تعزيز التشابه. القيم الأعلى تجعل الصوت أكثر تشابهًا مع الصوت الأصلي (القيمة الافتراضية: 0.75، النطاق: 0.0 - 1.0). +* `use_speaker_boost`: تعزيز التشابه مع صوت المتحدث الأصلي (القيمة الافتراضية: False). +* `style`: المبالغة في الأسلوب. القيم الأعلى تزيد من التعبير الأسلوبي ولكن قد تقلل من الثبات (القيمة الافتراضية: 0.0، النطاق: 0.0 - 0.2). + +عند تعيين معامل `model` إلى `"eleven_v3"`، تصبح المعاملات الإضافية التالية متاحة: + +* `speed`: سرعة الكلام. 1.0 هي السرعة العادية، <1.0 أبطأ، >1.0 أسرع (القيمة الافتراضية: 1.0، النطاق: 0.7 - 1.3). +* `similarity_boost`: تعزيز التشابه. القيم الأعلى تجعل الصوت أكثر تشابهًا مع الصوت الأصلي (القيمة الافتراضية: 0.75، النطاق: 0.0 - 1.0). + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `audio` | AUDIO | الصوت المُنشأ من عملية تحويل النص إلى كلام. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/en.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/en.md new file mode 100644 index 000000000..e92015c27 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/en.md @@ -0,0 +1,35 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/en.md) + +The ElevenLabs Text to Speech node converts written text into spoken audio using the ElevenLabs API. It allows you to select a specific voice and fine-tune various speech characteristics like stability, speed, and style to generate a customized audio output. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Yes | N/A | Voice to use for speech synthesis. Connect from Voice Selector or Instant Voice Clone. | +| `text` | STRING | Yes | N/A | The text to convert to speech. | +| `stability` | FLOAT | No | 0.0 - 1.0 | Voice stability. Lower values give broader emotional range, higher values produce more consistent but potentially monotonous speech (default: 0.5). | +| `apply_text_normalization` | COMBO | No | `"auto"`
`"on"`
`"off"` | Text normalization mode. 'auto' lets the system decide, 'on' always applies normalization, 'off' skips it. | +| `model` | DYNAMICCOMBO | No | `"eleven_multilingual_v2"`
`"eleven_v3"` | Model to use for text-to-speech. Selecting a model reveals its specific parameters. | +| `language_code` | STRING | No | N/A | ISO-639-1 or ISO-639-3 language code (e.g., 'en', 'es', 'fra'). Leave empty for automatic detection (default: ""). | +| `seed` | INT | No | 0 - 2147483647 | Seed for reproducibility (determinism not guaranteed) (default: 1). | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Audio output format. | + +**Model-Specific Parameters:** +When the `model` parameter is set to `"eleven_multilingual_v2"`, the following additional parameters become available: + +* `speed`: Speech speed. 1.0 is normal, <1.0 slower, >1.0 faster (default: 1.0, range: 0.7 - 1.3). +* `similarity_boost`: Similarity boost. Higher values make the voice more similar to the original (default: 0.75, range: 0.0 - 1.0). +* `use_speaker_boost`: Boost similarity to the original speaker voice (default: False). +* `style`: Style exaggeration. Higher values increase stylistic expression but may reduce stability (default: 0.0, range: 0.0 - 0.2). + +When the `model` parameter is set to `"eleven_v3"`, the following additional parameters become available: + +* `speed`: Speech speed. 1.0 is normal, <1.0 slower, >1.0 faster (default: 1.0, range: 0.7 - 1.3). +* `similarity_boost`: Similarity boost. Higher values make the voice more similar to the original (default: 0.75, range: 0.0 - 1.0). + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | The generated audio from the text-to-speech conversion. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/es.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/es.md new file mode 100644 index 000000000..ef13f2b27 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/es.md @@ -0,0 +1,35 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/es.md) + +El nodo ElevenLabs Text to Speech convierte texto escrito en audio hablado utilizando la API de ElevenLabs. Permite seleccionar una voz específica y ajustar varias características del habla, como estabilidad, velocidad y estilo, para generar una salida de audio personalizada. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Sí | N/A | Voz a utilizar para la síntesis de voz. Conectar desde Voice Selector o Instant Voice Clone. | +| `text` | STRING | Sí | N/A | El texto a convertir en voz. | +| `stability` | FLOAT | No | 0.0 - 1.0 | Estabilidad de la voz. Valores más bajos dan un rango emocional más amplio, valores más altos producen un habla más consistente pero potencialmente monótona (por defecto: 0.5). | +| `apply_text_normalization` | COMBO | No | `"auto"`
`"on"`
`"off"` | Modo de normalización de texto. 'auto' deja que el sistema decida, 'on' siempre aplica normalización, 'off' la omite. | +| `model` | DYNAMICCOMBO | No | `"eleven_multilingual_v2"`
`"eleven_v3"` | Modelo a utilizar para la conversión de texto a voz. Seleccionar un modelo revela sus parámetros específicos. | +| `language_code` | STRING | No | N/A | Código de idioma ISO-639-1 o ISO-639-3 (ej., 'en', 'es', 'fra'). Dejar vacío para detección automática (por defecto: ""). | +| `seed` | INT | No | 0 - 2147483647 | Semilla para reproducibilidad (no se garantiza determinismo) (por defecto: 1). | +| `output_format` | COMBO | No | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de salida de audio. | + +**Parámetros Específicos del Modelo:** +Cuando el parámetro `model` se establece en `"eleven_multilingual_v2"`, los siguientes parámetros adicionales están disponibles: + +* `speed`: Velocidad del habla. 1.0 es normal, <1.0 más lento, >1.0 más rápido (por defecto: 1.0, rango: 0.7 - 1.3). +* `similarity_boost`: Refuerzo de similitud. Valores más altos hacen que la voz sea más similar a la original (por defecto: 0.75, rango: 0.0 - 1.0). +* `use_speaker_boost`: Refuerza la similitud con la voz original del hablante (por defecto: False). +* `style`: Exageración del estilo. Valores más altos aumentan la expresión estilística pero pueden reducir la estabilidad (por defecto: 0.0, rango: 0.0 - 0.2). + +Cuando el parámetro `model` se establece en `"eleven_v3"`, los siguientes parámetros adicionales están disponibles: + +* `speed`: Velocidad del habla. 1.0 es normal, <1.0 más lento, >1.0 más rápido (por defecto: 1.0, rango: 0.7 - 1.3). +* `similarity_boost`: Refuerzo de similitud. Valores más altos hacen que la voz sea más similar a la original (por defecto: 0.75, rango: 0.0 - 1.0). + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `audio` | AUDIO | El audio generado a partir de la conversión de texto a voz. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/fr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/fr.md new file mode 100644 index 000000000..efba3770a --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/fr.md @@ -0,0 +1,35 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/fr.md) + +Le nœud ElevenLabs Text to Speech convertit du texte écrit en audio parlé en utilisant l'API ElevenLabs. Il vous permet de sélectionner une voix spécifique et d'ajuster finement diverses caractéristiques vocales comme la stabilité, la vitesse et le style pour générer une sortie audio personnalisée. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Oui | N/A | Voix à utiliser pour la synthèse vocale. À connecter depuis Voice Selector ou Instant Voice Clone. | +| `text` | STRING | Oui | N/A | Le texte à convertir en parole. | +| `stability` | FLOAT | Non | 0.0 - 1.0 | Stabilité de la voix. Des valeurs plus basses donnent une gamme émotionnelle plus large, des valeurs plus élevées produisent une parole plus cohérente mais potentiellement monotone (par défaut : 0.5). | +| `apply_text_normalization` | COMBO | Non | `"auto"`
`"on"`
`"off"` | Mode de normalisation du texte. 'auto' laisse le système décider, 'on' applique toujours la normalisation, 'off' la saute. | +| `model` | DYNAMICCOMBO | Non | `"eleven_multilingual_v2"`
`"eleven_v3"` | Modèle à utiliser pour la synthèse vocale. La sélection d'un modèle révèle ses paramètres spécifiques. | +| `language_code` | STRING | Non | N/A | Code de langue ISO-639-1 ou ISO-639-3 (par ex. 'en', 'es', 'fra'). Laisser vide pour une détection automatique (par défaut : ""). | +| `seed` | INT | Non | 0 - 2147483647 | Graine pour la reproductibilité (déterminisme non garanti) (par défaut : 1). | +| `output_format` | COMBO | Non | `"mp3_44100_192"`
`"opus_48000_192"` | Format de sortie audio. | + +**Paramètres spécifiques au modèle :** +Lorsque le paramètre `model` est défini sur `"eleven_multilingual_v2"`, les paramètres supplémentaires suivants deviennent disponibles : + +* `speed` : Vitesse de la parole. 1.0 est normal, <1.0 plus lent, >1.0 plus rapide (par défaut : 1.0, plage : 0.7 - 1.3). +* `similarity_boost` : Boost de similarité. Des valeurs plus élevées rendent la voix plus similaire à l'originale (par défaut : 0.75, plage : 0.0 - 1.0). +* `use_speaker_boost` : Boost de la similarité avec la voix originale du locuteur (par défaut : False). +* `style` : Exagération du style. Des valeurs plus élevées augmentent l'expression stylistique mais peuvent réduire la stabilité (par défaut : 0.0, plage : 0.0 - 0.2). + +Lorsque le paramètre `model` est défini sur `"eleven_v3"`, les paramètres supplémentaires suivants deviennent disponibles : + +* `speed` : Vitesse de la parole. 1.0 est normal, <1.0 plus lent, >1.0 plus rapide (par défaut : 1.0, plage : 0.7 - 1.3). +* `similarity_boost` : Boost de similarité. Des valeurs plus élevées rendent la voix plus similaire à l'originale (par défaut : 0.75, plage : 0.0 - 1.0). + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `audio` | AUDIO | L'audio généré par la conversion texte-parole. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ja.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ja.md new file mode 100644 index 000000000..482a7338e --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ja.md @@ -0,0 +1,35 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ja.md) + +ElevenLabs Text to Speech ノードは、ElevenLabs API を使用して書かれたテキストを音声に変換します。特定の音声を選択し、安定性、速度、スタイルなどの様々な音声特性を微調整して、カスタマイズされた音声出力を生成することができます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | はい | N/A | 音声合成に使用する音声。Voice Selector または Instant Voice Clone から接続します。 | +| `text` | STRING | はい | N/A | 音声に変換するテキスト。 | +| `stability` | FLOAT | いいえ | 0.0 - 1.0 | 音声の安定性。低い値は感情の幅を広げ、高い値はより一貫性のある(ただし単調になる可能性のある)音声を生成します(デフォルト: 0.5)。 | +| `apply_text_normalization` | COMBO | いいえ | `"auto"`
`"on"`
`"off"` | テキスト正規化モード。'auto' はシステムに決定させ、'on' は常に正規化を適用し、'off' はスキップします。 | +| `model` | DYNAMICCOMBO | いいえ | `"eleven_multilingual_v2"`
`"eleven_v3"` | テキスト読み上げに使用するモデル。モデルを選択すると、そのモデル固有のパラメータが表示されます。 | +| `language_code` | STRING | いいえ | N/A | ISO-639-1 または ISO-639-3 言語コード(例: 'en', 'es', 'fra')。自動検出の場合は空のままにします(デフォルト: "")。 | +| `seed` | INT | いいえ | 0 - 2147483647 | 再現性のためのシード(決定性は保証されません)(デフォルト: 1)。 | +| `output_format` | COMBO | いいえ | `"mp3_44100_192"`
`"opus_48000_192"` | 音声出力フォーマット。 | + +**モデル固有のパラメータ:** +`model` パラメータが `"eleven_multilingual_v2"` に設定されている場合、以下の追加パラメータが利用可能になります: + +* `speed`: 音声の速度。1.0 が通常、<1.0 で遅く、>1.0 で速くなります(デフォルト: 1.0, 範囲: 0.7 - 1.3)。 +* `similarity_boost`: 類似性ブースト。高い値ほど、音声がオリジナルに似たものになります(デフォルト: 0.75, 範囲: 0.0 - 1.0)。 +* `use_speaker_boost`: オリジナルの話者音声への類似性をブーストします(デフォルト: False)。 +* `style`: スタイルの強調。高い値ほどスタイル表現が強くなりますが、安定性が低下する可能性があります(デフォルト: 0.0, 範囲: 0.0 - 0.2)。 + +`model` パラメータが `"eleven_v3"` に設定されている場合、以下の追加パラメータが利用可能になります: + +* `speed`: 音声の速度。1.0 が通常、<1.0 で遅く、>1.0 で速くなります(デフォルト: 1.0, 範囲: 0.7 - 1.3)。 +* `similarity_boost`: 類似性ブースト。高い値ほど、音声がオリジナルに似たものになります(デフォルト: 0.75, 範囲: 0.0 - 1.0)。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `audio` | AUDIO | テキスト読み上げ変換によって生成された音声。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ko.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ko.md new file mode 100644 index 000000000..a36c846f4 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ko.md @@ -0,0 +1,35 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ko.md) + +ElevenLabs Text to Speech 노드는 ElevenLabs API를 사용하여 작성된 텍스트를 음성 오디오로 변환합니다. 특정 음성을 선택하고 안정성, 속도, 스타일과 같은 다양한 음성 특성을 미세 조정하여 맞춤형 오디오 출력을 생성할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 예 | N/A | 음성 합성에 사용할 음성. Voice Selector 또는 Instant Voice Clone에서 연결하세요. | +| `text` | STRING | 예 | N/A | 음성으로 변환할 텍스트입니다. | +| `stability` | FLOAT | 아니요 | 0.0 - 1.0 | 음성 안정성. 값이 낮을수록 감정 범위가 넓어지고, 값이 높을수록 더 일관되지만 단조로울 수 있는 음성이 생성됩니다 (기본값: 0.5). | +| `apply_text_normalization` | COMBO | 아니요 | `"auto"`
`"on"`
`"off"` | 텍스트 정규화 모드. 'auto'는 시스템이 결정하게 하고, 'on'은 항상 정규화를 적용하며, 'off'는 건너뜁니다. | +| `model` | DYNAMICCOMBO | 아니요 | `"eleven_multilingual_v2"`
`"eleven_v3"` | 텍스트-음성 변환에 사용할 모델입니다. 모델을 선택하면 해당 모델의 특정 매개변수가 표시됩니다. | +| `language_code` | STRING | 아니요 | N/A | ISO-639-1 또는 ISO-639-3 언어 코드 (예: 'en', 'es', 'fra'). 자동 감지를 위해 비워 두세요 (기본값: ""). | +| `seed` | INT | 아니요 | 0 - 2147483647 | 재현성을 위한 시드 (결정론적 보장 없음) (기본값: 1). | +| `output_format` | COMBO | 아니요 | `"mp3_44100_192"`
`"opus_48000_192"` | 오디오 출력 형식입니다. | + +**모델별 매개변수:** +`model` 매개변수가 `"eleven_multilingual_v2"`로 설정된 경우, 다음 추가 매개변수를 사용할 수 있습니다: + +* `speed`: 음성 속도. 1.0이 정상이며, <1.0은 느리고, >1.0은 빠릅니다 (기본값: 1.0, 범위: 0.7 - 1.3). +* `similarity_boost`: 유사성 부스트. 값이 높을수록 음성이 원본과 더 유사해집니다 (기본값: 0.75, 범위: 0.0 - 1.0). +* `use_speaker_boost`: 원본 화자 음성과의 유사성을 높입니다 (기본값: False). +* `style`: 스타일 과장. 값이 높을수록 스타일 표현이 증가하지만 안정성이 감소할 수 있습니다 (기본값: 0.0, 범위: 0.0 - 0.2). + +`model` 매개변수가 `"eleven_v3"`로 설정된 경우, 다음 추가 매개변수를 사용할 수 있습니다: + +* `speed`: 음성 속도. 1.0이 정상이며, <1.0은 느리고, >1.0은 빠릅니다 (기본값: 1.0, 범위: 0.7 - 1.3). +* `similarity_boost`: 유사성 부스트. 값이 높을수록 음성이 원본과 더 유사해집니다 (기본값: 0.75, 범위: 0.0 - 1.0). + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 텍스트-음성 변환으로 생성된 오디오입니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/pt-BR.md new file mode 100644 index 000000000..292d07b11 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/pt-BR.md @@ -0,0 +1,35 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/pt-BR.md) + +O nó **ElevenLabs Text to Speech** converte texto escrito em áudio falado usando a API da ElevenLabs. Ele permite que você selecione uma voz específica e ajuste várias características da fala, como estabilidade, velocidade e estilo, para gerar uma saída de áudio personalizada. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Sim | N/A | Voz a ser usada para a síntese de fala. Conecte a partir do seletor de voz ou do Instant Voice Clone. | +| `text` | STRING | Sim | N/A | O texto a ser convertido em fala. | +| `stability` | FLOAT | Não | 0.0 - 1.0 | Estabilidade da voz. Valores mais baixos proporcionam uma gama emocional mais ampla, valores mais altos produzem uma fala mais consistente, mas potencialmente monótona (padrão: 0.5). | +| `apply_text_normalization` | COMBO | Não | `"auto"`
`"on"`
`"off"` | Modo de normalização de texto. 'auto' deixa o sistema decidir, 'on' sempre aplica normalização, 'off' ignora. | +| `model` | DYNAMICCOMBO | Não | `"eleven_multilingual_v2"`
`"eleven_v3"` | Modelo a ser usado para a conversão de texto em fala. Selecionar um modelo revela seus parâmetros específicos. | +| `language_code` | STRING | Não | N/A | Código de idioma ISO-639-1 ou ISO-639-3 (ex.: 'en', 'es', 'fra'). Deixe vazio para detecção automática (padrão: ""). | +| `seed` | INT | Não | 0 - 2147483647 | Semente para reprodutibilidade (determinismo não garantido) (padrão: 1). | +| `output_format` | COMBO | Não | `"mp3_44100_192"`
`"opus_48000_192"` | Formato de saída de áudio. | + +**Parâmetros Específicos do Modelo:** +Quando o parâmetro `model` é definido como `"eleven_multilingual_v2"`, os seguintes parâmetros adicionais ficam disponíveis: + +* `speed`: Velocidade da fala. 1.0 é normal, <1.0 mais lento, >1.0 mais rápido (padrão: 1.0, intervalo: 0.7 - 1.3). +* `similarity_boost`: Aumento de similaridade. Valores mais altos tornam a voz mais semelhante à original (padrão: 0.75, intervalo: 0.0 - 1.0). +* `use_speaker_boost`: Aumenta a similaridade com a voz original do locutor (padrão: False). +* `style`: Exagero de estilo. Valores mais altos aumentam a expressão estilística, mas podem reduzir a estabilidade (padrão: 0.0, intervalo: 0.0 - 0.2). + +Quando o parâmetro `model` é definido como `"eleven_v3"`, os seguintes parâmetros adicionais ficam disponíveis: + +* `speed`: Velocidade da fala. 1.0 é normal, <1.0 mais lento, >1.0 mais rápido (padrão: 1.0, intervalo: 0.7 - 1.3). +* `similarity_boost`: Aumento de similaridade. Valores mais altos tornam a voz mais semelhante à original (padrão: 0.75, intervalo: 0.0 - 1.0). + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `audio` | AUDIO | O áudio gerado a partir da conversão de texto em fala. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ru.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ru.md new file mode 100644 index 000000000..98cdfea04 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ru.md @@ -0,0 +1,35 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/ru.md) + +Узел ElevenLabs Text to Speech преобразует письменный текст в аудио с помощью API ElevenLabs. Он позволяет выбрать конкретный голос и точно настроить различные характеристики речи, такие как стабильность, скорость и стиль, для создания персонализированного аудио. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Да | N/A | Голос для синтеза речи. Подключите от узла Voice Selector или Instant Voice Clone. | +| `text` | STRING | Да | N/A | Текст для преобразования в речь. | +| `stability` | FLOAT | Нет | 0.0 - 1.0 | Стабильность голоса. Более низкие значения дают более широкий эмоциональный диапазон, более высокие значения производят более стабильную, но потенциально монотонную речь (по умолчанию: 0.5). | +| `apply_text_normalization` | COMBO | Нет | `"auto"`
`"on"`
`"off"` | Режим нормализации текста. 'auto' позволяет системе решать, 'on' всегда применяет нормализацию, 'off' пропускает её. | +| `model` | DYNAMICCOMBO | Нет | `"eleven_multilingual_v2"`
`"eleven_v3"` | Модель для преобразования текста в речь. Выбор модели открывает её специфические параметры. | +| `language_code` | STRING | Нет | N/A | Код языка ISO-639-1 или ISO-639-3 (например, 'en', 'es', 'fra'). Оставьте пустым для автоматического определения (по умолчанию: ""). | +| `seed` | INT | Нет | 0 - 2147483647 | Сид (начальное число) для воспроизводимости (детерминизм не гарантирован) (по умолчанию: 1). | +| `output_format` | COMBO | Нет | `"mp3_44100_192"`
`"opus_48000_192"` | Формат выходного аудио. | + +**Параметры, специфичные для модели:** +Когда параметр `model` установлен в `"eleven_multilingual_v2"`, становятся доступны следующие дополнительные параметры: + +* `speed`: Скорость речи. 1.0 — нормальная, <1.0 медленнее, >1.0 быстрее (по умолчанию: 1.0, диапазон: 0.7 - 1.3). +* `similarity_boost`: Усиление сходства. Более высокие значения делают голос более похожим на оригинальный (по умолчанию: 0.75, диапазон: 0.0 - 1.0). +* `use_speaker_boost`: Усилить сходство с голосом оригинального диктора (по умолчанию: False). +* `style`: Преувеличение стиля. Более высокие значения усиливают стилистическую выразительность, но могут снизить стабильность (по умолчанию: 0.0, диапазон: 0.0 - 0.2). + +Когда параметр `model` установлен в `"eleven_v3"`, становятся доступны следующие дополнительные параметры: + +* `speed`: Скорость речи. 1.0 — нормальная, <1.0 медленнее, >1.0 быстрее (по умолчанию: 1.0, диапазон: 0.7 - 1.3). +* `similarity_boost`: Усиление сходства. Более высокие значения делают голос более похожим на оригинальный (по умолчанию: 0.75, диапазон: 0.0 - 1.0). + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `audio` | AUDIO | Сгенерированное аудио в результате преобразования текста в речь. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/tr.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/tr.md new file mode 100644 index 000000000..179ba3222 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/tr.md @@ -0,0 +1,35 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/tr.md) + +ElevenLabs Metinden Sese düğümü, ElevenLabs API'sini kullanarak yazılı metni konuşulan sese dönüştürür. Belirli bir ses seçmenize ve kararlılık, hız ve stil gibi çeşitli konuşma özelliklerini ince ayarlayarak özelleştirilmiş bir ses çıktısı oluşturmanıza olanak tanır. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | Evet | N/A | Konuşma sentezi için kullanılacak ses. Ses Seçici veya Anında Ses Klonlama düğümünden bağlayın. | +| `text` | STRING | Evet | N/A | Sese dönüştürülecek metin. | +| `stability` | FLOAT | Hayır | 0.0 - 1.0 | Ses kararlılığı. Düşük değerler daha geniş bir duygusal aralık sağlar, yüksek değerler daha tutarlı ancak potansiyel olarak monoton bir konuşma üretir (varsayılan: 0.5). | +| `apply_text_normalization` | COMBO | Hayır | `"auto"`
`"on"`
`"off"` | Metin normalleştirme modu. 'auto' sisteme karar verme izni verir, 'on' her zaman normalleştirme uygular, 'off' atlar. | +| `model` | DYNAMICCOMBO | Hayır | `"eleven_multilingual_v2"`
`"eleven_v3"` | Metinden sese dönüşüm için kullanılacak model. Bir model seçmek, o modele özgü parametreleri görünür kılar. | +| `language_code` | STRING | Hayır | N/A | ISO-639-1 veya ISO-639-3 dil kodu (örn. 'en', 'es', 'fra'). Otomatik algılama için boş bırakın (varsayılan: ""). | +| `seed` | INT | Hayır | 0 - 2147483647 | Tekrarlanabilirlik için tohum (determinizm garanti edilmez) (varsayılan: 1). | +| `output_format` | COMBO | Hayır | `"mp3_44100_192"`
`"opus_48000_192"` | Ses çıktı formatı. | + +**Modele Özgü Parametreler:** +`model` parametresi `"eleven_multilingual_v2"` olarak ayarlandığında, aşağıdaki ek parametreler kullanılabilir hale gelir: + +* `speed`: Konuşma hızı. 1.0 normaldir, <1.0 daha yavaş, >1.0 daha hızlı (varsayılan: 1.0, aralık: 0.7 - 1.3). +* `similarity_boost`: Benzerlik artırımı. Daha yüksek değerler sesi orijinaline daha benzer hale getirir (varsayılan: 0.75, aralık: 0.0 - 1.0). +* `use_speaker_boost`: Orijinal konuşmacı sesine benzerliği artırır (varsayılan: False). +* `style`: Stil abartısı. Daha yüksek değerler stilistik ifadeyi artırır ancak kararlılığı azaltabilir (varsayılan: 0.0, aralık: 0.0 - 0.2). + +`model` parametresi `"eleven_v3"` olarak ayarlandığında, aşağıdaki ek parametreler kullanılabilir hale gelir: + +* `speed`: Konuşma hızı. 1.0 normaldir, <1.0 daha yavaş, >1.0 daha hızlı (varsayılan: 1.0, aralık: 0.7 - 1.3). +* `similarity_boost`: Benzerlik artırımı. Daha yüksek değerler sesi orijinaline daha benzer hale getirir (varsayılan: 0.75, aralık: 0.0 - 1.0). + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `audio` | AUDIO | Metinden sese dönüşümden elde edilen oluşturulmuş ses. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh-TW.md new file mode 100644 index 000000000..a97795790 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh-TW.md @@ -0,0 +1,35 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh-TW.md) + +ElevenLabs 文字轉語音節點使用 ElevenLabs API 將書面文字轉換為語音音訊。它允許您選擇特定的語音,並微調各種語音特性,如穩定性、速度和風格,以生成自訂的音訊輸出。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 是 | N/A | 用於語音合成的語音。從 Voice Selector 或 Instant Voice Clone 節點連接。 | +| `text` | STRING | 是 | N/A | 要轉換為語音的文字。 | +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 語音穩定性。較低的值提供更廣泛的情感範圍,較高的值產生更一致但可能單調的語音(預設值:0.5)。 | +| `apply_text_normalization` | COMBO | 否 | `"auto"`
`"on"`
`"off"` | 文字正規化模式。'auto' 由系統決定,'on' 始終套用正規化,'off' 則跳過。 | +| `model` | DYNAMICCOMBO | 否 | `"eleven_multilingual_v2"`
`"eleven_v3"` | 用於文字轉語音的模型。選擇模型後會顯示其特定參數。 | +| `language_code` | STRING | 否 | N/A | ISO-639-1 或 ISO-639-3 語言代碼(例如 'en', 'es', 'fra')。留空則自動偵測(預設值:"")。 | +| `seed` | INT | 否 | 0 - 2147483647 | 用於可重現性的種子值(不保證確定性)(預設值:1)。 | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音訊輸出格式。 | + +**模型特定參數:** +當 `model` 參數設定為 `"eleven_multilingual_v2"` 時,以下額外參數將變為可用: + +* `speed`:語音速度。1.0 為正常,<1.0 較慢,>1.0 較快(預設值:1.0,範圍:0.7 - 1.3)。 +* `similarity_boost`:相似度增強。較高的值使語音更接近原始語音(預設值:0.75,範圍:0.0 - 1.0)。 +* `use_speaker_boost`:增強與原始說話者語音的相似度(預設值:False)。 +* `style`:風格誇張程度。較高的值增加風格表現力,但可能降低穩定性(預設值:0.0,範圍:0.0 - 0.2)。 + +當 `model` 參數設定為 `"eleven_v3"` 時,以下額外參數將變為可用: + +* `speed`:語音速度。1.0 為正常,<1.0 較慢,>1.0 較快(預設值:1.0,範圍:0.7 - 1.3)。 +* `similarity_boost`:相似度增強。較高的值使語音更接近原始語音(預設值:0.75,範圍:0.0 - 1.0)。 + +## 輸出 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 從文字轉語音轉換生成的音訊。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh.md b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh.md new file mode 100644 index 000000000..e41e0f760 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh.md @@ -0,0 +1,35 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsTextToSpeech/zh.md) + +ElevenLabs 文本转语音节点利用 ElevenLabs API 将书面文本转换为语音音频。它允许您选择特定的语音,并微调各种语音特性,如稳定性、速度和风格,以生成定制的音频输出。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | CUSTOM | 是 | N/A | 用于语音合成的语音。从 Voice Selector 或 Instant Voice Clone 节点连接。 | +| `text` | STRING | 是 | N/A | 要转换为语音的文本。 | +| `stability` | FLOAT | 否 | 0.0 - 1.0 | 语音稳定性。较低的值提供更广的情感范围,较高的值产生更一致但可能单调的语音(默认:0.5)。 | +| `apply_text_normalization` | COMBO | 否 | `"auto"`
`"on"`
`"off"` | 文本规范化模式。'auto' 由系统决定,'on' 始终应用规范化,'off' 跳过规范化。 | +| `model` | DYNAMICCOMBO | 否 | `"eleven_multilingual_v2"`
`"eleven_v3"` | 用于文本转语音的模型。选择模型会显示其特定参数。 | +| `language_code` | STRING | 否 | N/A | ISO-639-1 或 ISO-639-3 语言代码(例如 'en'、'es'、'fra')。留空以自动检测(默认:"")。 | +| `seed` | INT | 否 | 0 - 2147483647 | 用于可重复性的种子(不保证确定性)(默认:1)。 | +| `output_format` | COMBO | 否 | `"mp3_44100_192"`
`"opus_48000_192"` | 音频输出格式。 | + +**模型特定参数:** +当 `model` 参数设置为 `"eleven_multilingual_v2"` 时,以下附加参数变为可用: + +* `speed`: 语速。1.0 为正常,<1.0 更慢,>1.0 更快(默认:1.0,范围:0.7 - 1.3)。 +* `similarity_boost`: 相似度增强。值越高,语音与原始语音越相似(默认:0.75,范围:0.0 - 1.0)。 +* `use_speaker_boost`: 增强与原始说话者语音的相似度(默认:False)。 +* `style`: 风格夸张度。值越高,风格表达越强,但可能降低稳定性(默认:0.0,范围:0.0 - 0.2)。 + +当 `model` 参数设置为 `"eleven_v3"` 时,以下附加参数变为可用: + +* `speed`: 语速。1.0 为正常,<1.0 更慢,>1.0 更快(默认:1.0,范围:0.7 - 1.3)。 +* `similarity_boost`: 相似度增强。值越高,语音与原始语音越相似(默认:0.75,范围:0.0 - 1.0)。 + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `audio` | AUDIO | 文本转语音转换生成的音频。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ar.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ar.md new file mode 100644 index 000000000..230f40e06 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ar.md @@ -0,0 +1,15 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ar.md) + +يسمح عقد محدد صوت إيلفين لابس باختيار صوت محدد من قائمة محددة مسبقاً لأصوات تحويل النص إلى كلام من إيلفين لابس. يأخذ العقد اسم الصوت كمدخل ويخرج المعرف المقابل للصوت المطلوب لتوليد الصوت. يبسط هذا العقد عملية اختيار صوت متوافق للاستخدام مع عُقد الصوت الأخرى من إيلفين لابس. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | نعم | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | اختر صوتاً من الأصوات المحددة مسبقاً من إيلفين لابس. | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `voice` | STRING | المعرف الفريد للصوت المحدد من إيلفين لابس، والذي يمكن تمريره إلى عُقد أخرى لتوليد تحويل النص إلى كلام. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/en.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/en.md new file mode 100644 index 000000000..6b53050ac --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/en.md @@ -0,0 +1,15 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/en.md) + +The ElevenLabs Voice Selector node allows you to choose a specific voice from a predefined list of ElevenLabs text-to-speech voices. It takes a voice name as input and outputs the corresponding voice identifier needed for audio generation. This node simplifies the process of selecting a compatible voice for use with other ElevenLabs audio nodes. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Yes | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Choose a voice from the predefined ElevenLabs voices. | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `voice` | STRING | The unique identifier for the selected ElevenLabs voice, which can be passed to other nodes for text-to-speech generation. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/es.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/es.md new file mode 100644 index 000000000..f16dbdd8e --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/es.md @@ -0,0 +1,15 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/es.md) + +El nodo ElevenLabs Voice Selector permite elegir una voz específica de una lista predefinida de voces de síntesis de voz de ElevenLabs. Toma un nombre de voz como entrada y devuelve el identificador de voz correspondiente necesario para la generación de audio. Este nodo simplifica el proceso de selección de una voz compatible para su uso con otros nodos de audio de ElevenLabs. + +## Entradas + +| Parámetro | Tipo de Dato | Requerido | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Sí | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Elige una voz de la lista predefinida de voces de ElevenLabs. | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `voice` | STRING | El identificador único para la voz de ElevenLabs seleccionada, que puede pasarse a otros nodos para la generación de texto a voz. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/fr.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/fr.md new file mode 100644 index 000000000..f3c9c7ccd --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/fr.md @@ -0,0 +1,15 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/fr.md) + +Le nœud ElevenLabs Voice Selector vous permet de choisir une voix spécifique parmi une liste prédéfinie de voix de synthèse vocale ElevenLabs. Il prend un nom de voix en entrée et renvoie l'identifiant correspondant nécessaire à la génération audio. Ce nœud simplifie le processus de sélection d'une voix compatible pour une utilisation avec d'autres nœuds audio ElevenLabs. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Oui | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Choisissez une voix parmi les voix prédéfinies d'ElevenLabs. | + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `voice` | STRING | L'identifiant unique de la voix ElevenLabs sélectionnée, qui peut être transmis à d'autres nœuds pour la génération de synthèse vocale. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ja.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ja.md new file mode 100644 index 000000000..d6e7dd937 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ja.md @@ -0,0 +1,15 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ja.md) + +ElevenLabs Voice Selector ノードは、事前に定義された ElevenLabs テキスト読み上げ音声のリストから特定の音声を選択することができます。音声名を入力として受け取り、音声生成に必要な対応する音声識別子を出力します。このノードは、他の ElevenLabs オーディオノードで使用する互換性のある音声を選択するプロセスを簡素化します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | はい | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | 事前定義された ElevenLabs 音声から選択します。 | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `voice` | STRING | 選択された ElevenLabs 音声の一意の識別子です。この識別子は、テキスト読み上げ生成を行う他のノードに渡すことができます。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ko.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ko.md new file mode 100644 index 000000000..9fa9d091c --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ko.md @@ -0,0 +1,15 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ko.md) + +ElevenLabs Voice Selector 노드를 사용하면 ElevenLabs 텍스트 음성 변환 사전 정의 음성 목록에서 특정 음성을 선택할 수 있습니다. 음성 이름을 입력으로 받아 음성 생성에 필요한 해당 음식 식별자를 출력합니다. 이 노드는 다른 ElevenLabs 오디오 노드와 함께 사용할 호환 음성을 선택하는 과정을 단순화합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | 예 | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | 사전 정의된 ElevenLabs 음성 목록에서 음성을 선택합니다. | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `voice` | STRING | 선택한 ElevenLabs 음성의 고유 식별자로, 텍스트 음성 변환 생성을 위해 다른 노드로 전달할 수 있습니다. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/pt-BR.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/pt-BR.md new file mode 100644 index 000000000..f4450fd09 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/pt-BR.md @@ -0,0 +1,15 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/pt-BR.md) + +O nó ElevenLabs Voice Selector permite que você escolha uma voz específica de uma lista predefinida de vozes de texto para fala da ElevenLabs. Ele recebe um nome de voz como entrada e gera o identificador de voz correspondente necessário para a geração de áudio. Este nó simplifica o processo de seleção de uma voz compatível para uso com outros nós de áudio da ElevenLabs. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Sim | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Escolha uma voz da lista predefinida de vozes da ElevenLabs. | + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `voice` | STRING | O identificador único para a voz da ElevenLabs selecionada, que pode ser passado para outros nós para geração de texto em fala. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ru.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ru.md new file mode 100644 index 000000000..fb755cff6 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ru.md @@ -0,0 +1,15 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/ru.md) + +Узел ElevenLabs Voice Selector позволяет выбрать конкретный голос из предопределённого списка голосов для преобразования текста в речь от ElevenLabs. Он принимает на вход имя голоса и выводит соответствующий идентификатор голоса, необходимый для генерации аудио. Этот узел упрощает процесс выбора совместимого голоса для использования с другими аудиоузлами ElevenLabs. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Да | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Выберите голос из предопределённого списка голосов ElevenLabs. | + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `voice` | STRING | Уникальный идентификатор для выбранного голоса ElevenLabs, который может быть передан другим узлам для генерации речи из текста. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/tr.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/tr.md new file mode 100644 index 000000000..49c18cff6 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/tr.md @@ -0,0 +1,15 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/tr.md) + +ElevenLabs Ses Seçici düğümü, önceden tanımlanmış ElevenLabs metinden sese dönüştürme sesleri listesinden belirli bir ses seçmenizi sağlar. Bir ses adını girdi olarak alır ve ses oluşturma için gerekli olan karşılık gelen ses tanımlayıcısını çıktı olarak verir. Bu düğüm, diğer ElevenLabs ses düğümleriyle kullanım için uyumlu bir ses seçme sürecini basitleştirir. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | Evet | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | Önceden tanımlanmış ElevenLabs seslerinden bir ses seçin. | + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `voice` | STRING | Seçilen ElevenLabs sesinin benzersiz tanımlayıcısı. Bu tanımlayıcı, metinden sese dönüştürme işlemi için diğer düğümlere aktarılabilir. | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh-TW.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh-TW.md new file mode 100644 index 000000000..966fd86b5 --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh-TW.md @@ -0,0 +1,15 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh-TW.md) + +此節點允許您從預定義的 ElevenLabs 文字轉語音語音清單中選擇特定語音。它接收語音名稱作為輸入,並輸出音訊生成所需的對應語音識別碼。此節點簡化了為其他 ElevenLabs 音訊節點選擇相容語音的過程。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | 是 | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | 從預定義的 ElevenLabs 語音中選擇一個語音。 | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `voice` | STRING | 所選 ElevenLabs 語音的獨特識別碼,可傳遞給其他節點用於文字轉語音生成。 | diff --git a/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh.md b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh.md new file mode 100644 index 000000000..471f9099b --- /dev/null +++ b/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh.md @@ -0,0 +1,15 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ElevenLabsVoiceSelector/zh.md) + +ElevenLabs 语音选择器节点允许您从预定义的 ElevenLabs 文本转语音语音列表中选择特定语音。它接收一个语音名称作为输入,并输出音频生成所需的对应语音标识符。此节点简化了为其他 ElevenLabs 音频节点选择兼容语音的过程。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `voice` | STRING | 是 | `"Adam"`
`"Antoni"`
`"Arnold"`
`"Bella"`
`"Domi"`
`"Elli"`
`"Josh"`
`"Rachel"`
`"Sam"` | 从预定义的 ElevenLabs 语音中选择一个语音。 | + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `voice` | STRING | 所选 ElevenLabs 语音的唯一标识符,可传递给其他节点用于文本转语音生成。 | diff --git a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/ar.md b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/ar.md index 4a6961e57..b5a249f43 100644 --- a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/ar.md +++ b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | يُرجع عينات صوتية كامنة فارغة بقيم صفرية | \ No newline at end of file +| `output` | LATENT | يُرجع عينات صوتية كامنة فارغة بقيم صفرية | diff --git a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/pt-BR.md b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/pt-BR.md index 404ece692..da2d63dc7 100644 --- a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/pt-BR.md @@ -13,4 +13,4 @@ O nó EmptyAceStepLatentAudio cria amostras latentes de áudio vazias de uma dur | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | Retorna amostras latentes de áudio vazias com valores zero | \ No newline at end of file +| `output` | LATENT | Retorna amostras latentes de áudio vazias com valores zero | diff --git a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/tr.md b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/tr.md index ecd1550f7..002c18c70 100644 --- a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/tr.md +++ b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/tr.md @@ -13,4 +13,4 @@ EmptyAceStepLatentAudio düğümü, belirtilen süreye sahip boş gizli ses örn | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | Sıfırlarla dolu boş gizli ses örneklerini döndürür | \ No newline at end of file +| `output` | LATENT | Sıfırlarla dolu boş gizli ses örneklerini döndürür | diff --git a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/zh-TW.md b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/zh-TW.md index 5b4700230..efa8ab859 100644 --- a/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyAceStepLatentAudio/zh-TW.md @@ -13,4 +13,4 @@ EmptyAceStepLatentAudio 節點可建立指定時長的空白潛在音訊樣本 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | LATENT | 返回內容全為零值的空白潛在音訊樣本 | \ No newline at end of file +| `output` | LATENT | 返回內容全為零值的空白潛在音訊樣本 | diff --git a/comfyui_embedded_docs/docs/EmptyAudio/ar.md b/comfyui_embedded_docs/docs/EmptyAudio/ar.md index eaa373636..aca698a36 100644 --- a/comfyui_embedded_docs/docs/EmptyAudio/ar.md +++ b/comfyui_embedded_docs/docs/EmptyAudio/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | المقطع الصوتي الصامت المُنشئ الذي يحتوي على بيانات شكل الموجة ومعلومات معدل العينات | \ No newline at end of file +| `AUDIO` | AUDIO | المقطع الصوتي الصامت المُنشئ الذي يحتوي على بيانات شكل الموجة ومعلومات معدل العينات | diff --git a/comfyui_embedded_docs/docs/EmptyAudio/pt-BR.md b/comfyui_embedded_docs/docs/EmptyAudio/pt-BR.md index c57ed49a8..5eb456994 100644 --- a/comfyui_embedded_docs/docs/EmptyAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyAudio/pt-BR.md @@ -14,4 +14,4 @@ O nó EmptyAudio gera um clipe de áudio silencioso com duração, taxa de amost | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | O clipe de áudio silencioso gerado, contendo dados da forma de onda e informações da taxa de amostragem | \ No newline at end of file +| `AUDIO` | AUDIO | O clipe de áudio silencioso gerado, contendo dados da forma de onda e informações da taxa de amostragem | diff --git a/comfyui_embedded_docs/docs/EmptyAudio/tr.md b/comfyui_embedded_docs/docs/EmptyAudio/tr.md index 9b2f0be0b..ee12d9664 100644 --- a/comfyui_embedded_docs/docs/EmptyAudio/tr.md +++ b/comfyui_embedded_docs/docs/EmptyAudio/tr.md @@ -14,4 +14,4 @@ EmptyAudio düğümü, belirtilen süre, örnekleme hızı ve kanal konfigürasy | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Dalga formu verileri ve örnekleme hızı bilgisini içeren oluşturulmuş sessiz ses klibi | \ No newline at end of file +| `AUDIO` | AUDIO | Dalga formu verileri ve örnekleme hızı bilgisini içeren oluşturulmuş sessiz ses klibi | diff --git a/comfyui_embedded_docs/docs/EmptyAudio/zh-TW.md b/comfyui_embedded_docs/docs/EmptyAudio/zh-TW.md index e0ad0c17c..4b2134656 100644 --- a/comfyui_embedded_docs/docs/EmptyAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyAudio/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 生成的靜音音訊片段,包含波形資料和取樣率資訊 | \ No newline at end of file +| `AUDIO` | AUDIO | 生成的靜音音訊片段,包含波形資料和取樣率資訊 | diff --git a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/ar.md b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/ar.md index 8562b9574..d7c034201 100644 --- a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر الصورة الكامنة الفارغة المُنشأة بالأبعاد المحددة | \ No newline at end of file +| `samples` | LATENT | موتر الصورة الكامنة الفارغة المُنشأة بالأبعاد المحددة | diff --git a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/pt-BR.md index d991935f2..93cccb43b 100644 --- a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/pt-BR.md @@ -14,4 +14,4 @@ O nó EmptyChromaRadianceLatentImage cria uma imagem latente em branco com dimen | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | O tensor da imagem latente vazia gerada com as dimensões especificadas | \ No newline at end of file +| `samples` | LATENT | O tensor da imagem latente vazia gerada com as dimensões especificadas | diff --git a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/tr.md b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/tr.md index a90d272fc..c8274ab9e 100644 --- a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/tr.md @@ -14,4 +14,4 @@ EmptyChromaRadianceLatentImage düğümü, chroma radiance iş akışlarında ku | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Belirtilen boyutlarda oluşturulmuş boş latent görüntü tensörü | \ No newline at end of file +| `samples` | LATENT | Belirtilen boyutlarda oluşturulmuş boş latent görüntü tensörü | diff --git a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/zh-TW.md index 9ef5c9d25..e5587f918 100644 --- a/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyChromaRadianceLatentImage/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 生成的具有指定尺寸的空白潛在圖像張量 | \ No newline at end of file +| `samples` | LATENT | 生成的具有指定尺寸的空白潛在圖像張量 | diff --git a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/ar.md b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/ar.md index eb564b3c9..052bf9f5b 100644 --- a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/ar.md +++ b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر الفيديو الكامن الفارغ المُنشأ بقيم صفرية | \ No newline at end of file +| `samples` | LATENT | موتر الفيديو الكامن الفارغ المُنشأ بقيم صفرية | diff --git a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/pt-BR.md b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/pt-BR.md index d0aa1aa92..94a75fba4 100644 --- a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/pt-BR.md @@ -15,4 +15,4 @@ O nó EmptyCosmosLatentVideo cria um tensor de vídeo latente vazio com dimensõ | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | O tensor de vídeo latente vazio gerado, com valores zero | \ No newline at end of file +| `samples` | LATENT | O tensor de vídeo latente vazio gerado, com valores zero | diff --git a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/tr.md b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/tr.md index 0fd45f57a..28ea43e5e 100644 --- a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/tr.md +++ b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/tr.md @@ -15,4 +15,4 @@ EmptyCosmosLatentVideo düğümü, belirtilen boyutlarda boş bir gizli video te | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Sıfır değerlerle oluşturulan boş gizli video tensörü | \ No newline at end of file +| `samples` | LATENT | Sıfır değerlerle oluşturulan boş gizli video tensörü | diff --git a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/zh-TW.md b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/zh-TW.md index 546f2833a..a6b256cfc 100644 --- a/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyCosmosLatentVideo/zh-TW.md @@ -15,4 +15,4 @@ EmptyCosmosLatentVideo 節點會建立一個具有指定尺寸的空潛在影片 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 生成的空潛在影片張量,其值均為零 | \ No newline at end of file +| `samples` | LATENT | 生成的空潛在影片張量,其值均為零 | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ar.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ar.md index be7ccb2bc..aa333e484 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر كامن مملوء بالأصفار. الشكل هو `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | موتر كامن مملوء بالأصفار. الشكل هو `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/en.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/en.md index c7dcce560..d027e4e2b 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/en.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/en.md @@ -16,4 +16,4 @@ The EmptyFlux2LatentImage node creates a blank, empty latent representation. It | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `samples` | LATENT | A latent tensor filled with zeros. The shape is `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | A latent tensor filled with zeros. The shape is `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/es.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/es.md index e33173ac6..db4f9ee2f 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/es.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/es.md @@ -16,4 +16,4 @@ El nodo EmptyFlux2LatentImage crea una representación latente en blanco y vací | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `samples` | LATENT | Un tensor latente lleno de ceros. La forma es `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | Un tensor latente lleno de ceros. La forma es `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/fr.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/fr.md index 696db7fcb..dfb561d70 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/fr.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/fr.md @@ -16,4 +16,4 @@ Le nœud EmptyFlux2LatentImage crée une représentation latente vide et vierge. | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `samples` | LATENT | Un tenseur latent rempli de zéros. La forme est `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | Un tenseur latent rempli de zéros. La forme est `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ja.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ja.md index 15c76f4f8..9783ed0a2 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ja.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ja.md @@ -16,4 +16,4 @@ EmptyFlux2LatentImageノードは、空白で空の潜在表現を作成しま | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `samples` | LATENT | ゼロで満たされた潜在テンソルです。形状は`[batch_size, 128, height // 16, width // 16]`となります。 | \ No newline at end of file +| `samples` | LATENT | ゼロで満たされた潜在テンソルです。形状は`[batch_size, 128, height // 16, width // 16]`となります。 | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ko.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ko.md index f7612d27f..0e53671ff 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ko.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ko.md @@ -16,4 +16,4 @@ EmptyFlux2LatentImage 노드는 비어 있는 빈 잠재 표현을 생성합니 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `samples` | LATENT | 0으로 채워진 잠재 텐서입니다. 형태(shape)는 `[batch_size, 128, height // 16, width // 16]`입니다. | \ No newline at end of file +| `samples` | LATENT | 0으로 채워진 잠재 텐서입니다. 형태(shape)는 `[batch_size, 128, height // 16, width // 16]`입니다. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/pt-BR.md index cccce9e4c..27d960e6d 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/pt-BR.md @@ -16,4 +16,4 @@ O nó EmptyFlux2LatentImage cria uma representação latente em branco e vazia. | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | Um tensor latente preenchido com zeros. A forma é `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | Um tensor latente preenchido com zeros. A forma é `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ru.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ru.md index 108e76eef..a1c311117 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ru.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `samples` | LATENT | Латентный тензор, заполненный нулями. Форма тензора: `[batch_size, 128, height // 16, width // 16]`. | \ No newline at end of file +| `samples` | LATENT | Латентный тензор, заполненный нулями. Форма тензора: `[batch_size, 128, height // 16, width // 16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/tr.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/tr.md index 4ebc767d4..16db9a192 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/tr.md @@ -16,4 +16,4 @@ EmptyFlux2LatentImage düğümü, boş, sıfır dolu bir gizli (latent) temsil o | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Sıfırlarla dolu bir gizli tensör. Şekli `[batch_size, 128, height // 16, width // 16]` şeklindedir. | \ No newline at end of file +| `samples` | LATENT | Sıfırlarla dolu bir gizli tensör. Şekli `[batch_size, 128, height // 16, width // 16]` şeklindedir. | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh-TW.md index a05916cf7..95890726e 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh-TW.md @@ -16,4 +16,4 @@ EmptyFlux2LatentImage 節點會建立一個空白的潛在表徵。它會生成 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一個填充為零的潛在張量。形狀為 `[batch_size, 128, height // 16, width // 16]`。 | \ No newline at end of file +| `samples` | LATENT | 一個填充為零的潛在張量。形狀為 `[batch_size, 128, height // 16, width // 16]`。 | diff --git a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh.md b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh.md index 468c72778..ee6a83468 100644 --- a/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh.md +++ b/comfyui_embedded_docs/docs/EmptyFlux2LatentImage/zh.md @@ -16,4 +16,4 @@ EmptyFlux2LatentImage 节点创建一个空白的潜在表示。它生成一个 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一个填充零值的潜在张量。其形状为 `[batch_size, 128, height // 16, width // 16]`。 | \ No newline at end of file +| `samples` | LATENT | 一个填充零值的潜在张量。其形状为 `[batch_size, 128, height // 16, width // 16]`。 | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/ar.md b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/ar.md index 0284c8e5a..df45d03a2 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/ar.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | موتر كامن فارغ بالأبعاد المحددة لمعالجة الصور باستخدام Hunyuan | \ No newline at end of file +| `LATENT` | LATENT | موتر كامن فارغ بالأبعاد المحددة لمعالجة الصور باستخدام Hunyuan | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/pt-BR.md b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/pt-BR.md index 6c6f41db8..097402ce5 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/pt-BR.md @@ -14,4 +14,4 @@ O nó EmptyHunyuanImageLatent cria um tensor latente vazio com dimensões espec | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | Um tensor latente vazio com as dimensões especificadas para processamento de imagem Hunyuan | \ No newline at end of file +| `LATENT` | LATENT | Um tensor latente vazio com as dimensões especificadas para processamento de imagem Hunyuan | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/tr.md b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/tr.md index 7f273bbb0..94f8df6c0 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/tr.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/tr.md @@ -14,4 +14,4 @@ EmptyHunyuanImageLatent düğümü, Hunyuan görüntü oluşturma modelleriyle k | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Hunyuan görüntü işleme için belirtilen boyutlarda boş bir latent tensör | \ No newline at end of file +| `LATENT` | LATENT | Hunyuan görüntü işleme için belirtilen boyutlarda boş bir latent tensör | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/zh-TW.md b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/zh-TW.md index 7b60fdde0..d3bdb63d1 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanImageLatent/zh-TW.md @@ -14,4 +14,4 @@ EmptyHunyuanImageLatent 節點會建立一個具有特定維度的空潛在張 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 具有指定維度的空潛在張量,用於渾元影像處理 | \ No newline at end of file +| `LATENT` | LATENT | 具有指定維度的空潛在張量,用於渾元影像處理 | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/ar.md b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/ar.md index 4b01c252d..1ffd9ef06 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/ar.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/ar.md @@ -15,4 +15,4 @@ | المعامل | النوع في Comfy | الوصف | | --------- | ---------- | ----------------------------------------------------------------------------------------- | -| `samples` | `LATENT` | عينات الفيديو الكامنة المُنشأة التي تحتوي على موترات صفرية، جاهزة لمهام المعالجة والتوليد. | \ No newline at end of file +| `samples` | `LATENT` | عينات الفيديو الكامنة المُنشأة التي تحتوي على موترات صفرية، جاهزة لمهام المعالجة والتوليد. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/pt-BR.md b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/pt-BR.md index ae2392fce..8236e4432 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/pt-BR.md @@ -15,4 +15,4 @@ O nó `EmptyHunyuanLatentVideo` é semelhante ao nó `EmptyLatentImage`. Você p | Parâmetro | Tipo Comfy | Descrição | | --------- | ---------- | ----------------------------------------------------------------------------------------- | -| `samples` | `LATENT` | Amostras latentes de vídeo geradas contendo tensores zerados, prontas para tarefas de processamento e geração. | \ No newline at end of file +| `samples` | `LATENT` | Amostras latentes de vídeo geradas contendo tensores zerados, prontas para tarefas de processamento e geração. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/tr.md b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/tr.md index 6ee72cceb..59d5a07db 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/tr.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/tr.md @@ -15,4 +15,4 @@ | Parametre | Comfy Türü | Açıklama | | --------- | ---------- | ----------------------------------------------------------------------------------------- | -| `samples` | `LATENT` | İşleme ve üretim görevleri için hazır, sıfır tensörleri içeren üretilmiş gizli video örnekleri. | \ No newline at end of file +| `samples` | `LATENT` | İşleme ve üretim görevleri için hazır, sıfır tensörleri içeren üretilmiş gizli video örnekleri. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/zh-TW.md b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/zh-TW.md index 11477fc60..c26b34922 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanLatentVideo/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | Comfy 類型 | 描述 | | --------- | ---------- | -------------------------------------------------------------------- | -| `samples` | `LATENT` | 生成的潛在影片樣本,包含零張量,準備用於處理和生成任務。 | \ No newline at end of file +| `samples` | `LATENT` | 生成的潛在影片樣本,包含零張量,準備用於處理和生成任務。 | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ar.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ar.md index 395f841aa..58705975e 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ar.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر كامن فارغ بأبعاد مناسبة لنموذج HunyuanVideo 1.5. شكل الموتر هو `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | موتر كامن فارغ بأبعاد مناسبة لنموذج HunyuanVideo 1.5. شكل الموتر هو `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/en.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/en.md index 77d5e5a11..6394152cf 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/en.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/en.md @@ -17,4 +17,4 @@ This node creates an empty latent tensor specifically formatted for use with the | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `samples` | LATENT | An empty latent tensor with dimensions suitable for the HunyuanVideo 1.5 model. The tensor has a shape of `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | An empty latent tensor with dimensions suitable for the HunyuanVideo 1.5 model. The tensor has a shape of `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/es.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/es.md index 401c593b9..f59fae53e 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/es.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/es.md @@ -17,4 +17,4 @@ Este nodo crea un tensor latente vacío específicamente formateado para su uso | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `samples` | LATENT | Un tensor latente vacío con dimensiones adecuadas para el modelo HunyuanVideo 1.5. El tensor tiene una forma de `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | Un tensor latente vacío con dimensiones adecuadas para el modelo HunyuanVideo 1.5. El tensor tiene una forma de `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/fr.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/fr.md index eca56a957..f36dfc1c5 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/fr.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/fr.md @@ -17,4 +17,4 @@ Ce nœud crée un tenseur latent vide spécifiquement formaté pour une utilisat | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `samples` | LATENT | Un tenseur latent vide avec des dimensions adaptées au modèle HunyuanVideo 1.5. Le tenseur a une forme de `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | Un tenseur latent vide avec des dimensions adaptées au modèle HunyuanVideo 1.5. Le tenseur a une forme de `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ja.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ja.md index eb20b09b7..e18b3fde1 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ja.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ja.md @@ -17,4 +17,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `samples` | LATENT | HunyuanVideo 1.5モデルに適した次元を持つ空の潜在テンソル。テンソルの形状は`[batch_size, 32, frames, height//16, width//16]`です。 | \ No newline at end of file +| `samples` | LATENT | HunyuanVideo 1.5モデルに適した次元を持つ空の潜在テンソル。テンソルの形状は`[batch_size, 32, frames, height//16, width//16]`です。 | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ko.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ko.md index f5fdb0bec..bdeb2ba87 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ko.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ko.md @@ -17,4 +17,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `samples` | LATENT | HunyuanVideo 1.5 모델에 적합한 차원을 가진 빈 잠재 텐서입니다. 텐서의 형태는 `[batch_size, 32, frames, height//16, width//16]`입니다. | \ No newline at end of file +| `samples` | LATENT | HunyuanVideo 1.5 모델에 적합한 차원을 가진 빈 잠재 텐서입니다. 텐서의 형태는 `[batch_size, 32, frames, height//16, width//16]`입니다. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/pt-BR.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/pt-BR.md index b931003ca..7f909dc1f 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/pt-BR.md @@ -17,4 +17,4 @@ Este nó cria um tensor latente vazio especificamente formatado para uso com o m | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | Um tensor latente vazio com dimensões adequadas para o modelo HunyuanVideo 1.5. O tensor tem a forma `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | Um tensor latente vazio com dimensões adequadas para o modelo HunyuanVideo 1.5. O tensor tem a forma `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ru.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ru.md index 7f34753a9..66b12be25 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ru.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/ru.md @@ -17,4 +17,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `samples` | LATENT | Пустой латентный тензор с размерами, подходящими для модели HunyuanVideo 1.5. Тензор имеет форму `[batch_size, 32, frames, height//16, width//16]`. | \ No newline at end of file +| `samples` | LATENT | Пустой латентный тензор с размерами, подходящими для модели HunyuanVideo 1.5. Тензор имеет форму `[batch_size, 32, frames, height//16, width//16]`. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/tr.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/tr.md index 1dd337aa5..63923b2ad 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/tr.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/tr.md @@ -17,4 +17,4 @@ Bu düğüm, HunyuanVideo 1.5 modeli ile kullanım için özel olarak biçimlend | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | HunyuanVideo 1.5 modeli için uygun boyutlara sahip boş bir gizli tensör. Tensörün şekli `[batch_size, 32, frames, height//16, width//16]` şeklindedir. | \ No newline at end of file +| `samples` | LATENT | HunyuanVideo 1.5 modeli için uygun boyutlara sahip boş bir gizli tensör. Tensörün şekli `[batch_size, 32, frames, height//16, width//16]` şeklindedir. | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh-TW.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh-TW.md index ec61208d9..37d05da77 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一個適合 HunyuanVideo 1.5 模型維度的空潛在張量。張量形狀為 `[batch_size, 32, frames, height//16, width//16]`。 | \ No newline at end of file +| `samples` | LATENT | 一個適合 HunyuanVideo 1.5 模型維度的空潛在張量。張量形狀為 `[batch_size, 32, frames, height//16, width//16]`。 | diff --git a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh.md b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh.md index 7095b696d..024aab765 100644 --- a/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh.md +++ b/comfyui_embedded_docs/docs/EmptyHunyuanVideo15Latent/zh.md @@ -17,4 +17,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一个维度适合 HunyuanVideo 1.5 模型的空潜在张量。该张量的形状为 `[batch_size, 32, frames, height//16, width//16]`。 | \ No newline at end of file +| `samples` | LATENT | 一个维度适合 HunyuanVideo 1.5 模型的空潜在张量。该张量的形状为 `[batch_size, 32, frames, height//16, width//16]`。 | diff --git a/comfyui_embedded_docs/docs/EmptyImage/ar.md b/comfyui_embedded_docs/docs/EmptyImage/ar.md index 23dfd3897..d45fbfee6 100644 --- a/comfyui_embedded_docs/docs/EmptyImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptyImage/ar.md @@ -48,4 +48,4 @@ | أحمر غامق | 0x800000 | | ذهبي | 0xFFD700 | | فضي | 0xC0C0C0 | -| بيج | 0xF5F5DC | \ No newline at end of file +| بيج | 0xF5F5DC | diff --git a/comfyui_embedded_docs/docs/EmptyImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptyImage/pt-BR.md index 3b0198342..e9070884f 100644 --- a/comfyui_embedded_docs/docs/EmptyImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyImage/pt-BR.md @@ -48,4 +48,4 @@ Como a entrada de cor atual para este nó não é amigável ao usuário, com tod | Vermelho Escuro | 0x800000 | | Dourado | 0xFFD700 | | Prata | 0xC0C0C0 | -| Bege | 0xF5F5DC | \ No newline at end of file +| Bege | 0xF5F5DC | diff --git a/comfyui_embedded_docs/docs/EmptyImage/tr.md b/comfyui_embedded_docs/docs/EmptyImage/tr.md index ae81ac130..777a86387 100644 --- a/comfyui_embedded_docs/docs/EmptyImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptyImage/tr.md @@ -48,4 +48,4 @@ Bu düğümün mevcut renk girdisi kullanıcı dostu olmadığından (tüm renk | Koyu Kırmızı | 0x800000 | | Altın | 0xFFD700 | | Gümüş | 0xC0C0C0 | -| Bej | 0xF5F5DC | \ No newline at end of file +| Bej | 0xF5F5DC | diff --git a/comfyui_embedded_docs/docs/EmptyImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptyImage/zh-TW.md index 909854cbc..1dae009e5 100644 --- a/comfyui_embedded_docs/docs/EmptyImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyImage/zh-TW.md @@ -48,4 +48,4 @@ EmptyImage 節點用於創建指定尺寸和顏色的空白圖像。它可以生 | 深紅色 | 0x800000 | | 金色 | 0xFFD700 | | 銀色 | 0xC0C0C0 | -| 米色 | 0xF5F5DC | \ No newline at end of file +| 米色 | 0xF5F5DC | diff --git a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/ar.md b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/ar.md index a1a07f763..88ee04bb8 100644 --- a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/ar.md +++ b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | الموتر الكامن الفارغ المُنشأ بقيم صفرية في الأبعاد المحددة | \ No newline at end of file +| `samples` | LATENT | الموتر الكامن الفارغ المُنشأ بقيم صفرية في الأبعاد المحددة | diff --git a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/pt-BR.md b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/pt-BR.md index 77ae8693a..2402380c9 100644 --- a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/pt-BR.md @@ -15,4 +15,4 @@ O nó EmptyLTXVLatentVideo cria um tensor latente vazio para processamento de v | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | O tensor latente vazio gerado, com valores zero nas dimensões especificadas | \ No newline at end of file +| `samples` | LATENT | O tensor latente vazio gerado, com valores zero nas dimensões especificadas | diff --git a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/tr.md b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/tr.md index 1abfe5c2c..b0bdee159 100644 --- a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/tr.md +++ b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/tr.md @@ -15,4 +15,4 @@ EmptyLTXVLatentVideo düğümü, video işleme için boş bir latent tensör olu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Belirtilen boyutlarda sıfır değerlerle oluşturulmuş boş latent tensör | \ No newline at end of file +| `samples` | LATENT | Belirtilen boyutlarda sıfır değerlerle oluşturulmuş boş latent tensör | diff --git a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/zh-TW.md b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/zh-TW.md index dd5930f4d..95ce66b92 100644 --- a/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyLTXVLatentVideo/zh-TW.md @@ -15,4 +15,4 @@ EmptyLTXVLatentVideo 節點用於建立影片處理所需的空潛在張量。 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `samples` | LATENT | 生成的空潛在張量,在指定維度中具有零值 | \ No newline at end of file +| `samples` | LATENT | 生成的空潛在張量,在指定維度中具有零值 | diff --git a/comfyui_embedded_docs/docs/EmptyLatentAudio/ar.md b/comfyui_embedded_docs/docs/EmptyLatentAudio/ar.md index e55878a2b..4219ac8ca 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentAudio/ar.md +++ b/comfyui_embedded_docs/docs/EmptyLatentAudio/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | يُرجع موترًا كامنًا فارغًا لمعالجة الصوت بمدة وحجم دفعة مُحددين | \ No newline at end of file +| `LATENT` | LATENT | يُرجع موترًا كامنًا فارغًا لمعالجة الصوت بمدة وحجم دفعة مُحددين | diff --git a/comfyui_embedded_docs/docs/EmptyLatentAudio/pt-BR.md b/comfyui_embedded_docs/docs/EmptyLatentAudio/pt-BR.md index 39ef8b2dd..17774542c 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyLatentAudio/pt-BR.md @@ -13,4 +13,4 @@ O nó EmptyLatentAudio cria tensores latentes vazios para processamento de áudi | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | Retorna um tensor latente vazio para processamento de áudio com a duração e o tamanho de lote especificados | \ No newline at end of file +| `LATENT` | LATENT | Retorna um tensor latente vazio para processamento de áudio com a duração e o tamanho de lote especificados | diff --git a/comfyui_embedded_docs/docs/EmptyLatentAudio/tr.md b/comfyui_embedded_docs/docs/EmptyLatentAudio/tr.md index 03d004f00..f16782139 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentAudio/tr.md +++ b/comfyui_embedded_docs/docs/EmptyLatentAudio/tr.md @@ -13,4 +13,4 @@ EmptyLatentAudio düğümü, ses işleme için boş latent tensörler oluşturur | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Belirtilen süre ve batch boyutunda ses işleme için boş bir latent tensör döndürür | \ No newline at end of file +| `LATENT` | LATENT | Belirtilen süre ve batch boyutunda ses işleme için boş bir latent tensör döndürür | diff --git a/comfyui_embedded_docs/docs/EmptyLatentAudio/zh-TW.md b/comfyui_embedded_docs/docs/EmptyLatentAudio/zh-TW.md index 907da9e89..6017d2233 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyLatentAudio/zh-TW.md @@ -15,4 +15,4 @@ EmptyLatentAudio 節點用於創建音訊處理所需的空潛在張量。它會 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 返回具有指定持續時間和批次大小的空潛在張量,用於音訊處理 | \ No newline at end of file +| `LATENT` | LATENT | 返回具有指定持續時間和批次大小的空潛在張量,用於音訊處理 | diff --git a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/ar.md b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/ar.md index f242aa61f..81b90802f 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/ar.md +++ b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | يُرجع موترًا كامنًا يحتوي على عينات فارغة مُهيأة للجيل ثلاثي الأبعاد بنموذج Hunyuan3Dv2 | \ No newline at end of file +| `LATENT` | LATENT | يُرجع موترًا كامنًا يحتوي على عينات فارغة مُهيأة للجيل ثلاثي الأبعاد بنموذج Hunyuan3Dv2 | diff --git a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/pt-BR.md b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/pt-BR.md index 6ae003306..920332a64 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/pt-BR.md @@ -13,4 +13,4 @@ O nó EmptyLatentHunyuan3Dv2 cria tensores latentes vazios especificamente forma | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | Retorna um tensor latente contendo amostras vazias formatadas para a geração 3D Hunyuan3Dv2 | \ No newline at end of file +| `LATENT` | LATENT | Retorna um tensor latente contendo amostras vazias formatadas para a geração 3D Hunyuan3Dv2 | diff --git a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/tr.md b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/tr.md index 480129820..6275d5750 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/tr.md +++ b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/tr.md @@ -13,4 +13,4 @@ EmptyLatentHunyuan3Dv2 düğümü, Hunyuan3Dv2 3B üretim modelleri için özel | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Hunyuan3Dv2 3B üretimi için biçimlendirilmiş boş örnekler içeren bir latent tensör döndürür | \ No newline at end of file +| `LATENT` | LATENT | Hunyuan3Dv2 3B üretimi için biçimlendirilmiş boş örnekler içeren bir latent tensör döndürür | diff --git a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/zh-TW.md b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/zh-TW.md index b23c21378..a3ff9a692 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyLatentHunyuan3Dv2/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 返回包含為 Hunyuan3Dv2 3D 生成格式化的空白樣本的潛在張量 | \ No newline at end of file +| `LATENT` | LATENT | 返回包含為 Hunyuan3Dv2 3D 生成格式化的空白樣本的潛在張量 | diff --git a/comfyui_embedded_docs/docs/EmptyLatentImage/ar.md b/comfyui_embedded_docs/docs/EmptyLatentImage/ar.md index 33f03e0ba..656e54bd8 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptyLatentImage/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |----------|---------------|--------| -| `latent` | `LATENT` | الناتج هو موتر يمثل دفعة من الصور الكامنة الفارغة، ويُستخدم كأساس لمزيد من عمليات توليد الصور أو التلاعب بها في المساحة الكامنة. | \ No newline at end of file +| `latent` | `LATENT` | الناتج هو موتر يمثل دفعة من الصور الكامنة الفارغة، ويُستخدم كأساس لمزيد من عمليات توليد الصور أو التلاعب بها في المساحة الكامنة. | diff --git a/comfyui_embedded_docs/docs/EmptyLatentImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptyLatentImage/pt-BR.md index 366400df8..a8175c1f0 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyLatentImage/pt-BR.md @@ -14,4 +14,4 @@ O nó `EmptyLatentImage` é projetado para gerar uma representação em branco d | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é um tensor que representa um lote de imagens latentes em branco, servindo como base para geração ou manipulação posterior de imagens no espaço latente. | \ No newline at end of file +| `latent` | `LATENT` | A saída é um tensor que representa um lote de imagens latentes em branco, servindo como base para geração ou manipulação posterior de imagens no espaço latente. | diff --git a/comfyui_embedded_docs/docs/EmptyLatentImage/tr.md b/comfyui_embedded_docs/docs/EmptyLatentImage/tr.md index 5e3c2c262..d8fde2b97 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptyLatentImage/tr.md @@ -14,4 +14,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, gizli uzayda daha fazla görüntü oluşturma veya manipülasyon için temel oluşturan bir dizi boş gizli görüntüyü temsil eden bir tensördür. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, gizli uzayda daha fazla görüntü oluşturma veya manipülasyon için temel oluşturan bir dizi boş gizli görüntüyü temsil eden bir tensördür. | diff --git a/comfyui_embedded_docs/docs/EmptyLatentImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptyLatentImage/zh-TW.md index 03e9167ba..e70cbc0d5 100644 --- a/comfyui_embedded_docs/docs/EmptyLatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyLatentImage/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出為表示一批空白潛在圖像的張量,可作為在潛在空間中進行進一步圖像生成或操作的基礎。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出為表示一批空白潛在圖像的張量,可作為在潛在空間中進行進一步圖像生成或操作的基礎。 | diff --git a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/ar.md b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/ar.md index 637516cdb..a3d3196d9 100644 --- a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/ar.md +++ b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/ar.md @@ -17,4 +17,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر فيديو كامن فارغ بالأبعاد المحددة، يحتوي على قيم صفرية بالكامل | \ No newline at end of file +| `samples` | LATENT | موتر فيديو كامن فارغ بالأبعاد المحددة، يحتوي على قيم صفرية بالكامل | diff --git a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/pt-BR.md b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/pt-BR.md index 8699bfc2f..e932795a5 100644 --- a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/pt-BR.md @@ -17,4 +17,4 @@ O nó EmptyMochiLatentVideo cria um tensor de vídeo latente vazio com dimensõe | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | Um tensor de vídeo latente vazio com as dimensões especificadas, contendo apenas zeros | \ No newline at end of file +| `samples` | LATENT | Um tensor de vídeo latente vazio com as dimensões especificadas, contendo apenas zeros | diff --git a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/tr.md b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/tr.md index 950ab259c..43e23c647 100644 --- a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/tr.md +++ b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/tr.md @@ -17,4 +17,4 @@ EmptyMochiLatentVideo düğümü, belirtilen boyutlarda boş bir gizli video ten | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Belirtilen boyutlarda, tamamen sıfırlardan oluşan boş bir gizli video tensörü | \ No newline at end of file +| `samples` | LATENT | Belirtilen boyutlarda, tamamen sıfırlardan oluşan boş bir gizli video tensörü | diff --git a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/zh-TW.md b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/zh-TW.md index 00b24d617..09d8d6a62 100644 --- a/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyMochiLatentVideo/zh-TW.md @@ -17,4 +17,4 @@ EmptyMochiLatentVideo 節點會建立具有指定尺寸的空潛在影片張量 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 具有指定尺寸的空潛在影片張量,包含全部零值 | \ No newline at end of file +| `samples` | LATENT | 具有指定尺寸的空潛在影片張量,包含全部零值 | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ar.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ar.md index f0438cc54..5bc969be3 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | موتر كامن مملوء بالأصفار. شكله هو `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | موتر كامن مملوء بالأصفار. شكله هو `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/en.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/en.md index 333114e12..65a5b4e7c 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/en.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/en.md @@ -17,4 +17,4 @@ The Empty Qwen Image Layered Latent node creates a blank, multi-layered latent r | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `samples` | LATENT | A latent tensor filled with zeros. Its shape is `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | A latent tensor filled with zeros. Its shape is `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/es.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/es.md index db787b3d2..0d8030f3b 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/es.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/es.md @@ -17,4 +17,4 @@ El nodo Empty Qwen Image Layered Latent crea una representación latente en blan | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `samples` | LATENT | Un tensor latente lleno de ceros. Su forma es `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | Un tensor latente lleno de ceros. Su forma es `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/fr.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/fr.md index a8d93bc49..e62d28ede 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/fr.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/fr.md @@ -17,4 +17,4 @@ Le nœud Empty Qwen Image Layered Latent crée une représentation latente vierg | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `samples` | LATENT | Un tenseur latent rempli de zéros. Sa forme est `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | Un tenseur latent rempli de zéros. Sa forme est `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ja.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ja.md index 4509fb349..60480a876 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ja.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ja.md @@ -17,4 +17,4 @@ Empty Qwen Image Layered Latent ノードは、Qwen画像モデルで使用す | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `samples` | LATENT | ゼロで埋められた潜在テンソルです。その形状は `[batch_size, 16, layers + 1, height // 8, width // 8]` です。 | \ No newline at end of file +| `samples` | LATENT | ゼロで埋められた潜在テンソルです。その形状は `[batch_size, 16, layers + 1, height // 8, width // 8]` です。 | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ko.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ko.md index 194b538e3..c330376f8 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ko.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ko.md @@ -17,4 +17,4 @@ Empty Qwen Image Layered Latent 노드는 Qwen 이미지 모델과 함께 사용 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `samples` | LATENT | 0으로 채워진 잠재 텐서입니다. 형태는 `[batch_size, 16, layers + 1, height // 8, width // 8]`입니다. | \ No newline at end of file +| `samples` | LATENT | 0으로 채워진 잠재 텐서입니다. 형태는 `[batch_size, 16, layers + 1, height // 8, width // 8]`입니다. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/pt-BR.md index 284e8fc0c..1a6eca949 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/pt-BR.md @@ -17,4 +17,4 @@ O nó **Empty Qwen Image Layered Latent** cria uma representação latente em br | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | Um tensor latente preenchido com zeros. Sua forma é `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | Um tensor latente preenchido com zeros. Sua forma é `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ru.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ru.md index eed98fb49..10a619813 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ru.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/ru.md @@ -17,4 +17,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `samples` | LATENT | Латентный тензор, заполненный нулями. Его форма: `[batch_size, 16, layers + 1, height // 8, width // 8]`. | \ No newline at end of file +| `samples` | LATENT | Латентный тензор, заполненный нулями. Его форма: `[batch_size, 16, layers + 1, height // 8, width // 8]`. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/tr.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/tr.md index c8aff1228..e9616933e 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/tr.md @@ -17,4 +17,4 @@ Empty Qwen Image Layered Latent düğümü, Qwen görüntü modelleriyle kullan | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Sıfırlarla dolu bir latent tensör. Şekli `[batch_size, 16, layers + 1, height // 8, width // 8]` şeklindedir. | \ No newline at end of file +| `samples` | LATENT | Sıfırlarla dolu bir latent tensör. Şekli `[batch_size, 16, layers + 1, height // 8, width // 8]` şeklindedir. | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh-TW.md index 9e1c4ce90..f947e91b7 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh-TW.md @@ -17,4 +17,4 @@ Empty Qwen Image Layered Latent 節點會建立一個空白的多層潛在表徵 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一個填滿零值的潛在張量。其形狀為 `[batch_size, 16, layers + 1, height // 8, width // 8]`。 | \ No newline at end of file +| `samples` | LATENT | 一個填滿零值的潛在張量。其形狀為 `[batch_size, 16, layers + 1, height // 8, width // 8]`。 | diff --git a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh.md b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh.md index 217f876e7..7826518d2 100644 --- a/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh.md +++ b/comfyui_embedded_docs/docs/EmptyQwenImageLayeredLatentImage/zh.md @@ -17,4 +17,4 @@ Empty Qwen Image Layered Latent 节点创建一个空白的多层潜在表示, | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 一个填充零值的潜在张量。其形状为 `[batch_size, 16, layers + 1, height // 8, width // 8]`。 | \ No newline at end of file +| `samples` | LATENT | 一个填充零值的潜在张量。其形状为 `[batch_size, 16, layers + 1, height // 8, width // 8]`。 | diff --git a/comfyui_embedded_docs/docs/EmptySD3LatentImage/ar.md b/comfyui_embedded_docs/docs/EmptySD3LatentImage/ar.md index cbb1ec4e2..4f1c31b47 100644 --- a/comfyui_embedded_docs/docs/EmptySD3LatentImage/ar.md +++ b/comfyui_embedded_docs/docs/EmptySD3LatentImage/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `LATENT` | LATENT | موتر كامن يحتوي على عينات فارغة ذات أبعاد متوافقة مع SD3 | \ No newline at end of file +| `LATENT` | LATENT | موتر كامن يحتوي على عينات فارغة ذات أبعاد متوافقة مع SD3 | diff --git a/comfyui_embedded_docs/docs/EmptySD3LatentImage/pt-BR.md b/comfyui_embedded_docs/docs/EmptySD3LatentImage/pt-BR.md index 4061c9150..4f7c3fd5e 100644 --- a/comfyui_embedded_docs/docs/EmptySD3LatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/EmptySD3LatentImage/pt-BR.md @@ -14,4 +14,4 @@ O nó EmptySD3LatentImage cria um tensor de imagem latente em branco especificam | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | Um tensor latente contendo amostras em branco com dimensões compatíveis com SD3 | \ No newline at end of file +| `LATENT` | LATENT | Um tensor latente contendo amostras em branco com dimensões compatíveis com SD3 | diff --git a/comfyui_embedded_docs/docs/EmptySD3LatentImage/tr.md b/comfyui_embedded_docs/docs/EmptySD3LatentImage/tr.md index 55b89c309..613ef6eec 100644 --- a/comfyui_embedded_docs/docs/EmptySD3LatentImage/tr.md +++ b/comfyui_embedded_docs/docs/EmptySD3LatentImage/tr.md @@ -14,4 +14,4 @@ EmptySD3LatentImage düğümü, Stable Diffusion 3 modelleri için özel olarak | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | SD3 uyumlu boyutlara sahip boş örnekler içeren bir latent tensör | \ No newline at end of file +| `LATENT` | LATENT | SD3 uyumlu boyutlara sahip boş örnekler içeren bir latent tensör | diff --git a/comfyui_embedded_docs/docs/EmptySD3LatentImage/zh-TW.md b/comfyui_embedded_docs/docs/EmptySD3LatentImage/zh-TW.md index e6b4eae18..2779944da 100644 --- a/comfyui_embedded_docs/docs/EmptySD3LatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/EmptySD3LatentImage/zh-TW.md @@ -14,4 +14,4 @@ EmptySD3LatentImage 節點會建立一個專為 Stable Diffusion 3 模型格式 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 包含具有 SD3 相容維度的空白樣本的潛在張量 | \ No newline at end of file +| `LATENT` | LATENT | 包含具有 SD3 相容維度的空白樣本的潛在張量 | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/ar.md b/comfyui_embedded_docs/docs/Epsilon Scaling/ar.md index 90f077737..b1ed5fe5d 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/ar.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/ar.md @@ -1,4 +1,4 @@ -> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/ar.md) +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/ar.md) ## المدخلات @@ -11,4 +11,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | نسخة معدلة من النموذج المدخل مع تطبيق وظيفة تحجيم إبسيلون على عملية أخذ العينات الخاصة به. | \ No newline at end of file +| `model` | MODEL | نسخة معدلة من النموذج المدخل مع تطبيق وظيفة تحجيم إبسيلون على عملية أخذ العينات الخاصة به. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/en.md b/comfyui_embedded_docs/docs/Epsilon Scaling/en.md index 470262f52..92febf8df 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/en.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/en.md @@ -1,4 +1,4 @@ -> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/en.md) +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/en.md) This node implements the Epsilon Scaling method from the research paper "Elucidating the Exposure Bias in Diffusion Models." It works by scaling the predicted noise during the sampling process to help reduce exposure bias, which can lead to improved quality in the generated images. This implementation uses the "uniform schedule" recommended by the paper. @@ -13,4 +13,4 @@ This node implements the Epsilon Scaling method from the research paper "Elucida | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `model` | MODEL | A patched version of the input model with the epsilon scaling function applied to its sampling process. | \ No newline at end of file +| `model` | MODEL | A patched version of the input model with the epsilon scaling function applied to its sampling process. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/es.md b/comfyui_embedded_docs/docs/Epsilon Scaling/es.md index 417a9aff4..ae8243725 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/es.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/es.md @@ -1,4 +1,4 @@ -> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/es.md) +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/es.md) Este nodo implementa el método de Escalado de Épsilon del artículo de investigación "Elucidating the Exposure Bias in Diffusion Models". Funciona escalando el ruido predicho durante el proceso de muestreo para ayudar a reducir el sesgo de exposición, lo que puede conducir a una mejora en la calidad de las imágenes generadas. Esta implementación utiliza el "programación uniforme" recomendada por el artículo. @@ -13,4 +13,4 @@ Este nodo implementa el método de Escalado de Épsilon del artículo de investi | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `model` | MODEL | Una versión parcheada del modelo de entrada con la función de escalado de épsilon aplicada a su proceso de muestreo. | \ No newline at end of file +| `model` | MODEL | Una versión parcheada del modelo de entrada con la función de escalado de épsilon aplicada a su proceso de muestreo. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/fr.md b/comfyui_embedded_docs/docs/Epsilon Scaling/fr.md index b9154c1f3..14c0bd860 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/fr.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/fr.md @@ -1,4 +1,4 @@ -> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/fr.md) +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/fr.md) Ce nœud implémente la méthode Epsilon Scaling issue de l'article de recherche "Elucidating the Exposure Bias in Diffusion Models". Il fonctionne en mettant à l'échelle le bruit prédit pendant le processus d'échantillonnage pour aider à réduire le biais d'exposition, ce qui peut conduire à une amélioration de la qualité des images générées. Cette implémentation utilise le "planificateur uniforme" recommandé par l'article. @@ -13,4 +13,4 @@ Ce nœud implémente la méthode Epsilon Scaling issue de l'article de recherche | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `model` | MODEL | Une version corrigée du modèle d'entrée avec la fonction de mise à l'échelle epsilon appliquée à son processus d'échantillonnage. | \ No newline at end of file +| `model` | MODEL | Une version corrigée du modèle d'entrée avec la fonction de mise à l'échelle epsilon appliquée à son processus d'échantillonnage. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/ja.md b/comfyui_embedded_docs/docs/Epsilon Scaling/ja.md index 26b87bd75..5ec46e2e0 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/ja.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/ja.md @@ -1,4 +1,4 @@ -> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/ja.md) +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/ja.md) このノードは、研究論文「Elucidating the Exposure Bias in Diffusion Models」で提案されたEpsilon Scaling(イプシロンスケーリング)手法を実装しています。サンプリングプロセス中に予測されたノイズをスケーリングすることで、生成画像の品質向上につながる可能性のある「露光バイアス(exposure bias)」の低減を助けます。この実装では、論文で推奨されている「均一スケジュール(uniform schedule)」を使用しています。 @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `model` | MODEL | サンプリングプロセスにイプシロンスケーリング関数が適用された、入力モデルのパッチ適用済みバージョンです。 | \ No newline at end of file +| `model` | MODEL | サンプリングプロセスにイプシロンスケーリング関数が適用された、入力モデルのパッチ適用済みバージョンです。 | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/ko.md b/comfyui_embedded_docs/docs/Epsilon Scaling/ko.md index 703189978..762de450a 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/ko.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/ko.md @@ -1,4 +1,4 @@ -> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/ko.md) +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/ko.md) 이 노드는 연구 논문 "Elucidating the Exposure Bias in Diffusion Models"의 Epsilon Scaling 방법을 구현합니다. 샘플링 과정에서 예측된 노이즈를 스케일링하여 노출 편향(Exposure Bias)을 줄이는 데 도움을 주며, 이로 인해 생성된 이미지의 품질 향상에 기여할 수 있습니다. 이 구현체는 논문에서 권장하는 "균일 스케줄(uniform schedule)"을 사용합니다. @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `model` | MODEL | 샘플링 과정에 엡실론 스케일링 기능이 적용된 입력 모델의 패치 버전입니다. | \ No newline at end of file +| `model` | MODEL | 샘플링 과정에 엡실론 스케일링 기능이 적용된 입력 모델의 패치 버전입니다. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/pt-BR.md b/comfyui_embedded_docs/docs/Epsilon Scaling/pt-BR.md index 94f530925..bf3a99d41 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/pt-BR.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/pt-BR.md @@ -1,4 +1,4 @@ -> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/pt-BR.md) +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/pt-BR.md) Este nó implementa o método de Escalonamento de Épsilon do artigo de pesquisa "Elucidating the Exposure Bias in Diffusion Models". Ele funciona escalando o ruído previsto durante o processo de amostragem para ajudar a reduzir o viés de exposição, o que pode levar a uma qualidade melhorada nas imagens geradas. Esta implementação utiliza o "cronograma uniforme" recomendado pelo artigo. @@ -13,4 +13,4 @@ Este nó implementa o método de Escalonamento de Épsilon do artigo de pesquisa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | Uma versão modificada do modelo de entrada com a função de escalonamento de épsilon aplicada ao seu processo de amostragem. | \ No newline at end of file +| `model` | MODEL | Uma versão modificada do modelo de entrada com a função de escalonamento de épsilon aplicada ao seu processo de amostragem. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/ru.md b/comfyui_embedded_docs/docs/Epsilon Scaling/ru.md index 12b0353e1..d42548f35 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/ru.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/ru.md @@ -1,4 +1,4 @@ -> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/ru.md) +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/ru.md) Этот узел реализует метод масштабирования эпсилон из исследовательской работы "Elucidating the Exposure Bias in Diffusion Models". Он работает путем масштабирования предсказанного шума в процессе сэмплирования, чтобы помочь уменьшить смещение экспозиции (exposure bias), что может привести к улучшению качества генерируемых изображений. Данная реализация использует "uniform schedule", рекомендованный в статье. @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `model` | MODEL | Патченная версия входной модели с примененной к ее процессу сэмплирования функцией масштабирования эпсилон. | \ No newline at end of file +| `model` | MODEL | Патченная версия входной модели с примененной к ее процессу сэмплирования функцией масштабирования эпсилон. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/tr.md b/comfyui_embedded_docs/docs/Epsilon Scaling/tr.md index 20c9eab72..caef0bd10 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/tr.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/tr.md @@ -1,4 +1,4 @@ -> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/tr.md) +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/tr.md) Bu düğüm, "Difüzyon Modellerinde Maruz Kalma Yanlılığını Açıklama" araştırma makalesinden Epsilon Ölçeklendirme yöntemini uygular. Örnekleme sürecinde tahmin edilen gürültüyü ölçeklendirerek, oluşturulan görüntülerde kaliteyi artırmaya yardımcı olabilecek maruz kalma yanlılığını azaltmaya çalışır. Bu uygulama, makale tarafından önerilen "tekdüze programı" kullanır. @@ -13,4 +13,4 @@ Bu düğüm, "Difüzyon Modellerinde Maruz Kalma Yanlılığını Açıklama" ar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Örnekleme sürecine epsilon ölçeklendirme işlevi uygulanmış, girdi modelinin yamalı versiyonu. | \ No newline at end of file +| `model` | MODEL | Örnekleme sürecine epsilon ölçeklendirme işlevi uygulanmış, girdi modelinin yamalı versiyonu. | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/zh-TW.md b/comfyui_embedded_docs/docs/Epsilon Scaling/zh-TW.md index fbfb6dfc9..d0aa5e2ca 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/zh-TW.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/zh-TW.md @@ -1,4 +1,4 @@ -> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/zh-TW.md) +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/zh-TW.md) 此節點實作研究論文《闡明擴散模型中的曝光偏差》中的 Epsilon Scaling 方法。它透過在採樣過程中縮放預測的噪聲來幫助減少曝光偏差,從而提升生成圖像的品質。此實作採用論文建議的「均勻排程」。 @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 輸入模型的修補版本,其採樣過程已套用 epsilon 縮放功能。 | \ No newline at end of file +| `model` | MODEL | 輸入模型的修補版本,其採樣過程已套用 epsilon 縮放功能。 | diff --git a/comfyui_embedded_docs/docs/Epsilon Scaling/zh.md b/comfyui_embedded_docs/docs/Epsilon Scaling/zh.md index 12e0db1a9..9cbe6bfa2 100644 --- a/comfyui_embedded_docs/docs/Epsilon Scaling/zh.md +++ b/comfyui_embedded_docs/docs/Epsilon Scaling/zh.md @@ -1,4 +1,4 @@ -> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon Scaling/zh.md) +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Epsilon%20Scaling/zh.md) 此节点实现了研究论文《阐明扩散模型中的曝光偏差》中提出的 Epsilon Scaling 方法。它通过在采样过程中缩放预测噪声来帮助减少曝光偏差,从而提升生成图像的质量。此实现采用了论文推荐的“均匀调度”方案。 @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 输入模型的修补版本,其采样过程已应用 epsilon 缩放功能。 | \ No newline at end of file +| `model` | MODEL | 输入模型的修补版本,其采样过程已应用 epsilon 缩放功能。 | diff --git a/comfyui_embedded_docs/docs/EpsilonScaling/ar.md b/comfyui_embedded_docs/docs/EpsilonScaling/ar.md index a9d76ecb2..7a7a788c8 100644 --- a/comfyui_embedded_docs/docs/EpsilonScaling/ar.md +++ b/comfyui_embedded_docs/docs/EpsilonScaling/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج بعد تطبيق تحجيم إبسيلون عليه | \ No newline at end of file +| `model` | MODEL | النموذج بعد تطبيق تحجيم إبسيلون عليه | diff --git a/comfyui_embedded_docs/docs/EpsilonScaling/pt-BR.md b/comfyui_embedded_docs/docs/EpsilonScaling/pt-BR.md index 382c6a8e7..41360f765 100644 --- a/comfyui_embedded_docs/docs/EpsilonScaling/pt-BR.md +++ b/comfyui_embedded_docs/docs/EpsilonScaling/pt-BR.md @@ -13,4 +13,4 @@ Implementa o método Epsilon Scaling do artigo de pesquisa "Elucidating the Expo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com o escalonamento epsilon aplicado | \ No newline at end of file +| `model` | MODEL | O modelo com o escalonamento epsilon aplicado | diff --git a/comfyui_embedded_docs/docs/EpsilonScaling/tr.md b/comfyui_embedded_docs/docs/EpsilonScaling/tr.md index 669099a43..e963163ae 100644 --- a/comfyui_embedded_docs/docs/EpsilonScaling/tr.md +++ b/comfyui_embedded_docs/docs/EpsilonScaling/tr.md @@ -13,4 +13,4 @@ Araştırma makalesi "Elucidating the Exposure Bias in Diffusion Models"dan Epsi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Epsilon ölçeklendirme uygulanmış model | \ No newline at end of file +| `model` | MODEL | Epsilon ölçeklendirme uygulanmış model | diff --git a/comfyui_embedded_docs/docs/EpsilonScaling/zh-TW.md b/comfyui_embedded_docs/docs/EpsilonScaling/zh-TW.md index a021312c5..54ef320e2 100644 --- a/comfyui_embedded_docs/docs/EpsilonScaling/zh-TW.md +++ b/comfyui_embedded_docs/docs/EpsilonScaling/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已套用 epsilon scaling 的模型 | \ No newline at end of file +| `model` | MODEL | 已套用 epsilon scaling 的模型 | diff --git a/comfyui_embedded_docs/docs/ExponentialScheduler/ar.md b/comfyui_embedded_docs/docs/ExponentialScheduler/ar.md index 242ff71b6..710805861 100644 --- a/comfyui_embedded_docs/docs/ExponentialScheduler/ar.md +++ b/comfyui_embedded_docs/docs/ExponentialScheduler/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|-----------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | تسلسل لقيم سيجما مُنشأة وفقًا للجدول الأسي. تُستخدم هذه القيم للتحكم في مستويات الضوضاء في كل خطوة من عملية الانتشار. | \ No newline at end of file +| `sigmas` | SIGMAS | تسلسل لقيم سيجما مُنشأة وفقًا للجدول الأسي. تُستخدم هذه القيم للتحكم في مستويات الضوضاء في كل خطوة من عملية الانتشار. | diff --git a/comfyui_embedded_docs/docs/ExponentialScheduler/pt-BR.md b/comfyui_embedded_docs/docs/ExponentialScheduler/pt-BR.md index 91eb1fd68..4bb9a51f8 100644 --- a/comfyui_embedded_docs/docs/ExponentialScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/ExponentialScheduler/pt-BR.md @@ -14,4 +14,4 @@ O nó `ExponentialScheduler` é projetado para gerar uma sequência de valores s | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|---------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | Uma sequência de valores sigma gerada de acordo com o agendamento exponencial. Esses valores são usados para controlar os níveis de ruído em cada etapa do processo de difusão. | \ No newline at end of file +| `sigmas` | SIGMAS | Uma sequência de valores sigma gerada de acordo com o agendamento exponencial. Esses valores são usados para controlar os níveis de ruído em cada etapa do processo de difusão. | diff --git a/comfyui_embedded_docs/docs/ExponentialScheduler/tr.md b/comfyui_embedded_docs/docs/ExponentialScheduler/tr.md index 99e8a141a..362ad1b00 100644 --- a/comfyui_embedded_docs/docs/ExponentialScheduler/tr.md +++ b/comfyui_embedded_docs/docs/ExponentialScheduler/tr.md @@ -14,4 +14,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|---------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | Üstel programa göre oluşturulmuş bir sigma değerleri dizisi. Bu değerler, difüzyon sürecinin her adımındaki gürültü seviyelerini kontrol etmek için kullanılır. | \ No newline at end of file +| `sigmas` | SIGMAS | Üstel programa göre oluşturulmuş bir sigma değerleri dizisi. Bu değerler, difüzyon sürecinin her adımındaki gürültü seviyelerini kontrol etmek için kullanılır. | diff --git a/comfyui_embedded_docs/docs/ExponentialScheduler/zh-TW.md b/comfyui_embedded_docs/docs/ExponentialScheduler/zh-TW.md index de5efd975..06f7412b3 100644 --- a/comfyui_embedded_docs/docs/ExponentialScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/ExponentialScheduler/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|---------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | 根據指數排程生成的 sigma 值序列。這些值用於控制擴散過程每個步驟中的噪聲水平。 | \ No newline at end of file +| `sigmas` | SIGMAS | 根據指數排程生成的 sigma 值序列。這些值用於控制擴散過程每個步驟中的噪聲水平。 | diff --git a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/ar.md b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/ar.md index 1fa8c2d4a..34cbb4dc6 100644 --- a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/ar.md +++ b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `قيم_السيغما` | SIGMAS | تسلسل سيجما الممتد مع قيم وسيطة إضافية مدرجة | \ No newline at end of file +| `قيم_السيغما` | SIGMAS | تسلسل سيجما الممتد مع قيم وسيطة إضافية مدرجة | diff --git a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/pt-BR.md b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/pt-BR.md index 561b0a02c..c828d7191 100644 --- a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/pt-BR.md +++ b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/pt-BR.md @@ -18,4 +18,4 @@ O nó ExtendIntermediateSigmas recebe uma sequência existente de valores sigma | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | A sequência de sigma estendida com valores intermediários adicionais inseridos | \ No newline at end of file +| `sigmas` | SIGMAS | A sequência de sigma estendida com valores intermediários adicionais inseridos | diff --git a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/tr.md b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/tr.md index 5fef4e6fe..584e6dd45 100644 --- a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/tr.md +++ b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/tr.md @@ -18,4 +18,4 @@ ExtendIntermediateSigmas düğümü, mevcut bir sigma değerleri dizisini alır | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmalar` | SIGMAS | Ek ara değerlerin eklendiği genişletilmiş sigma dizisi | \ No newline at end of file +| `sigmalar` | SIGMAS | Ek ara değerlerin eklendiği genişletilmiş sigma dizisi | diff --git a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/zh-TW.md b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/zh-TW.md index afc5a8082..20511c49c 100644 --- a/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/zh-TW.md +++ b/comfyui_embedded_docs/docs/ExtendIntermediateSigmas/zh-TW.md @@ -18,4 +18,4 @@ ExtendIntermediateSigmas 節點接收現有的 sigma 值序列,並在它們之 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 插入了額外中間值的擴展 sigma 序列 | \ No newline at end of file +| `sigmas` | SIGMAS | 插入了額外中間值的擴展 sigma 序列 | diff --git a/comfyui_embedded_docs/docs/FeatherMask/ar.md b/comfyui_embedded_docs/docs/FeatherMask/ar.md index edda09d99..ff81eb014 100644 --- a/comfyui_embedded_docs/docs/FeatherMask/ar.md +++ b/comfyui_embedded_docs/docs/FeatherMask/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `القناع` | MASK | المخرج هو نسخة معدلة من القناع المدخل مع تطبيق تأثير التخفيف على حوافه. | \ No newline at end of file +| `القناع` | MASK | المخرج هو نسخة معدلة من القناع المدخل مع تطبيق تأثير التخفيف على حوافه. | diff --git a/comfyui_embedded_docs/docs/FeatherMask/pt-BR.md b/comfyui_embedded_docs/docs/FeatherMask/pt-BR.md index b4b22d9e5..027eaca39 100644 --- a/comfyui_embedded_docs/docs/FeatherMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/FeatherMask/pt-BR.md @@ -16,4 +16,4 @@ O nó `FeatherMask` aplica um efeito de esfumaçamento às bordas de uma máscar | Parâmetro | Tipo de Dado | Descrição | |-----------|--------------|-------------| -| `mask` | MASK | A saída é uma versão modificada da máscara de entrada com um efeito de esfumaçamento aplicado às suas bordas. | \ No newline at end of file +| `mask` | MASK | A saída é uma versão modificada da máscara de entrada com um efeito de esfumaçamento aplicado às suas bordas. | diff --git a/comfyui_embedded_docs/docs/FeatherMask/tr.md b/comfyui_embedded_docs/docs/FeatherMask/tr.md index 2634a7f6a..720d17207 100644 --- a/comfyui_embedded_docs/docs/FeatherMask/tr.md +++ b/comfyui_embedded_docs/docs/FeatherMask/tr.md @@ -16,4 +16,4 @@ | Parametre | Veri Tipi | Açıklama | |-----------|-----------|-------------| -| `maske` | MASK | Çıktı, kenarlarına tüylendirme efekti uygulanmış, girdi maskesinin değiştirilmiş bir versiyonudur. | \ No newline at end of file +| `maske` | MASK | Çıktı, kenarlarına tüylendirme efekti uygulanmış, girdi maskesinin değiştirilmiş bir versiyonudur. | diff --git a/comfyui_embedded_docs/docs/FeatherMask/zh-TW.md b/comfyui_embedded_docs/docs/FeatherMask/zh-TW.md index 7b0222cfb..3b96d7473 100644 --- a/comfyui_embedded_docs/docs/FeatherMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/FeatherMask/zh-TW.md @@ -16,4 +16,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|--------------|-------------| -| `遮罩` | MASK | 輸出是輸入遮罩的修改版本,其邊緣已應用羽化效果。 | \ No newline at end of file +| `遮罩` | MASK | 輸出是輸入遮罩的修改版本,其邊緣已應用羽化效果。 | diff --git a/comfyui_embedded_docs/docs/FlipSigmas/ar.md b/comfyui_embedded_docs/docs/FlipSigmas/ar.md index f42e727e9..96cc40263 100644 --- a/comfyui_embedded_docs/docs/FlipSigmas/ar.md +++ b/comfyui_embedded_docs/docs/FlipSigmas/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |--------------|---------------|--------| | `قيم_السيغما` | `SIGMAS` | المخرجات هي تسلسل قيم سيجما المعدل، الذي تم قلبه وضبطه لضمان أن تكون القيمة الأولى غير صفرية إذا كانت أصلاً صفرًا، وجاهزًا للاستخدام في عمليات نماذج الانتشار اللاحقة. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/FlipSigmas/pt-BR.md b/comfyui_embedded_docs/docs/FlipSigmas/pt-BR.md index 7833a4b3f..803ba82dd 100644 --- a/comfyui_embedded_docs/docs/FlipSigmas/pt-BR.md +++ b/comfyui_embedded_docs/docs/FlipSigmas/pt-BR.md @@ -12,4 +12,4 @@ O nó `FlipSigmas` é projetado para manipular a sequência de valores sigma usa | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `sigmas` | `SIGMAS` | A saída é a sequência modificada de valores sigma, invertida e ajustada para garantir que o primeiro valor seja diferente de zero se originalmente fosse zero, pronta para uso em operações subsequentes do modelo de difusão. | \ No newline at end of file +| `sigmas` | `SIGMAS` | A saída é a sequência modificada de valores sigma, invertida e ajustada para garantir que o primeiro valor seja diferente de zero se originalmente fosse zero, pronta para uso em operações subsequentes do modelo de difusão. | diff --git a/comfyui_embedded_docs/docs/FlipSigmas/tr.md b/comfyui_embedded_docs/docs/FlipSigmas/tr.md index ed3e3d924..090c5e173 100644 --- a/comfyui_embedded_docs/docs/FlipSigmas/tr.md +++ b/comfyui_embedded_docs/docs/FlipSigmas/tr.md @@ -12,4 +12,4 @@ | Parametre | Veri Türu | Açıklama | |-----------|-------------|-------------| -| `sigmalar` | `SIGMAS` | Çıktı, sonraki difüzyon modeli işlemlerinde kullanıma hazır olacak şekilde, ters çevrilmiş ve orijinal olarak sıfır ise ilk değerin sıfır olmaması için ayarlanmış, değiştirilmiş sigma değerleri dizisidir. | \ No newline at end of file +| `sigmalar` | `SIGMAS` | Çıktı, sonraki difüzyon modeli işlemlerinde kullanıma hazır olacak şekilde, ters çevrilmiş ve orijinal olarak sıfır ise ilk değerin sıfır olmaması için ayarlanmış, değiştirilmiş sigma değerleri dizisidir. | diff --git a/comfyui_embedded_docs/docs/FlipSigmas/zh-TW.md b/comfyui_embedded_docs/docs/FlipSigmas/zh-TW.md index ffc554c28..a30187b49 100644 --- a/comfyui_embedded_docs/docs/FlipSigmas/zh-TW.md +++ b/comfyui_embedded_docs/docs/FlipSigmas/zh-TW.md @@ -12,4 +12,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `sigmas` | `SIGMAS` | 輸出為經過修改的 sigma 值序列,經過翻轉並調整以確保首個值在原本為零時為非零,準備用於後續的擴散模型操作。 | \ No newline at end of file +| `sigmas` | `SIGMAS` | 輸出為經過修改的 sigma 值序列,經過翻轉並調整以確保首個值在原本為零時為非零,準備用於後續的擴散模型操作。 | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/ar.md b/comfyui_embedded_docs/docs/Flux2Scheduler/ar.md index 86b5362ab..2609d38da 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/ar.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | تسلسل لقيم مستويات الضوضاء (سيغما) يحدد جدول إزالة الضوضاء للمُعين. | \ No newline at end of file +| `sigmas` | SIGMAS | تسلسل لقيم مستويات الضوضاء (سيغما) يحدد جدول إزالة الضوضاء للمُعين. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/en.md b/comfyui_embedded_docs/docs/Flux2Scheduler/en.md index e0f62cd87..1d7ccbcdb 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/en.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/en.md @@ -14,4 +14,4 @@ The Flux2Scheduler node generates a sequence of noise levels (sigmas) for the de | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | A sequence of noise level values (sigmas) that define the denoising schedule for the sampler. | \ No newline at end of file +| `sigmas` | SIGMAS | A sequence of noise level values (sigmas) that define the denoising schedule for the sampler. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/es.md b/comfyui_embedded_docs/docs/Flux2Scheduler/es.md index 9ae101d76..e00992c5f 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/es.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/es.md @@ -14,4 +14,4 @@ El nodo Flux2Scheduler genera una secuencia de niveles de ruido (sigmas) para el | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Una secuencia de valores de nivel de ruido (sigmas) que definen el programa de eliminación de ruido para el muestreador. | \ No newline at end of file +| `sigmas` | SIGMAS | Una secuencia de valores de nivel de ruido (sigmas) que definen el programa de eliminación de ruido para el muestreador. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/fr.md b/comfyui_embedded_docs/docs/Flux2Scheduler/fr.md index cb035187b..c8a8d3f49 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/fr.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/fr.md @@ -14,4 +14,4 @@ Le nœud Flux2Scheduler génère une séquence de niveaux de bruit (sigmas) pour | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Une séquence de valeurs de niveau de bruit (sigmas) qui définit la planification du débruitage pour l'échantillonneur. | \ No newline at end of file +| `sigmas` | SIGMAS | Une séquence de valeurs de niveau de bruit (sigmas) qui définit la planification du débruitage pour l'échantillonneur. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/ja.md b/comfyui_embedded_docs/docs/Flux2Scheduler/ja.md index ca20d5970..c772ff27b 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/ja.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/ja.md @@ -14,4 +14,4 @@ Flux2Schedulerノードは、Fluxモデルに特化して、ノイズ除去プ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | サンプラー用のノイズ除去スケジュールを定義する、一連のノイズレベル値(シグマ)です。 | \ No newline at end of file +| `sigmas` | SIGMAS | サンプラー用のノイズ除去スケジュールを定義する、一連のノイズレベル値(シグマ)です。 | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/ko.md b/comfyui_embedded_docs/docs/Flux2Scheduler/ko.md index 0b3bf799b..2a849826b 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/ko.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/ko.md @@ -14,4 +14,4 @@ Flux2Scheduler 노드는 디노이징(denoising) 과정을 위한 일련의 노 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 샘플러(sampler)의 디노이징 스케줄을 정의하는 일련의 노이즈 수준 값(sigmas)입니다. | \ No newline at end of file +| `sigmas` | SIGMAS | 샘플러(sampler)의 디노이징 스케줄을 정의하는 일련의 노이즈 수준 값(sigmas)입니다. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/pt-BR.md b/comfyui_embedded_docs/docs/Flux2Scheduler/pt-BR.md index d4fdacceb..8ca9607b6 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/pt-BR.md @@ -14,4 +14,4 @@ O nó Flux2Scheduler gera uma sequência de níveis de ruído (sigmas) para o pr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Uma sequência de valores de nível de ruído (sigmas) que define o cronograma de remoção de ruído para o amostrador. | \ No newline at end of file +| `sigmas` | SIGMAS | Uma sequência de valores de nível de ruído (sigmas) que define o cronograma de remoção de ruído para o amostrador. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/ru.md b/comfyui_embedded_docs/docs/Flux2Scheduler/ru.md index f4f4c38c0..a06ade726 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/ru.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/ru.md @@ -14,4 +14,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Последовательность значений уровня шума (сигм), определяющая расписание денойзинга для сэмплера. | \ No newline at end of file +| `sigmas` | SIGMAS | Последовательность значений уровня шума (сигм), определяющая расписание денойзинга для сэмплера. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/tr.md b/comfyui_embedded_docs/docs/Flux2Scheduler/tr.md index 35de3fdf4..31a17b2a2 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/tr.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/tr.md @@ -14,4 +14,4 @@ Flux2Scheduler düğümü, Flux modeli için özel olarak tasarlanmış, gürül | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Örnekleyici için gürültü giderme zamanlamasını tanımlayan bir gürültü seviyesi değerleri (sigmas) dizisi. | \ No newline at end of file +| `sigmas` | SIGMAS | Örnekleyici için gürültü giderme zamanlamasını tanımlayan bir gürültü seviyesi değerleri (sigmas) dizisi. | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/zh-TW.md b/comfyui_embedded_docs/docs/Flux2Scheduler/zh-TW.md index d4d7156be..fa5fd0667 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/zh-TW.md @@ -14,4 +14,4 @@ Flux2Scheduler 節點為去噪過程生成一系列噪聲水平值(sigmas) | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 定義採樣器去噪調度的一系列噪聲水平值(sigmas)。 | \ No newline at end of file +| `sigmas` | SIGMAS | 定義採樣器去噪調度的一系列噪聲水平值(sigmas)。 | diff --git a/comfyui_embedded_docs/docs/Flux2Scheduler/zh.md b/comfyui_embedded_docs/docs/Flux2Scheduler/zh.md index b0c6c24b7..24a5f305c 100644 --- a/comfyui_embedded_docs/docs/Flux2Scheduler/zh.md +++ b/comfyui_embedded_docs/docs/Flux2Scheduler/zh.md @@ -14,4 +14,4 @@ Flux2Scheduler 节点为去噪过程生成一系列噪声水平值(sigmas) | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 一系列噪声水平值(sigmas),定义了采样器的去噪调度表。 | \ No newline at end of file +| `sigmas` | SIGMAS | 一系列噪声水平值(sigmas),定义了采样器的去噪调度表。 | diff --git a/comfyui_embedded_docs/docs/FluxDisableGuidance/ar.md b/comfyui_embedded_docs/docs/FluxDisableGuidance/ar.md index 60ad2eb2a..37f152f25 100644 --- a/comfyui_embedded_docs/docs/FluxDisableGuidance/ar.md +++ b/comfyui_embedded_docs/docs/FluxDisableGuidance/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|---------------|---------| -| `التهيئة` | CONDITIONING | بيانات التكييف المعدلة بعد تعطيل التوجيه | \ No newline at end of file +| `التهيئة` | CONDITIONING | بيانات التكييف المعدلة بعد تعطيل التوجيه | diff --git a/comfyui_embedded_docs/docs/FluxDisableGuidance/pt-BR.md b/comfyui_embedded_docs/docs/FluxDisableGuidance/pt-BR.md index 653020629..a2e7cde8f 100644 --- a/comfyui_embedded_docs/docs/FluxDisableGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxDisableGuidance/pt-BR.md @@ -12,4 +12,4 @@ Este nó desabilita completamente a funcionalidade de incorporação de orienta | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os dados de condicionamento modificados, com a orientação desabilitada | \ No newline at end of file +| `conditioning` | CONDITIONING | Os dados de condicionamento modificados, com a orientação desabilitada | diff --git a/comfyui_embedded_docs/docs/FluxDisableGuidance/tr.md b/comfyui_embedded_docs/docs/FluxDisableGuidance/tr.md index e04d473fa..fb9654a9d 100644 --- a/comfyui_embedded_docs/docs/FluxDisableGuidance/tr.md +++ b/comfyui_embedded_docs/docs/FluxDisableGuidance/tr.md @@ -12,4 +12,4 @@ Bu düğüm, Flux ve benzeri modeller için kılavuz gömme işlevini tamamen de | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `koşullandırma` | CONDITIONING | Kılavuzu devre dışı bırakılmış şekilde değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `koşullandırma` | CONDITIONING | Kılavuzu devre dışı bırakılmış şekilde değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/FluxDisableGuidance/zh-TW.md b/comfyui_embedded_docs/docs/FluxDisableGuidance/zh-TW.md index 8c4a67304..0301c7f89 100644 --- a/comfyui_embedded_docs/docs/FluxDisableGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxDisableGuidance/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `條件設定` | CONDITIONING | 已停用引導功能的修改後條件化資料 | \ No newline at end of file +| `條件設定` | CONDITIONING | 已停用引導功能的修改後條件化資料 | diff --git a/comfyui_embedded_docs/docs/FluxGuidance/ar.md b/comfyui_embedded_docs/docs/FluxGuidance/ar.md index eae88a6d9..ff85cf4bc 100644 --- a/comfyui_embedded_docs/docs/FluxGuidance/ar.md +++ b/comfyui_embedded_docs/docs/FluxGuidance/ar.md @@ -11,4 +11,4 @@ | المعامل | نوع البيانات | الوصف | |---------|-----------|--------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المحدثة، والتي تحتوي على قيمة التوجيه الجديدة | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المحدثة، والتي تحتوي على قيمة التوجيه الجديدة | diff --git a/comfyui_embedded_docs/docs/FluxGuidance/pt-BR.md b/comfyui_embedded_docs/docs/FluxGuidance/pt-BR.md index 9854ecc8a..d2176eab6 100644 --- a/comfyui_embedded_docs/docs/FluxGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxGuidance/pt-BR.md @@ -11,4 +11,4 @@ | Parâmetro | Tipo de Dados | Descrição | |----------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Dados de condicionamento atualizados, contendo o novo valor de `guidance` | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Dados de condicionamento atualizados, contendo o novo valor de `guidance` | diff --git a/comfyui_embedded_docs/docs/FluxGuidance/tr.md b/comfyui_embedded_docs/docs/FluxGuidance/tr.md index 262e9a156..2106e9231 100644 --- a/comfyui_embedded_docs/docs/FluxGuidance/tr.md +++ b/comfyui_embedded_docs/docs/FluxGuidance/tr.md @@ -11,4 +11,4 @@ | Parametre | Veri Türü | Açıklama | |----------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Yeni kılavuz değerini içeren güncellenmiş koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Yeni kılavuz değerini içeren güncellenmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/FluxGuidance/zh-TW.md b/comfyui_embedded_docs/docs/FluxGuidance/zh-TW.md index cb85623f8..094387c83 100644 --- a/comfyui_embedded_docs/docs/FluxGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxGuidance/zh-TW.md @@ -11,4 +11,4 @@ | 參數名稱 | 資料類型 | 描述 | |----------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 更新後的條件化資料,包含新的引導值 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 更新後的條件化資料,包含新的引導值 | diff --git a/comfyui_embedded_docs/docs/FluxKontextImageScale/ar.md b/comfyui_embedded_docs/docs/FluxKontextImageScale/ar.md index 0c36c9081..c22ab4e9b 100644 --- a/comfyui_embedded_docs/docs/FluxKontextImageScale/ar.md +++ b/comfyui_embedded_docs/docs/FluxKontextImageScale/ar.md @@ -36,4 +36,4 @@ | 1392 | 752 | 1.851 | | 1456 | 720 | 2.022 | | 1504 | 688 | 2.186 | -| 1568 | 672 | 2.333 | \ No newline at end of file +| 1568 | 672 | 2.333 | diff --git a/comfyui_embedded_docs/docs/FluxKontextImageScale/pt-BR.md b/comfyui_embedded_docs/docs/FluxKontextImageScale/pt-BR.md index dbedb532f..bfbaceea6 100644 --- a/comfyui_embedded_docs/docs/FluxKontextImageScale/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxKontextImageScale/pt-BR.md @@ -36,4 +36,4 @@ A seguir está uma lista dos tamanhos padrão utilizados durante o treinamento d | 1392 | 752 | 1.851 | | 1456 | 720 | 2.022 | | 1504 | 688 | 2.186 | -| 1568 | 672 | 2.333 | \ No newline at end of file +| 1568 | 672 | 2.333 | diff --git a/comfyui_embedded_docs/docs/FluxKontextImageScale/tr.md b/comfyui_embedded_docs/docs/FluxKontextImageScale/tr.md index e70e27f1a..2fade7db8 100644 --- a/comfyui_embedded_docs/docs/FluxKontextImageScale/tr.md +++ b/comfyui_embedded_docs/docs/FluxKontextImageScale/tr.md @@ -36,4 +36,4 @@ Aşağıda, model eğitimi sırasında kullanılan standart boyutların bir list | 1392 | 752 | 1.851 | | 1456 | 720 | 2.022 | | 1504 | 688 | 2.186 | -| 1568 | 672 | 2.333 | \ No newline at end of file +| 1568 | 672 | 2.333 | diff --git a/comfyui_embedded_docs/docs/FluxKontextImageScale/zh-TW.md b/comfyui_embedded_docs/docs/FluxKontextImageScale/zh-TW.md index e5e1d9b71..a0652f629 100644 --- a/comfyui_embedded_docs/docs/FluxKontextImageScale/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxKontextImageScale/zh-TW.md @@ -38,4 +38,4 @@ | 1392 | 752 | 1.851 | | 1456 | 720 | 2.022 | | 1504 | 688 | 2.186 | -| 1568 | 672 | 2.333 | \ No newline at end of file +| 1568 | 672 | 2.333 | diff --git a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/ar.md b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/ar.md index c9037dba3..8479a84b1 100644 --- a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/ar.md +++ b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | بيانات التكييف المعدلة مع تطبيق طريقة الاتجاهات المرجعية | \ No newline at end of file +| `conditioning` | CONDITIONING | بيانات التكييف المعدلة مع تطبيق طريقة الاتجاهات المرجعية | diff --git a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/pt-BR.md b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/pt-BR.md index 1c92b32c9..114df2779 100644 --- a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/pt-BR.md @@ -13,4 +13,4 @@ O nó FluxKontextMultiReferenceLatentMethod modifica os dados de condicionamento | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com o método de latentes de referência aplicado | \ No newline at end of file +| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com o método de latentes de referência aplicado | diff --git a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/tr.md b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/tr.md index 5f794cf47..894ea5cfa 100644 --- a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/tr.md +++ b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/tr.md @@ -13,4 +13,4 @@ FluxKontextMultiReferenceLatentMethod düğümü, belirli bir referans latent y | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Referans latent yöntemi uygulanmış değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `conditioning` | CONDITIONING | Referans latent yöntemi uygulanmış değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/zh-TW.md b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/zh-TW.md index 306aaae7c..072152702 100644 --- a/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxKontextMultiReferenceLatentMethod/zh-TW.md @@ -13,4 +13,4 @@ FluxKontextMultiReferenceLatentMethod 節點透過設定特定的參考潛在空 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | 已應用參考潛在空間方法的修改後條件化資料 | \ No newline at end of file +| `conditioning` | CONDITIONING | 已應用參考潛在空間方法的修改後條件化資料 | diff --git a/comfyui_embedded_docs/docs/FluxProCannyNode/ar.md b/comfyui_embedded_docs/docs/FluxProCannyNode/ar.md index c36ad2432..0d76f2a02 100644 --- a/comfyui_embedded_docs/docs/FluxProCannyNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProCannyNode/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output_image` | IMAGE | الصورة المُنشأة بناءً على صورة التحكم والنص الموجه | \ No newline at end of file +| `output_image` | IMAGE | الصورة المُنشأة بناءً على صورة التحكم والنص الموجه | diff --git a/comfyui_embedded_docs/docs/FluxProCannyNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProCannyNode/pt-BR.md index 4437a4176..83d462abb 100644 --- a/comfyui_embedded_docs/docs/FluxProCannyNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProCannyNode/pt-BR.md @@ -22,4 +22,4 @@ Gere imagens usando uma imagem de controle (canny). Este nó recebe uma imagem d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output_image` | IMAGE | A imagem gerada com base na imagem de controle e no prompt | \ No newline at end of file +| `output_image` | IMAGE | A imagem gerada com base na imagem de controle e no prompt | diff --git a/comfyui_embedded_docs/docs/FluxProCannyNode/tr.md b/comfyui_embedded_docs/docs/FluxProCannyNode/tr.md index 199dd70a3..0630c50b9 100644 --- a/comfyui_embedded_docs/docs/FluxProCannyNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProCannyNode/tr.md @@ -22,4 +22,4 @@ Bir kontrol görüntüsünü (canny) kullanarak görüntü oluşturur. Bu düğ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output_image` | IMAGE | Kontrol görüntüsü ve prompt'a dayalı olarak oluşturulan görüntü | \ No newline at end of file +| `output_image` | IMAGE | Kontrol görüntüsü ve prompt'a dayalı olarak oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/FluxProCannyNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProCannyNode/zh-TW.md index 83c54031e..deb8e371f 100644 --- a/comfyui_embedded_docs/docs/FluxProCannyNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProCannyNode/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output_image` | IMAGE | 基於控制影像和提示詞生成的影像 | \ No newline at end of file +| `output_image` | IMAGE | 基於控制影像和提示詞生成的影像 | diff --git a/comfyui_embedded_docs/docs/FluxProDepthNode/ar.md b/comfyui_embedded_docs/docs/FluxProDepthNode/ar.md index 8ecf8848d..aea2ce71f 100644 --- a/comfyui_embedded_docs/docs/FluxProDepthNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProDepthNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output_image` | IMAGE | الصورة المُولدة بناءً على صورة تحكم العمق والموجه | \ No newline at end of file +| `output_image` | IMAGE | الصورة المُولدة بناءً على صورة تحكم العمق والموجه | diff --git a/comfyui_embedded_docs/docs/FluxProDepthNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProDepthNode/pt-BR.md index 54a7e6bf1..c0ab664f2 100644 --- a/comfyui_embedded_docs/docs/FluxProDepthNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProDepthNode/pt-BR.md @@ -18,4 +18,4 @@ Este nó gera imagens usando uma imagem de controle de profundidade como guia. E | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output_image` | IMAGE | A imagem gerada com base na imagem de controle de profundidade e no prompt | \ No newline at end of file +| `output_image` | IMAGE | A imagem gerada com base na imagem de controle de profundidade e no prompt | diff --git a/comfyui_embedded_docs/docs/FluxProDepthNode/tr.md b/comfyui_embedded_docs/docs/FluxProDepthNode/tr.md index c7ba56ddf..85ce8f006 100644 --- a/comfyui_embedded_docs/docs/FluxProDepthNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProDepthNode/tr.md @@ -18,4 +18,4 @@ Bu düğüm, derinlik kontrol görüntüsünü rehber olarak kullanarak görünt | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output_image` | IMAGE | Derinlik kontrol görüntüsü ve isteme dayalı olarak oluşturulan görüntü | \ No newline at end of file +| `output_image` | IMAGE | Derinlik kontrol görüntüsü ve isteme dayalı olarak oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/FluxProDepthNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProDepthNode/zh-TW.md index c88055d3a..057711b06 100644 --- a/comfyui_embedded_docs/docs/FluxProDepthNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProDepthNode/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output_image` | IMAGE | 基於深度控制影像和提示生成的影像 | \ No newline at end of file +| `output_image` | IMAGE | 基於深度控制影像和提示生成的影像 | diff --git a/comfyui_embedded_docs/docs/FluxProExpandNode/ar.md b/comfyui_embedded_docs/docs/FluxProExpandNode/ar.md index 1dde30c98..1fdeb2fa9 100644 --- a/comfyui_embedded_docs/docs/FluxProExpandNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProExpandNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `الصورة` | IMAGE | الصورة المُخرَجة الموسعة | \ No newline at end of file +| `الصورة` | IMAGE | الصورة المُخرَجة الموسعة | diff --git a/comfyui_embedded_docs/docs/FluxProExpandNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProExpandNode/pt-BR.md index e78040b57..70b6a42e0 100644 --- a/comfyui_embedded_docs/docs/FluxProExpandNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProExpandNode/pt-BR.md @@ -21,4 +21,4 @@ Expande uma imagem com base em um prompt. Este nó expande uma imagem adicionand | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída expandida | \ No newline at end of file +| `image` | IMAGE | A imagem de saída expandida | diff --git a/comfyui_embedded_docs/docs/FluxProExpandNode/tr.md b/comfyui_embedded_docs/docs/FluxProExpandNode/tr.md index 439976120..6e5e75246 100644 --- a/comfyui_embedded_docs/docs/FluxProExpandNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProExpandNode/tr.md @@ -21,4 +21,4 @@ Görüntüyü prompt'a dayalı olarak dış boyama yapar. Bu düğüm, bir gör | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Genişletilmiş çıktı görüntüsü | \ No newline at end of file +| `görüntü` | IMAGE | Genişletilmiş çıktı görüntüsü | diff --git a/comfyui_embedded_docs/docs/FluxProExpandNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProExpandNode/zh-TW.md index 8f3019506..b988d4c5d 100644 --- a/comfyui_embedded_docs/docs/FluxProExpandNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProExpandNode/zh-TW.md @@ -23,4 +23,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 擴展後的輸出影像 | \ No newline at end of file +| `影像` | IMAGE | 擴展後的輸出影像 | diff --git a/comfyui_embedded_docs/docs/FluxProFillNode/ar.md b/comfyui_embedded_docs/docs/FluxProFillNode/ar.md index 0fc686b04..0c3f8a32a 100644 --- a/comfyui_embedded_docs/docs/FluxProFillNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProFillNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|---------------|--------| -| `output_image` | IMAGE | الصورة المُنشأة مع المناطق المُقنعة المملوءة وفقًا للنص التوجيهي | \ No newline at end of file +| `output_image` | IMAGE | الصورة المُنشأة مع المناطق المُقنعة المملوءة وفقًا للنص التوجيهي | diff --git a/comfyui_embedded_docs/docs/FluxProFillNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProFillNode/pt-BR.md index c39c15710..48cef15e0 100644 --- a/comfyui_embedded_docs/docs/FluxProFillNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProFillNode/pt-BR.md @@ -18,4 +18,4 @@ Preenche imagens com base em máscara e prompt. Este nó utiliza o modelo Flux.1 | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output_image` | IMAGE | A imagem gerada com as áreas mascaradas preenchidas de acordo com o prompt | \ No newline at end of file +| `output_image` | IMAGE | A imagem gerada com as áreas mascaradas preenchidas de acordo com o prompt | diff --git a/comfyui_embedded_docs/docs/FluxProFillNode/tr.md b/comfyui_embedded_docs/docs/FluxProFillNode/tr.md index a891bf983..04a33000a 100644 --- a/comfyui_embedded_docs/docs/FluxProFillNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProFillNode/tr.md @@ -18,4 +18,4 @@ Görüntüyü maske ve prompt temelinde boyar. Bu düğüm, Flux.1 modelini kull | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output_image` | IMAGE | Maskelenmiş alanları prompt'a göre doldurulmuş olarak oluşturulan görüntü | \ No newline at end of file +| `output_image` | IMAGE | Maskelenmiş alanları prompt'a göre doldurulmuş olarak oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/FluxProFillNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProFillNode/zh-TW.md index 2ca17f226..049b5e3ba 100644 --- a/comfyui_embedded_docs/docs/FluxProFillNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProFillNode/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output_image` | IMAGE | 根據提示填充遮罩區域後生成的影像 | \ No newline at end of file +| `output_image` | IMAGE | 根據提示填充遮罩區域後生成的影像 | diff --git a/comfyui_embedded_docs/docs/FluxProImageNode/ar.md b/comfyui_embedded_docs/docs/FluxProImageNode/ar.md index fadb2c246..5ec3f3dba 100644 --- a/comfyui_embedded_docs/docs/FluxProImageNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProImageNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | الصورة المُنشأة التي تم إرجاعها من الـ API | \ No newline at end of file +| `output` | IMAGE | الصورة المُنشأة التي تم إرجاعها من الـ API | diff --git a/comfyui_embedded_docs/docs/FluxProImageNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProImageNode/pt-BR.md index c1d33c840..402e59ecc 100644 --- a/comfyui_embedded_docs/docs/FluxProImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProImageNode/pt-BR.md @@ -17,4 +17,4 @@ Gera imagens de forma síncrona com base em um prompt e resolução. Este nó cr | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem gerada retornada pela API | \ No newline at end of file +| `output` | IMAGE | A imagem gerada retornada pela API | diff --git a/comfyui_embedded_docs/docs/FluxProImageNode/tr.md b/comfyui_embedded_docs/docs/FluxProImageNode/tr.md index 5a2f80bec..94ea4730e 100644 --- a/comfyui_embedded_docs/docs/FluxProImageNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProImageNode/tr.md @@ -17,4 +17,4 @@ Görüntüleri eşzamanlı olarak prompt ve çözünürlük temelinde oluşturur | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | API'den döndürülen oluşturulmuş görüntü | \ No newline at end of file +| `output` | IMAGE | API'den döndürülen oluşturulmuş görüntü | diff --git a/comfyui_embedded_docs/docs/FluxProImageNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProImageNode/zh-TW.md index 07d161232..437205e9b 100644 --- a/comfyui_embedded_docs/docs/FluxProImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProImageNode/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 從 API 返回的生成影像 | \ No newline at end of file +| `output` | IMAGE | 從 API 返回的生成影像 | diff --git a/comfyui_embedded_docs/docs/FluxProUltraImageNode/ar.md b/comfyui_embedded_docs/docs/FluxProUltraImageNode/ar.md index cafddadee..a93f9ad89 100644 --- a/comfyui_embedded_docs/docs/FluxProUltraImageNode/ar.md +++ b/comfyui_embedded_docs/docs/FluxProUltraImageNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output_image` | IMAGE | الصورة المُنتَجة من Flux Pro 1.1 Ultra | \ No newline at end of file +| `output_image` | IMAGE | الصورة المُنتَجة من Flux Pro 1.1 Ultra | diff --git a/comfyui_embedded_docs/docs/FluxProUltraImageNode/pt-BR.md b/comfyui_embedded_docs/docs/FluxProUltraImageNode/pt-BR.md index 46bbe49a9..c1b602c4e 100644 --- a/comfyui_embedded_docs/docs/FluxProUltraImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/FluxProUltraImageNode/pt-BR.md @@ -20,4 +20,4 @@ Gera imagens usando o Flux Pro 1.1 Ultra via API com base em um prompt e resolu | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output_image` | IMAGE | A imagem gerada pelo Flux Pro 1.1 Ultra | \ No newline at end of file +| `output_image` | IMAGE | A imagem gerada pelo Flux Pro 1.1 Ultra | diff --git a/comfyui_embedded_docs/docs/FluxProUltraImageNode/tr.md b/comfyui_embedded_docs/docs/FluxProUltraImageNode/tr.md index 34d2a4feb..baa9b0767 100644 --- a/comfyui_embedded_docs/docs/FluxProUltraImageNode/tr.md +++ b/comfyui_embedded_docs/docs/FluxProUltraImageNode/tr.md @@ -20,4 +20,4 @@ Metin açıklamasına ve belirtilen boyutlara göre API üzerinden Flux Pro 1.1 | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output_image` | IMAGE | Flux Pro 1.1 Ultra'dan oluşturulan görüntü | \ No newline at end of file +| `output_image` | IMAGE | Flux Pro 1.1 Ultra'dan oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/FluxProUltraImageNode/zh-TW.md b/comfyui_embedded_docs/docs/FluxProUltraImageNode/zh-TW.md index a1478c4ca..47e7e9b6b 100644 --- a/comfyui_embedded_docs/docs/FluxProUltraImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/FluxProUltraImageNode/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output_image` | IMAGE | 由 Flux Pro 1.1 Ultra 生成的圖像 | \ No newline at end of file +| `output_image` | IMAGE | 由 Flux Pro 1.1 Ultra 生成的圖像 | diff --git a/comfyui_embedded_docs/docs/FreSca/ar.md b/comfyui_embedded_docs/docs/FreSca/ar.md index 3a0018139..aeb2528bb 100644 --- a/comfyui_embedded_docs/docs/FreSca/ar.md +++ b/comfyui_embedded_docs/docs/FreSca/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق تحجيم يعتمد على التردد على وظيفة الإرشاد الخاصة به | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق تحجيم يعتمد على التردد على وظيفة الإرشاد الخاصة به | diff --git a/comfyui_embedded_docs/docs/FreSca/pt-BR.md b/comfyui_embedded_docs/docs/FreSca/pt-BR.md index 25027550b..d3bad23f6 100644 --- a/comfyui_embedded_docs/docs/FreSca/pt-BR.md +++ b/comfyui_embedded_docs/docs/FreSca/pt-BR.md @@ -15,4 +15,4 @@ O nó FreSca aplica um escalonamento dependente de frequência ao guiamento dura | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com o escalonamento dependente de frequência aplicado à sua função de guiamento | \ No newline at end of file +| `model` | MODEL | O modelo modificado com o escalonamento dependente de frequência aplicado à sua função de guiamento | diff --git a/comfyui_embedded_docs/docs/FreSca/tr.md b/comfyui_embedded_docs/docs/FreSca/tr.md index 07d168219..12b2a48e9 100644 --- a/comfyui_embedded_docs/docs/FreSca/tr.md +++ b/comfyui_embedded_docs/docs/FreSca/tr.md @@ -15,4 +15,4 @@ FreSca düğümü, örnekleme sürecinde frekansa bağlı ölçeklendirme uygula | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Kılavuzluk fonksiyonuna frekansa bağlı ölçeklendirme uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Kılavuzluk fonksiyonuna frekansa bağlı ölçeklendirme uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/FreSca/zh-TW.md b/comfyui_embedded_docs/docs/FreSca/zh-TW.md index a4aa8021c..999206f6b 100644 --- a/comfyui_embedded_docs/docs/FreSca/zh-TW.md +++ b/comfyui_embedded_docs/docs/FreSca/zh-TW.md @@ -15,4 +15,4 @@ FreSca 節點在取樣過程中對引導信號施加頻率相關的縮放。它 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已對其引導函數應用頻率相關縮放的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已對其引導函數應用頻率相關縮放的修改後模型 | diff --git a/comfyui_embedded_docs/docs/FreeU/ar.md b/comfyui_embedded_docs/docs/FreeU/ar.md index b8a785e2f..ffdbe5c54 100644 --- a/comfyui_embedded_docs/docs/FreeU/ar.md +++ b/comfyui_embedded_docs/docs/FreeU/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق تصحيحات FreeU عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق تصحيحات FreeU عليه | diff --git a/comfyui_embedded_docs/docs/FreeU/pt-BR.md b/comfyui_embedded_docs/docs/FreeU/pt-BR.md index e7a040a14..ff3bef285 100644 --- a/comfyui_embedded_docs/docs/FreeU/pt-BR.md +++ b/comfyui_embedded_docs/docs/FreeU/pt-BR.md @@ -16,4 +16,4 @@ O nó FreeU aplica modificações no domínio da frequência aos blocos de saíd | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com os patches do FreeU aplicados | \ No newline at end of file +| `model` | MODEL | O modelo modificado com os patches do FreeU aplicados | diff --git a/comfyui_embedded_docs/docs/FreeU/tr.md b/comfyui_embedded_docs/docs/FreeU/tr.md index 3218128b5..ff303aa90 100644 --- a/comfyui_embedded_docs/docs/FreeU/tr.md +++ b/comfyui_embedded_docs/docs/FreeU/tr.md @@ -16,4 +16,4 @@ FreeU düğümü, görüntü oluşturma kalitesini artırmak için bir modelin | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | FreeU yamaları uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | FreeU yamaları uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/FreeU/zh-TW.md b/comfyui_embedded_docs/docs/FreeU/zh-TW.md index 140e405c6..0919e5833 100644 --- a/comfyui_embedded_docs/docs/FreeU/zh-TW.md +++ b/comfyui_embedded_docs/docs/FreeU/zh-TW.md @@ -16,4 +16,4 @@ FreeU 節點對模型的輸出區塊進行頻域修改,以提升影像生成 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 FreeU 修補程式的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 FreeU 修補程式的修改後模型 | diff --git a/comfyui_embedded_docs/docs/FreeU_V2/ar.md b/comfyui_embedded_docs/docs/FreeU_V2/ar.md index 62e536664..b4cf2e242 100644 --- a/comfyui_embedded_docs/docs/FreeU_V2/ar.md +++ b/comfyui_embedded_docs/docs/FreeU_V2/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | نموذج الانتشار المحسن مع تطبيق تعديلات FreeU | \ No newline at end of file +| `النموذج` | MODEL | نموذج الانتشار المحسن مع تطبيق تعديلات FreeU | diff --git a/comfyui_embedded_docs/docs/FreeU_V2/pt-BR.md b/comfyui_embedded_docs/docs/FreeU_V2/pt-BR.md index 08137afa4..55d9c6012 100644 --- a/comfyui_embedded_docs/docs/FreeU_V2/pt-BR.md +++ b/comfyui_embedded_docs/docs/FreeU_V2/pt-BR.md @@ -16,4 +16,4 @@ O nó FreeU_V2 aplica um aprimoramento baseado em frequência a modelos de difus | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo de difusão aprimorado com as modificações FreeU aplicadas | \ No newline at end of file +| `model` | MODEL | O modelo de difusão aprimorado com as modificações FreeU aplicadas | diff --git a/comfyui_embedded_docs/docs/FreeU_V2/tr.md b/comfyui_embedded_docs/docs/FreeU_V2/tr.md index 5cfb0e366..5558307b4 100644 --- a/comfyui_embedded_docs/docs/FreeU_V2/tr.md +++ b/comfyui_embedded_docs/docs/FreeU_V2/tr.md @@ -16,4 +16,4 @@ FreeU_V2 düğümü, U-Net mimarisini değiştirerek difüzyon modellerine freka | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | FreeU değişiklikleri uygulanmış iyileştirilmiş difüzyon modeli | \ No newline at end of file +| `model` | MODEL | FreeU değişiklikleri uygulanmış iyileştirilmiş difüzyon modeli | diff --git a/comfyui_embedded_docs/docs/FreeU_V2/zh-TW.md b/comfyui_embedded_docs/docs/FreeU_V2/zh-TW.md index 592917cc4..2ecd37447 100644 --- a/comfyui_embedded_docs/docs/FreeU_V2/zh-TW.md +++ b/comfyui_embedded_docs/docs/FreeU_V2/zh-TW.md @@ -16,4 +16,4 @@ FreeU_V2 節點透過修改 U-Net 架構,對擴散模型進行基於頻率的 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 FreeU 修改的增強型擴散模型 | \ No newline at end of file +| `model` | MODEL | 已應用 FreeU 修改的增強型擴散模型 | diff --git a/comfyui_embedded_docs/docs/GITSScheduler/ar.md b/comfyui_embedded_docs/docs/GITSScheduler/ar.md index 1eceab757..78e942b08 100644 --- a/comfyui_embedded_docs/docs/GITSScheduler/ar.md +++ b/comfyui_embedded_docs/docs/GITSScheduler/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | قيم سيجما المُولَدة لجدول الضوضاء | \ No newline at end of file +| `sigmas` | SIGMAS | قيم سيجما المُولَدة لجدول الضوضاء | diff --git a/comfyui_embedded_docs/docs/GITSScheduler/pt-BR.md b/comfyui_embedded_docs/docs/GITSScheduler/pt-BR.md index 89d5747bd..0cf009b4e 100644 --- a/comfyui_embedded_docs/docs/GITSScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/GITSScheduler/pt-BR.md @@ -16,4 +16,4 @@ O nó GITSScheduler gera um cronograma de sigmas de ruído para o método de amo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Os valores de sigma gerados para o cronograma de ruído | \ No newline at end of file +| `sigmas` | SIGMAS | Os valores de sigma gerados para o cronograma de ruído | diff --git a/comfyui_embedded_docs/docs/GITSScheduler/tr.md b/comfyui_embedded_docs/docs/GITSScheduler/tr.md index e6e302ed5..19efaf099 100644 --- a/comfyui_embedded_docs/docs/GITSScheduler/tr.md +++ b/comfyui_embedded_docs/docs/GITSScheduler/tr.md @@ -16,4 +16,4 @@ GITSScheduler düğümü, GITS (Generative Iterative Time Steps - Üretken Yinel | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Gürültü planı için oluşturulan sigma değerleri | \ No newline at end of file +| `sigmas` | SIGMAS | Gürültü planı için oluşturulan sigma değerleri | diff --git a/comfyui_embedded_docs/docs/GITSScheduler/zh-TW.md b/comfyui_embedded_docs/docs/GITSScheduler/zh-TW.md index 7f7c4b100..40fa2c547 100644 --- a/comfyui_embedded_docs/docs/GITSScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/GITSScheduler/zh-TW.md @@ -16,4 +16,4 @@ GITSScheduler 節點為 GITS(生成式迭代時間步長)取樣方法生成 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 為噪聲調度生成的 sigma 值 | \ No newline at end of file +| `sigmas` | SIGMAS | 為噪聲調度生成的 sigma 值 | diff --git a/comfyui_embedded_docs/docs/GLSLShader/ar.md b/comfyui_embedded_docs/docs/GLSLShader/ar.md new file mode 100644 index 000000000..ef5719a22 --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/ar.md @@ -0,0 +1,29 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/ar.md) + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | نعم | N/A | كود مصدر شادر التجزئة GLSL (متوافق مع GLSL ES 3.00 / WebGL 2.0). الافتراضي: شادر أساسي يخرج أول صورة مدخلة. | +| `size_mode` | COMBO | نعم | `"from_input"`
`"custom"` | حجم المخرجات: 'from_input' يستخدم أبعاد أول صورة مدخلة، 'custom' يسمح بتحديد الحجم يدوياً. | +| `width` | INT | لا | 1 إلى 16384 | عرض صورة المخرجات عندما يكون `size_mode` مضبوطاً على `"custom"`. الافتراضي: 512. | +| `height` | INT | لا | 1 إلى 16384 | ارتفاع صورة المخرجات عندما يكون `size_mode` مضبوطاً على `"custom"`. الافتراضي: 512. | +| `images` | IMAGE | نعم | 1 إلى 8 صور | الصور المدخلة ليتم معالجتها بواسطة الشادر. الصور متاحة كـ `u_image0` إلى `u_image7` (sampler2D) في كود الشادر. | +| `floats` | FLOAT | لا | 0 إلى 8 قيم فاصلة عائمة | قيم موحدة (uniform) من نوع فاصلة عائمة للشادر. القيم متاحة كـ `u_float0` إلى `u_float7` في كود الشادر. الافتراضي: 0.0. | +| `ints` | INT | لا | 0 إلى 8 أعداد صحيحة | قيم موحدة (uniform) من نوع عدد صحيح للشادر. القيم متاحة كـ `u_int0` إلى `u_int7` في كود الشادر. الافتراضي: 0. | + +**ملاحظات:** + +* معاملا `width` و `height` مطلوبان ومرئيان فقط عندما يكون `size_mode` مضبوطاً على `"custom"`. +* مطلوب صورة مدخلة واحدة على الأقل. +* كود الشادر لديه دائماً إمكانية الوصول إلى متغير موحد (uniform) باسم `u_resolution` (vec2) يحتوي على أبعاد المخرجات. +* يمكن توفير حد أقصى 8 صور مدخلة، و8 متغيرات موحدة فاصلة عائمة، و8 متغيرات موحدة أعداد صحيحة. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | أول صورة مخرجة من الشادر. متاحة عبر `layout(location = 0) out vec4 fragColor0` في كود الشادر. | +| `IMAGE1` | IMAGE | ثاني صورة مخرجة من الشادر. متاحة عبر `layout(location = 1) out vec4 fragColor1` في كود الشادر. | +| `IMAGE2` | IMAGE | ثالث صورة مخرجة من الشادر. متاحة عبر `layout(location = 2) out vec4 fragColor2` في كود الشادر. | +| `IMAGE3` | IMAGE | رابع صورة مخرجة من الشادر. متاحة عبر `layout(location = 3) out vec4 fragColor3` في كود الشادر. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/en.md b/comfyui_embedded_docs/docs/GLSLShader/en.md new file mode 100644 index 000000000..8dde2e3d2 --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/en.md @@ -0,0 +1,31 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/en.md) + +The GLSL Shader node applies custom GLSL ES fragment shader code to input images. It allows you to write shader programs that can process multiple images and accept uniform parameters (floats and integers) to create complex visual effects. The output size can be determined by the first input image or set manually. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Yes | N/A | GLSL fragment shader source code (GLSL ES 3.00 / WebGL 2.0 compatible). Default: A basic shader that outputs the first input image. | +| `size_mode` | COMBO | Yes | `"from_input"`
`"custom"` | Output size: 'from_input' uses first input image dimensions, 'custom' allows manual size. | +| `width` | INT | No | 1 to 16384 | The width of the output image when `size_mode` is set to `"custom"`. Default: 512. | +| `height` | INT | No | 1 to 16384 | The height of the output image when `size_mode` is set to `"custom"`. Default: 512. | +| `images` | IMAGE | Yes | 1 to 8 images | Input images to be processed by the shader. Images are available as `u_image0` to `u_image7` (sampler2D) in the shader code. | +| `floats` | FLOAT | No | 0 to 8 floats | Floating-point uniform values for the shader. Floats are available as `u_float0` to `u_float7` in the shader code. Default: 0.0. | +| `ints` | INT | No | 0 to 8 integers | Integer uniform values for the shader. Ints are available as `u_int0` to `u_int7` in the shader code. Default: 0. | + +**Notes:** + +* The `width` and `height` parameters are only required and visible when `size_mode` is set to `"custom"`. +* At least one input image is required. +* The shader code always has access to a `u_resolution` (vec2) uniform containing the output dimensions. +* A maximum of 8 input images, 8 float uniforms, and 8 integer uniforms can be provided. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | The first output image from the shader. Available via `layout(location = 0) out vec4 fragColor0` in the shader code. | +| `IMAGE1` | IMAGE | The second output image from the shader. Available via `layout(location = 1) out vec4 fragColor1` in the shader code. | +| `IMAGE2` | IMAGE | The third output image from the shader. Available via `layout(location = 2) out vec4 fragColor2` in the shader code. | +| `IMAGE3` | IMAGE | The fourth output image from the shader. Available via `layout(location = 3) out vec4 fragColor3` in the shader code. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/es.md b/comfyui_embedded_docs/docs/GLSLShader/es.md new file mode 100644 index 000000000..58c438f8a --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/es.md @@ -0,0 +1,31 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/es.md) + +El nodo GLSL Shader aplica código personalizado de fragment shader GLSL ES a imágenes de entrada. Permite escribir programas de shader que pueden procesar múltiples imágenes y aceptar parámetros uniformes (flotantes y enteros) para crear efectos visuales complejos. El tamaño de salida puede determinarse por la primera imagen de entrada o establecerse manualmente. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Sí | N/A | Código fuente del fragment shader GLSL (compatible con GLSL ES 3.00 / WebGL 2.0). Por defecto: Un shader básico que devuelve la primera imagen de entrada. | +| `size_mode` | COMBO | Sí | `"from_input"`
`"custom"` | Tamaño de salida: 'from_input' usa las dimensiones de la primera imagen de entrada, 'custom' permite un tamaño manual. | +| `width` | INT | No | 1 a 16384 | El ancho de la imagen de salida cuando `size_mode` está configurado como `"custom"`. Por defecto: 512. | +| `height` | INT | No | 1 a 16384 | La altura de la imagen de salida cuando `size_mode` está configurado como `"custom"`. Por defecto: 512. | +| `images` | IMAGE | Sí | 1 a 8 imágenes | Imágenes de entrada para ser procesadas por el shader. Las imágenes están disponibles como `u_image0` a `u_image7` (sampler2D) en el código del shader. | +| `floats` | FLOAT | No | 0 a 8 flotantes | Valores uniformes de punto flotante para el shader. Los flotantes están disponibles como `u_float0` a `u_float7` en el código del shader. Por defecto: 0.0. | +| `ints` | INT | No | 0 a 8 enteros | Valores uniformes enteros para el shader. Los enteros están disponibles como `u_int0` a `u_int7` en el código del shader. Por defecto: 0. | + +**Notas:** + +* Los parámetros `width` y `height` solo son obligatorios y visibles cuando `size_mode` está configurado como `"custom"`. +* Se requiere al menos una imagen de entrada. +* El código del shader siempre tiene acceso a un uniforme `u_resolution` (vec2) que contiene las dimensiones de salida. +* Se puede proporcionar un máximo de 8 imágenes de entrada, 8 uniformes flotantes y 8 uniformes enteros. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | La primera imagen de salida del shader. Disponible mediante `layout(location = 0) out vec4 fragColor0` en el código del shader. | +| `IMAGE1` | IMAGE | La segunda imagen de salida del shader. Disponible mediante `layout(location = 1) out vec4 fragColor1` en el código del shader. | +| `IMAGE2` | IMAGE | La tercera imagen de salida del shader. Disponible mediante `layout(location = 2) out vec4 fragColor2` en el código del shader. | +| `IMAGE3` | IMAGE | La cuarta imagen de salida del shader. Disponible mediante `layout(location = 3) out vec4 fragColor3` en el código del shader. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/fr.md b/comfyui_embedded_docs/docs/GLSLShader/fr.md new file mode 100644 index 000000000..6055df83c --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/fr.md @@ -0,0 +1,31 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/fr.md) + +Le nœud GLSL Shader applique un code de nuanceur de fragments GLSL ES personnalisé aux images d'entrée. Il vous permet d'écrire des programmes de nuanceurs qui peuvent traiter plusieurs images et accepter des paramètres uniformes (nombres à virgule flottante et entiers) pour créer des effets visuels complexes. La taille de sortie peut être déterminée par la première image d'entrée ou définie manuellement. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Oui | N/A | Code source du nuanceur de fragments GLSL (compatible GLSL ES 3.00 / WebGL 2.0). Par défaut : un nuanceur de base qui sort la première image d'entrée. | +| `size_mode` | COMBO | Oui | `"from_input"`
`"custom"` | Taille de sortie : 'from_input' utilise les dimensions de la première image d'entrée, 'custom' permet une taille manuelle. | +| `width` | INT | Non | 1 à 16384 | La largeur de l'image de sortie lorsque `size_mode` est défini sur `"custom"`. Par défaut : 512. | +| `height` | INT | Non | 1 à 16384 | La hauteur de l'image de sortie lorsque `size_mode` est défini sur `"custom"`. Par défaut : 512. | +| `images` | IMAGE | Oui | 1 à 8 images | Images d'entrée à traiter par le nuanceur. Les images sont disponibles sous les noms `u_image0` à `u_image7` (sampler2D) dans le code du nuanceur. | +| `floats` | FLOAT | Non | 0 à 8 floats | Valeurs uniformes à virgule flottante pour le nuanceur. Les floats sont disponibles sous les noms `u_float0` à `u_float7` dans le code du nuanceur. Par défaut : 0.0. | +| `ints` | INT | Non | 0 à 8 entiers | Valeurs uniformes entières pour le nuanceur. Les entiers sont disponibles sous les noms `u_int0` à `u_int7` dans le code du nuanceur. Par défaut : 0. | + +**Notes :** + +* Les paramètres `width` et `height` ne sont requis et visibles que lorsque `size_mode` est défini sur `"custom"`. +* Au moins une image d'entrée est requise. +* Le code du nuanceur a toujours accès à une variable uniforme `u_resolution` (vec2) contenant les dimensions de sortie. +* Un maximum de 8 images d'entrée, 8 uniformes float et 8 uniformes integer peut être fourni. + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | La première image de sortie du nuanceur. Disponible via `layout(location = 0) out vec4 fragColor0` dans le code du nuanceur. | +| `IMAGE1` | IMAGE | La deuxième image de sortie du nuanceur. Disponible via `layout(location = 1) out vec4 fragColor1` dans le code du nuanceur. | +| `IMAGE2` | IMAGE | La troisième image de sortie du nuanceur. Disponible via `layout(location = 2) out vec4 fragColor2` dans le code du nuanceur. | +| `IMAGE3` | IMAGE | La quatrième image de sortie du nuanceur. Disponible via `layout(location = 3) out vec4 fragColor3` dans le code du nuanceur. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/ja.md b/comfyui_embedded_docs/docs/GLSLShader/ja.md new file mode 100644 index 000000000..6a70c0b6a --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/ja.md @@ -0,0 +1,31 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/ja.md) + +GLSL Shaderノードは、カスタムGLSL ESフラグメントシェーダーコードを入力画像に適用します。複数の画像を処理し、浮動小数点や整数のuniformパラメータを受け取るシェーダープログラムを記述することで、複雑な視覚効果を作成できます。出力サイズは最初の入力画像から決定するか、手動で設定することができます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | はい | N/A | GLSLフラグメントシェーダーのソースコード(GLSL ES 3.00 / WebGL 2.0互換)。デフォルト: 最初の入力画像を出力する基本的なシェーダー。 | +| `size_mode` | COMBO | はい | `"from_input"`
`"custom"` | 出力サイズの決定方法: 'from_input'は最初の入力画像の寸法を使用、'custom'は手動でサイズを設定可能。 | +| `width` | INT | いいえ | 1 から 16384 | `size_mode`が`"custom"`に設定されている場合の出力画像の幅。デフォルト: 512。 | +| `height` | INT | いいえ | 1 から 16384 | `size_mode`が`"custom"`に設定されている場合の出力画像の高さ。デフォルト: 512。 | +| `images` | IMAGE | はい | 1 から 8 画像 | シェーダーによって処理される入力画像。画像はシェーダーコード内で`u_image0`から`u_image7`(sampler2D)として利用可能です。 | +| `floats` | FLOAT | いいえ | 0 から 8 浮動小数点数 | シェーダー用の浮動小数点uniform値。浮動小数点数はシェーダーコード内で`u_float0`から`u_float7`として利用可能です。デフォルト: 0.0。 | +| `ints` | INT | いいえ | 0 から 8 整数 | シェーダー用の整数uniform値。整数はシェーダーコード内で`u_int0`から`u_int7`として利用可能です。デフォルト: 0。 | + +**注記:** + +* `width`および`height`パラメータは、`size_mode`が`"custom"`に設定されている場合にのみ必須となり、表示されます。 +* 少なくとも1つの入力画像が必要です。 +* シェーダーコードは常に、出力寸法を含む`u_resolution`(vec2)uniformにアクセスできます。 +* 最大で8つの入力画像、8つの浮動小数点uniform、8つの整数uniformを提供できます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | シェーダーからの最初の出力画像。シェーダーコード内の`layout(location = 0) out vec4 fragColor0`で利用可能です。 | +| `IMAGE1` | IMAGE | シェーダーからの2番目の出力画像。シェーダーコード内の`layout(location = 1) out vec4 fragColor1`で利用可能です。 | +| `IMAGE2` | IMAGE | シェーダーからの3番目の出力画像。シェーダーコード内の`layout(location = 2) out vec4 fragColor2`で利用可能です。 | +| `IMAGE3` | IMAGE | シェーダーからの4番目の出力画像。シェーダーコード内の`layout(location = 3) out vec4 fragColor3`で利用可能です。 | diff --git a/comfyui_embedded_docs/docs/GLSLShader/ko.md b/comfyui_embedded_docs/docs/GLSLShader/ko.md new file mode 100644 index 000000000..4c93b7f61 --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/ko.md @@ -0,0 +1,31 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/ko.md) + +GLSL Shader 노드는 사용자 정의 GLSL ES 프래그먼트 셰이더 코드를 입력 이미지에 적용합니다. 여러 이미지를 처리하고 균일(uniform) 매개변수(부동 소수점 및 정수)를 받아들여 복잡한 시각 효과를 생성할 수 있는 셰이더 프로그램을 작성할 수 있습니다. 출력 크기는 첫 번째 입력 이미지에 의해 결정되거나 수동으로 설정할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | 예 | 해당 없음 | GLSL 프래그먼트 셰이더 소스 코드 (GLSL ES 3.00 / WebGL 2.0 호환). 기본값: 첫 번째 입력 이미지를 출력하는 기본 셰이더. | +| `size_mode` | COMBO | 예 | `"from_input"`
`"custom"` | 출력 크기: 'from_input'은 첫 번째 입력 이미지의 크기를 사용하고, 'custom'은 수동 크기 설정을 허용합니다. | +| `width` | INT | 아니요 | 1 ~ 16384 | `size_mode`가 `"custom"`으로 설정되었을 때 출력 이미지의 너비. 기본값: 512. | +| `height` | INT | 아니요 | 1 ~ 16384 | `size_mode`가 `"custom"`으로 설정되었을 때 출력 이미지의 높이. 기본값: 512. | +| `images` | IMAGE | 예 | 1 ~ 8개 이미지 | 셰이더에 의해 처리될 입력 이미지. 이미지는 셰이더 코드 내에서 `u_image0`부터 `u_image7`(sampler2D)로 사용 가능합니다. | +| `floats` | FLOAT | 아니요 | 0 ~ 8개의 부동 소수점 | 셰이더를 위한 부동 소수점 균일(uniform) 값. 부동 소수점 값은 셰이더 코드 내에서 `u_float0`부터 `u_float7`로 사용 가능합니다. 기본값: 0.0. | +| `ints` | INT | 아니요 | 0 ~ 8개의 정수 | 셰이더를 위한 정수 균일(uniform) 값. 정수 값은 셰이더 코드 내에서 `u_int0`부터 `u_int7`로 사용 가능합니다. 기본값: 0. | + +**참고:** + +* `width` 및 `height` 매개변수는 `size_mode`가 `"custom"`으로 설정된 경우에만 필요하며 표시됩니다. +* 최소 하나의 입력 이미지가 필요합니다. +* 셰이더 코드는 항상 출력 크기를 포함하는 `u_resolution` (vec2) 균일(uniform) 변수에 접근할 수 있습니다. +* 최대 8개의 입력 이미지, 8개의 부동 소수점 균일(uniform) 변수, 8개의 정수 균일(uniform) 변수를 제공할 수 있습니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | 셰이더의 첫 번째 출력 이미지. 셰이더 코드 내 `layout(location = 0) out vec4 fragColor0`를 통해 사용 가능합니다. | +| `IMAGE1` | IMAGE | 셰이더의 두 번째 출력 이미지. 셰이더 코드 내 `layout(location = 1) out vec4 fragColor1`를 통해 사용 가능합니다. | +| `IMAGE2` | IMAGE | 셰이더의 세 번째 출력 이미지. 셰이더 코드 내 `layout(location = 2) out vec4 fragColor2`를 통해 사용 가능합니다. | +| `IMAGE3` | IMAGE | 셰이더의 네 번째 출력 이미지. 셰이더 코드 내 `layout(location = 3) out vec4 fragColor3`를 통해 사용 가능합니다. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/pt-BR.md b/comfyui_embedded_docs/docs/GLSLShader/pt-BR.md new file mode 100644 index 000000000..5ac6bf681 --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/pt-BR.md @@ -0,0 +1,31 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/pt-BR.md) + +O nó GLSL Shader aplica código personalizado de fragment shader GLSL ES a imagens de entrada. Ele permite que você escreva programas de shader que podem processar múltiplas imagens e aceitar parâmetros uniformes (floats e inteiros) para criar efeitos visuais complexos. O tamanho da saída pode ser determinado pela primeira imagem de entrada ou definido manualmente. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Sim | N/A | Código-fonte do fragment shader GLSL (compatível com GLSL ES 3.00 / WebGL 2.0). Padrão: Um shader básico que emite a primeira imagem de entrada. | +| `size_mode` | COMBO | Sim | `"from_input"`
`"custom"` | Tamanho da saída: 'from_input' usa as dimensões da primeira imagem de entrada, 'custom' permite definir o tamanho manualmente. | +| `width` | INT | Não | 1 a 16384 | A largura da imagem de saída quando `size_mode` está definido como `"custom"`. Padrão: 512. | +| `height` | INT | Não | 1 a 16384 | A altura da imagem de saída quando `size_mode` está definido como `"custom"`. Padrão: 512. | +| `images` | IMAGE | Sim | 1 a 8 imagens | Imagens de entrada a serem processadas pelo shader. As imagens estão disponíveis como `u_image0` a `u_image7` (sampler2D) no código do shader. | +| `floats` | FLOAT | Não | 0 a 8 floats | Valores uniformes de ponto flutuante para o shader. Os floats estão disponíveis como `u_float0` a `u_float7` no código do shader. Padrão: 0.0. | +| `ints` | INT | Não | 0 a 8 inteiros | Valores uniformes inteiros para o shader. Os inteiros estão disponíveis como `u_int0` a `u_int7` no código do shader. Padrão: 0. | + +**Observações:** + +* Os parâmetros `width` e `height` são obrigatórios e visíveis apenas quando `size_mode` está definido como `"custom"`. +* Pelo menos uma imagem de entrada é necessária. +* O código do shader sempre tem acesso a um uniforme `u_resolution` (vec2) contendo as dimensões da saída. +* Um máximo de 8 imagens de entrada, 8 uniformes float e 8 uniformes inteiros pode ser fornecido. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | A primeira imagem de saída do shader. Disponível via `layout(location = 0) out vec4 fragColor0` no código do shader. | +| `IMAGE1` | IMAGE | A segunda imagem de saída do shader. Disponível via `layout(location = 1) out vec4 fragColor1` no código do shader. | +| `IMAGE2` | IMAGE | A terceira imagem de saída do shader. Disponível via `layout(location = 2) out vec4 fragColor2` no código do shader. | +| `IMAGE3` | IMAGE | A quarta imagem de saída do shader. Disponível via `layout(location = 3) out vec4 fragColor3` no código do shader. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/ru.md b/comfyui_embedded_docs/docs/GLSLShader/ru.md new file mode 100644 index 000000000..dae2a5ee3 --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/ru.md @@ -0,0 +1,31 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/ru.md) + +Узел GLSL Shader применяет пользовательский фрагментный шейдерный код GLSL ES к входным изображениям. Он позволяет писать программы-шейдеры, которые могут обрабатывать несколько изображений и принимать uniform-параметры (числа с плавающей запятой и целые числа) для создания сложных визуальных эффектов. Размер выходного изображения может определяться первым входным изображением или задаваться вручную. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Да | Н/Д | Исходный код фрагментного шейдера GLSL (совместимый с GLSL ES 3.00 / WebGL 2.0). По умолчанию: базовый шейдер, выводящий первое входное изображение. | +| `size_mode` | COMBO | Да | `"from_input"`
`"custom"` | Режим размера вывода: 'from_input' использует размеры первого входного изображения, 'custom' позволяет задать размер вручную. | +| `width` | INT | Нет | от 1 до 16384 | Ширина выходного изображения, когда для `size_mode` установлено значение `"custom"`. По умолчанию: 512. | +| `height` | INT | Нет | от 1 до 16384 | Высота выходного изображения, когда для `size_mode` установлено значение `"custom"`. По умолчанию: 512. | +| `images` | IMAGE | Да | от 1 до 8 изображений | Входные изображения для обработки шейдером. В коде шейдера изображения доступны как `u_image0` до `u_image7` (sampler2D). | +| `floats` | FLOAT | Нет | от 0 до 8 чисел с плавающей запятой | Uniform-значения с плавающей запятой для шейдера. В коде шейдера доступны как `u_float0` до `u_float7`. По умолчанию: 0.0. | +| `ints` | INT | Нет | от 0 до 8 целых чисел | Uniform-значения целых чисел для шейдера. В коде шейдера доступны как `u_int0` до `u_int7`. По умолчанию: 0. | + +**Примечания:** + +* Параметры `width` и `height` требуются и отображаются только тогда, когда для `size_mode` установлено значение `"custom"`. +* Требуется хотя бы одно входное изображение. +* Код шейдера всегда имеет доступ к uniform-переменной `u_resolution` (vec2), содержащей размеры выходного изображения. +* Можно предоставить максимум 8 входных изображений, 8 uniform-значений с плавающей запятой и 8 uniform-значений целых чисел. + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | Первое выходное изображение из шейдера. Доступно через `layout(location = 0) out vec4 fragColor0` в коде шейдера. | +| `IMAGE1` | IMAGE | Второе выходное изображение из шейдера. Доступно через `layout(location = 1) out vec4 fragColor1` в коде шейдера. | +| `IMAGE2` | IMAGE | Третье выходное изображение из шейдера. Доступно через `layout(location = 2) out vec4 fragColor2` в коде шейдера. | +| `IMAGE3` | IMAGE | Четвёртое выходное изображение из шейдера. Доступно через `layout(location = 3) out vec4 fragColor3` в коде шейдера. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/tr.md b/comfyui_embedded_docs/docs/GLSLShader/tr.md new file mode 100644 index 000000000..60062571c --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/tr.md @@ -0,0 +1,31 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/tr.md) + +GLSL Shader düğümü, özel GLSL ES fragment shader kodunu giriş görüntülerine uygular. Birden fazla görüntüyü işleyebilen ve karmaşık görsel efektler oluşturmak için uniform parametreler (float ve integer) kabul edebilen shader programları yazmanıza olanak tanır. Çıktı boyutu, ilk giriş görüntüsü tarafından belirlenebilir veya manuel olarak ayarlanabilir. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | Evet | Yok | GLSL fragment shader kaynak kodu (GLSL ES 3.00 / WebGL 2.0 uyumlu). Varsayılan: İlk giriş görüntüsünü çıktılayan temel bir shader. | +| `size_mode` | COMBO | Evet | `"from_input"`
`"custom"` | Çıktı boyutu: 'from_input' ilk giriş görüntüsünün boyutlarını kullanır, 'custom' manuel boyut ayarına izin verir. | +| `width` | INT | Hayır | 1 - 16384 | `size_mode` `"custom"` olarak ayarlandığında çıktı görüntüsünün genişliği. Varsayılan: 512. | +| `height` | INT | Hayır | 1 - 16384 | `size_mode` `"custom"` olarak ayarlandığında çıktı görüntüsünün yüksekliği. Varsayılan: 512. | +| `images` | IMAGE | Evet | 1 - 8 görüntü | Shader tarafından işlenecek giriş görüntüleri. Görüntüler, shader kodunda `u_image0` ile `u_image7` (sampler2D) olarak kullanılabilir. | +| `floats` | FLOAT | Hayır | 0 - 8 float | Shader için kayan noktalı uniform değerler. Float değerleri, shader kodunda `u_float0` ile `u_float7` olarak kullanılabilir. Varsayılan: 0.0. | +| `ints` | INT | Hayır | 0 - 8 tamsayı | Shader için tamsayı uniform değerler. Tamsayılar, shader kodunda `u_int0` ile `u_int7` olarak kullanılabilir. Varsayılan: 0. | + +**Notlar:** + +* `width` ve `height` parametreleri yalnızca `size_mode` `"custom"` olarak ayarlandığında gerekli ve görünür olur. +* En az bir giriş görüntüsü gereklidir. +* Shader kodu her zaman çıktı boyutlarını içeren bir `u_resolution` (vec2) uniform değişkenine erişebilir. +* Maksimum 8 giriş görüntüsü, 8 float uniform ve 8 tamsayı uniform sağlanabilir. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | Shader'dan ilk çıktı görüntüsü. Shader kodunda `layout(location = 0) out vec4 fragColor0` ile kullanılabilir. | +| `IMAGE1` | IMAGE | Shader'dan ikinci çıktı görüntüsü. Shader kodunda `layout(location = 1) out vec4 fragColor1` ile kullanılabilir. | +| `IMAGE2` | IMAGE | Shader'dan üçüncü çıktı görüntüsü. Shader kodında `layout(location = 2) out vec4 fragColor2` ile kullanılabilir. | +| `IMAGE3` | IMAGE | Shader'dan dördüncü çıktı görüntüsü. Shader kodunda `layout(location = 3) out vec4 fragColor3` ile kullanılabilir. | diff --git a/comfyui_embedded_docs/docs/GLSLShader/zh-TW.md b/comfyui_embedded_docs/docs/GLSLShader/zh-TW.md new file mode 100644 index 000000000..1f5654b6e --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/zh-TW.md @@ -0,0 +1,31 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/zh-TW.md) + +GLSL Shader 節點將自訂的 GLSL ES 片段著色器程式碼套用至輸入圖像。它允許您編寫能夠處理多個圖像並接受統一參數(浮點數和整數)的著色器程式,以創造複雜的視覺效果。輸出尺寸可以由第一個輸入圖像決定或手動設定。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | 是 | N/A | GLSL 片段著色器原始碼(相容於 GLSL ES 3.00 / WebGL 2.0)。預設值:一個輸出第一個輸入圖像的基本著色器。 | +| `size_mode` | COMBO | 是 | `"from_input"`
`"custom"` | 輸出尺寸模式:'from_input' 使用第一個輸入圖像的尺寸,'custom' 允許手動設定尺寸。 | +| `width` | INT | 否 | 1 至 16384 | 當 `size_mode` 設定為 `"custom"` 時,輸出圖像的寬度。預設值:512。 | +| `height` | INT | 否 | 1 至 16384 | 當 `size_mode` 設定為 `"custom"` 時,輸出圖像的高度。預設值:512。 | +| `images` | IMAGE | 是 | 1 至 8 個圖像 | 要由著色器處理的輸入圖像。圖像在著色器程式碼中作為 `u_image0` 到 `u_image7` (sampler2D) 使用。 | +| `floats` | FLOAT | 否 | 0 至 8 個浮點數 | 提供給著色器的浮點數統一參數值。浮點數在著色器程式碼中作為 `u_float0` 到 `u_float7` 使用。預設值:0.0。 | +| `ints` | INT | 否 | 0 至 8 個整數 | 提供給著色器的整數統一參數值。整數在著色器程式碼中作為 `u_int0` 到 `u_int7` 使用。預設值:0。 | + +**注意事項:** + +* `width` 和 `height` 參數僅在 `size_mode` 設定為 `"custom"` 時才需要且可見。 +* 至少需要一個輸入圖像。 +* 著色器程式碼始終可以存取一個包含輸出尺寸的 `u_resolution` (vec2) 統一參數。 +* 最多可以提供 8 個輸入圖像、8 個浮點數統一參數和 8 個整數統一參數。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | 來自著色器的第一個輸出圖像。在著色器程式碼中可透過 `layout(location = 0) out vec4 fragColor0` 存取。 | +| `IMAGE1` | IMAGE | 來自著色器的第二個輸出圖像。在著色器程式碼中可透過 `layout(location = 1) out vec4 fragColor1` 存取。 | +| `IMAGE2` | IMAGE | 來自著色器的第三個輸出圖像。在著色器程式碼中可透過 `layout(location = 2) out vec4 fragColor2` 存取。 | +| `IMAGE3` | IMAGE | 來自著色器的第四個輸出圖像。在著色器程式碼中可透過 `layout(location = 3) out vec4 fragColor3` 存取。 | diff --git a/comfyui_embedded_docs/docs/GLSLShader/zh.md b/comfyui_embedded_docs/docs/GLSLShader/zh.md new file mode 100644 index 000000000..4615bb95a --- /dev/null +++ b/comfyui_embedded_docs/docs/GLSLShader/zh.md @@ -0,0 +1,31 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/GLSLShader/zh.md) + +GLSL Shader 节点将自定义的 GLSL ES 片段着色器代码应用于输入图像。它允许您编写可以处理多个图像并接受统一参数(浮点数和整数)以创建复杂视觉效果的着色器程序。输出尺寸可以由第一个输入图像决定,也可以手动设置。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `fragment_shader` | STRING | 是 | 不适用 | GLSL 片段着色器源代码(兼容 GLSL ES 3.00 / WebGL 2.0)。默认值:一个输出第一个输入图像的基本着色器。 | +| `size_mode` | COMBO | 是 | `"from_input"`
`"custom"` | 输出尺寸模式:'from_input' 使用第一个输入图像的尺寸,'custom' 允许手动设置尺寸。 | +| `width` | INT | 否 | 1 到 16384 | 当 `size_mode` 设置为 `"custom"` 时,输出图像的宽度。默认值:512。 | +| `height` | INT | 否 | 1 到 16384 | 当 `size_mode` 设置为 `"custom"` 时,输出图像的高度。默认值:512。 | +| `images` | IMAGE | 是 | 1 到 8 张图像 | 由着色器处理的输入图像。在着色器代码中,图像以 `u_image0` 到 `u_image7`(sampler2D)的形式提供。 | +| `floats` | FLOAT | 否 | 0 到 8 个浮点数 | 着色器使用的浮点型统一值。在着色器代码中,浮点数以 `u_float0` 到 `u_float7` 的形式提供。默认值:0.0。 | +| `ints` | INT | 否 | 0 到 8 个整数 | 着色器使用的整型统一值。在着色器代码中,整数以 `u_int0` 到 `u_int7` 的形式提供。默认值:0。 | + +**注意:** + +* 仅当 `size_mode` 设置为 `"custom"` 时,`width` 和 `height` 参数才是必需的且可见。 +* 至少需要一个输入图像。 +* 着色器代码始终可以访问一个包含输出尺寸的 `u_resolution`(vec2)统一变量。 +* 最多可以提供 8 个输入图像、8 个浮点型统一变量和 8 个整型统一变量。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `IMAGE0` | IMAGE | 着色器输出的第一个图像。在着色器代码中通过 `layout(location = 0) out vec4 fragColor0` 提供。 | +| `IMAGE1` | IMAGE | 着色器输出的第二个图像。在着色器代码中通过 `layout(location = 1) out vec4 fragColor1` 提供。 | +| `IMAGE2` | IMAGE | 着色器输出的第三个图像。在着色器代码中通过 `layout(location = 2) out vec4 fragColor2` 提供。 | +| `IMAGE3` | IMAGE | 着色器输出的第四个图像。在着色器代码中通过 `layout(location = 3) out vec4 fragColor3` 提供。 | diff --git a/comfyui_embedded_docs/docs/GeminiImage/ar.md b/comfyui_embedded_docs/docs/GeminiImage/ar.md index 475e52313..a8d69bf74 100644 --- a/comfyui_embedded_docs/docs/GeminiImage/ar.md +++ b/comfyui_embedded_docs/docs/GeminiImage/ar.md @@ -21,4 +21,4 @@ |------------|---------------|--------| | `IMAGE` | IMAGE | استجابة الصورة المُولدة من نموذج Gemini | | `STRING` | STRING | الاستجابة النصية المُولدة من نموذج Gemini | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/GeminiImage/pt-BR.md b/comfyui_embedded_docs/docs/GeminiImage/pt-BR.md index ca42fe5f3..9d19b4c36 100644 --- a/comfyui_embedded_docs/docs/GeminiImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/GeminiImage/pt-BR.md @@ -19,4 +19,4 @@ O nó GeminiImage gera respostas de texto e imagem a partir dos modelos de IA Ge | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `IMAGE` | IMAGE | A resposta de imagem gerada pelo modelo Gemini | -| `STRING` | STRING | A resposta de texto gerada pelo modelo Gemini | \ No newline at end of file +| `STRING` | STRING | A resposta de texto gerada pelo modelo Gemini | diff --git a/comfyui_embedded_docs/docs/GeminiImage/tr.md b/comfyui_embedded_docs/docs/GeminiImage/tr.md index a85604067..d239e21ea 100644 --- a/comfyui_embedded_docs/docs/GeminiImage/tr.md +++ b/comfyui_embedded_docs/docs/GeminiImage/tr.md @@ -19,4 +19,4 @@ GeminiImage düğümü, Google'ın Gemini AI modellerinden metin ve görüntü y | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `IMAGE` | IMAGE | Gemini modelinden oluşturulan görüntü yanıtı | -| `STRING` | STRING | Gemini modelinden oluşturulan metin yanıtı | \ No newline at end of file +| `STRING` | STRING | Gemini modelinden oluşturulan metin yanıtı | diff --git a/comfyui_embedded_docs/docs/GeminiImage/zh-TW.md b/comfyui_embedded_docs/docs/GeminiImage/zh-TW.md index da4b6e9b7..60c0d380c 100644 --- a/comfyui_embedded_docs/docs/GeminiImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/GeminiImage/zh-TW.md @@ -19,4 +19,4 @@ GeminiImage 節點能從 Google 的 Gemini AI 模型生成文字和圖片回應 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `IMAGE` | IMAGE | 從 Gemini 模型生成的圖片回應 | -| `STRING` | STRING | 從 Gemini 模型生成的文字回應 | \ No newline at end of file +| `STRING` | STRING | 從 Gemini 模型生成的文字回應 | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/ar.md b/comfyui_embedded_docs/docs/GeminiImage2Node/ar.md index cd43628d9..227ed3849 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/ar.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/ar.md @@ -17,12 +17,13 @@ | `system_prompt` | STRING | لا | غير متاح | التعليمات الأساسية التي تحدد سلوك الذكاء الاصطناعي. القيمة الافتراضية: نص توجيهي نظامي محدد مسبقًا لإنشاء الصور. | **القيود:** -* يدخل المدخل `images` حدًا أقصى يبلغ 14 صورة. إذا تم توفير أكثر من ذلك، سيتم إرجاع خطأ. -* يجب أن يكون المدخل `files` متصلًا بعُقدة تُخرج نوع البيانات `GEMINI_INPUT_FILES`. + +* يدخل المدخل `images` حدًا أقصى يبلغ 14 صورة. إذا تم توفير أكثر من ذلك، سيتم إرجاع خطأ. +* يجب أن يكون المدخل `files` متصلًا بعُقدة تُخرج نوع البيانات `GEMINI_INPUT_FILES`. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `image` | IMAGE | الصورة التي تم إنشاؤها أو تعديلها بواسطة نموذج Gemini. | -| `string` | STRING | الاستجابة النصية من النموذج. سيكون هذا المخرج فارغًا إذا تم تعيين `response_modalities` على "IMAGE". | \ No newline at end of file +| `string` | STRING | الاستجابة النصية من النموذج. سيكون هذا المخرج فارغًا إذا تم تعيين `response_modalities` على "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/en.md b/comfyui_embedded_docs/docs/GeminiImage2Node/en.md index 502ab00bb..fcd110625 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/en.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/en.md @@ -17,12 +17,13 @@ The GeminiImage2Node generates or edits images using Google's Vertex AI Gemini m | `system_prompt` | STRING | No | N/A | Foundational instructions that dictate an AI's behavior. Default: A pre-defined system prompt for image generation. | **Constraints:** -* The `images` input supports a maximum of 14 images. If more are provided, an error will be raised. -* The `files` input must be connected to a node that outputs the `GEMINI_INPUT_FILES` data type. + +* The `images` input supports a maximum of 14 images. If more are provided, an error will be raised. +* The `files` input must be connected to a node that outputs the `GEMINI_INPUT_FILES` data type. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| | `image` | IMAGE | The image generated or edited by the Gemini model. | -| `string` | STRING | The text response from the model. This output will be empty if `response_modalities` is set to "IMAGE". | \ No newline at end of file +| `string` | STRING | The text response from the model. This output will be empty if `response_modalities` is set to "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/es.md b/comfyui_embedded_docs/docs/GeminiImage2Node/es.md index 36cdbcb73..0c67aadd9 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/es.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/es.md @@ -17,12 +17,13 @@ El nodo GeminiImage2Node genera o edita imágenes utilizando el modelo Gemini de | `system_prompt` | STRING | No | N/A | Instrucciones fundamentales que dictan el comportamiento de una IA. Por defecto: Un mensaje de sistema predefinido para generación de imágenes. | **Restricciones:** -* La entrada `images` admite un máximo de 14 imágenes. Si se proporcionan más, se generará un error. -* La entrada `files` debe estar conectada a un nodo que emita el tipo de dato `GEMINI_INPUT_FILES`. + +* La entrada `images` admite un máximo de 14 imágenes. Si se proporcionan más, se generará un error. +* La entrada `files` debe estar conectada a un nodo que emita el tipo de dato `GEMINI_INPUT_FILES`. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `image` | IMAGE | La imagen generada o editada por el modelo Gemini. | -| `string` | STRING | La respuesta de texto del modelo. Esta salida estará vacía si `response_modalities` está configurado como "IMAGE". | \ No newline at end of file +| `string` | STRING | La respuesta de texto del modelo. Esta salida estará vacía si `response_modalities` está configurado como "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/fr.md b/comfyui_embedded_docs/docs/GeminiImage2Node/fr.md index d4084b49d..ed64506b3 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/fr.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/fr.md @@ -17,12 +17,13 @@ Le nœud GeminiImage2Node génère ou modifie des images en utilisant le modèle | `system_prompt` | STRING | Non | N/A | Instructions fondamentales qui dictent le comportement de l'IA. Par défaut : Une instruction système prédéfinie pour la génération d'images. | **Contraintes :** -* L'entrée `images` supporte un maximum de 14 images. Si plus sont fournies, une erreur sera levée. -* L'entrée `files` doit être connectée à un nœud qui produit le type de données `GEMINI_INPUT_FILES`. + +* L'entrée `images` supporte un maximum de 14 images. Si plus sont fournies, une erreur sera levée. +* L'entrée `files` doit être connectée à un nœud qui produit le type de données `GEMINI_INPUT_FILES`. ## Sorties | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| | `image` | IMAGE | L'image générée ou modifiée par le modèle Gemini. | -| `string` | STRING | La réponse textuelle du modèle. Cette sortie sera vide si `response_modalities` est défini sur "IMAGE". | \ No newline at end of file +| `string` | STRING | La réponse textuelle du modèle. Cette sortie sera vide si `response_modalities` est défini sur "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/ja.md b/comfyui_embedded_docs/docs/GeminiImage2Node/ja.md index 0f00dc3f7..fd40d0949 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/ja.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/ja.md @@ -17,12 +17,13 @@ GeminiImage2Nodeは、GoogleのVertex AI Geminiモデルを使用して画像を | `system_prompt` | STRING | いいえ | N/A | AIの振る舞いを決定する基本的な指示です。デフォルト: 画像生成用に事前定義されたシステムプロンプト。 | **制約事項:** -* `images`入力は最大14枚の画像をサポートします。それ以上が提供されるとエラーが発生します。 -* `files`入力は、`GEMINI_INPUT_FILES`データ型を出力するノードに接続する必要があります。 + +* `images`入力は最大14枚の画像をサポートします。それ以上が提供されるとエラーが発生します。 +* `files`入力は、`GEMINI_INPUT_FILES`データ型を出力するノードに接続する必要があります。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `image` | IMAGE | Geminiモデルによって生成または編集された画像です。 | -| `string` | STRING | モデルからのテキスト応答です。`response_modalities`が"IMAGE"に設定されている場合、この出力は空になります。 | \ No newline at end of file +| `string` | STRING | モデルからのテキスト応答です。`response_modalities`が"IMAGE"に設定されている場合、この出力は空になります。 | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/ko.md b/comfyui_embedded_docs/docs/GeminiImage2Node/ko.md index 8776bd708..09e3c3dfa 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/ko.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/ko.md @@ -17,12 +17,13 @@ GeminiImage2Node는 Google의 Vertex AI Gemini 모델을 사용하여 이미지 | `system_prompt` | STRING | 아니요 | 해당 없음 | AI의 동작을 지시하는 기본 지침입니다. 기본값: 이미지 생성을 위해 미리 정의된 시스템 프롬프트입니다. | **제약 조건:** -* `images` 입력은 최대 14개의 이미지를 지원합니다. 더 많은 이미지가 제공되면 오류가 발생합니다. -* `files` 입력은 `GEMINI_INPUT_FILES` 데이터 타입을 출력하는 노드에 연결되어야 합니다. + +* `images` 입력은 최대 14개의 이미지를 지원합니다. 더 많은 이미지가 제공되면 오류가 발생합니다. +* `files` 입력은 `GEMINI_INPUT_FILES` 데이터 타입을 출력하는 노드에 연결되어야 합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `image` | IMAGE | Gemini 모델에 의해 생성되거나 편집된 이미지입니다. | -| `string` | STRING | 모델의 텍스트 응답입니다. `response_modalities`가 "IMAGE"로 설정된 경우 이 출력은 비어 있습니다. | \ No newline at end of file +| `string` | STRING | 모델의 텍스트 응답입니다. `response_modalities`가 "IMAGE"로 설정된 경우 이 출력은 비어 있습니다. | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/pt-BR.md b/comfyui_embedded_docs/docs/GeminiImage2Node/pt-BR.md index 4a42e89ac..5c07634a5 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/pt-BR.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/pt-BR.md @@ -17,12 +17,13 @@ O GeminiImage2Node gera ou edita imagens usando o modelo Gemini da Vertex AI do | `system_prompt` | STRING | Não | N/A | Instruções fundamentais que ditam o comportamento de uma IA. Padrão: Um prompt de sistema predefinido para geração de imagens. | **Restrições:** -* A entrada `images` suporta um máximo de 14 imagens. Se mais forem fornecidas, um erro será gerado. -* A entrada `files` deve ser conectada a um nó que emita o tipo de dados `GEMINI_INPUT_FILES`. + +* A entrada `images` suporta um máximo de 14 imagens. Se mais forem fornecidas, um erro será gerado. +* A entrada `files` deve ser conectada a um nó que emita o tipo de dados `GEMINI_INPUT_FILES`. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `image` | IMAGE | A imagem gerada ou editada pelo modelo Gemini. | -| `string` | STRING | A resposta textual do modelo. Esta saída ficará vazia se `response_modalities` estiver definido como "IMAGE". | \ No newline at end of file +| `string` | STRING | A resposta textual do modelo. Esta saída ficará vazia se `response_modalities` estiver definido como "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/ru.md b/comfyui_embedded_docs/docs/GeminiImage2Node/ru.md index 32d65ffc7..2bf4519e8 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/ru.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/ru.md @@ -17,12 +17,13 @@ | `system_prompt` | STRING | Нет | Н/Д | Фундаментальные инструкции, определяющие поведение ИИ. По умолчанию: предопределённый системный промпт для генерации изображений. | **Ограничения:** -* Входной параметр `images` поддерживает максимум 14 изображений. Если предоставлено больше, будет вызвана ошибка. -* Входной параметр `files` должен быть подключён к узлу, который выводит данные типа `GEMINI_INPUT_FILES`. + +* Входной параметр `images` поддерживает максимум 14 изображений. Если предоставлено больше, будет вызвана ошибка. +* Входной параметр `files` должен быть подключён к узлу, который выводит данные типа `GEMINI_INPUT_FILES`. ## Выходные данные | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `image` | IMAGE | Изображение, сгенерированное или отредактированное моделью Gemini. | -| `string` | STRING | Текстовый ответ от модели. Этот выход будет пустым, если для `response_modalities` установлено значение "IMAGE". | \ No newline at end of file +| `string` | STRING | Текстовый ответ от модели. Этот выход будет пустым, если для `response_modalities` установлено значение "IMAGE". | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/tr.md b/comfyui_embedded_docs/docs/GeminiImage2Node/tr.md index 1fa0de778..b1392290a 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/tr.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/tr.md @@ -17,12 +17,13 @@ GeminiImage2Node, Google'ın Vertex AI Gemini modelini kullanarak görüntüler | `system_prompt` | STRING | Hayır | Yok | Bir yapay zekanın davranışını belirleyen temel talimatlar. Varsayılan: Görüntü oluşturma için önceden tanımlanmış bir sistem istemi. | **Kısıtlamalar:** -* `images` girişi maksimum 14 görüntüyü destekler. Daha fazlası sağlanırsa bir hata oluşur. -* `files` girişi, `GEMINI_INPUT_FILES` veri türünü çıktı olarak veren bir düğüme bağlanmalıdır. + +* `images` girişi maksimum 14 görüntüyü destekler. Daha fazlası sağlanırsa bir hata oluşur. +* `files` girişi, `GEMINI_INPUT_FILES` veri türünü çıktı olarak veren bir düğüme bağlanmalıdır. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `image` | IMAGE | Gemini modeli tarafından oluşturulan veya düzenlenen görüntü. | -| `string` | STRING | Modelden gelen metin yanıtı. Eğer `response_modalities` "IMAGE" olarak ayarlanmışsa bu çıkış boş olacaktır. | \ No newline at end of file +| `string` | STRING | Modelden gelen metin yanıtı. Eğer `response_modalities` "IMAGE" olarak ayarlanmışsa bu çıkış boş olacaktır. | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/zh-TW.md b/comfyui_embedded_docs/docs/GeminiImage2Node/zh-TW.md index 582d29bff..5e484720e 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/zh-TW.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/zh-TW.md @@ -17,12 +17,13 @@ GeminiImage2Node 使用 Google 的 Vertex AI Gemini 模型來生成或編輯圖 | `system_prompt` | STRING | 否 | N/A | 決定 AI 行為的基礎指令。預設值:一個預定義的用於圖像生成的系統提示。 | **限制條件:** -* `images` 輸入最多支援 14 個圖像。如果提供更多,將會引發錯誤。 -* `files` 輸入必須連接到輸出 `GEMINI_INPUT_FILES` 資料類型的節點。 + +* `images` 輸入最多支援 14 個圖像。如果提供更多,將會引發錯誤。 +* `files` 輸入必須連接到輸出 `GEMINI_INPUT_FILES` 資料類型的節點。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `image` | IMAGE | 由 Gemini 模型生成或編輯的圖像。 | -| `string` | STRING | 來自模型的文字回應。如果 `response_modalities` 設為 "IMAGE",此輸出將為空。 | \ No newline at end of file +| `string` | STRING | 來自模型的文字回應。如果 `response_modalities` 設為 "IMAGE",此輸出將為空。 | diff --git a/comfyui_embedded_docs/docs/GeminiImage2Node/zh.md b/comfyui_embedded_docs/docs/GeminiImage2Node/zh.md index bf9c19278..b476e628f 100644 --- a/comfyui_embedded_docs/docs/GeminiImage2Node/zh.md +++ b/comfyui_embedded_docs/docs/GeminiImage2Node/zh.md @@ -17,12 +17,13 @@ GeminiImage2Node 使用 Google 的 Vertex AI Gemini 模型生成或编辑图像 | `system_prompt` | STRING | 否 | 不适用 | 规定 AI 行为的基础指令。默认值:预定义的图像生成系统提示词。 | **约束条件:** -* `images` 输入最多支持 14 张图像。如果提供更多,将引发错误。 -* `files` 输入必须连接到输出 `GEMINI_INPUT_FILES` 数据类型的节点。 + +* `images` 输入最多支持 14 张图像。如果提供更多,将引发错误。 +* `files` 输入必须连接到输出 `GEMINI_INPUT_FILES` 数据类型的节点。 ## 输出 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `image` | IMAGE | 由 Gemini 模型生成或编辑的图像。 | -| `string` | STRING | 来自模型的文本响应。如果 `response_modalities` 设置为 "IMAGE",此输出将为空。 | \ No newline at end of file +| `string` | STRING | 来自模型的文本响应。如果 `response_modalities` 设置为 "IMAGE",此输出将为空。 | diff --git a/comfyui_embedded_docs/docs/GeminiImageNode/ar.md b/comfyui_embedded_docs/docs/GeminiImageNode/ar.md index d69dabf8b..15db43574 100644 --- a/comfyui_embedded_docs/docs/GeminiImageNode/ar.md +++ b/comfyui_embedded_docs/docs/GeminiImageNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `IMAGE` | IMAGE | استجابة الصورة المُنشأة من نموذج Gemini | -| `STRING` | STRING | الاستجابة النصية المُنشأة من نموذج Gemini | \ No newline at end of file +| `STRING` | STRING | الاستجابة النصية المُنشأة من نموذج Gemini | diff --git a/comfyui_embedded_docs/docs/GeminiImageNode/pt-BR.md b/comfyui_embedded_docs/docs/GeminiImageNode/pt-BR.md index 7eeeee369..8f1675061 100644 --- a/comfyui_embedded_docs/docs/GeminiImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/GeminiImageNode/pt-BR.md @@ -19,4 +19,4 @@ O nó GeminiImage gera respostas de texto e imagem a partir dos modelos de IA Ge | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `IMAGE` | IMAGE | A resposta de imagem gerada pelo modelo Gemini | -| `STRING` | STRING | A resposta de texto gerada pelo modelo Gemini | \ No newline at end of file +| `STRING` | STRING | A resposta de texto gerada pelo modelo Gemini | diff --git a/comfyui_embedded_docs/docs/GeminiImageNode/tr.md b/comfyui_embedded_docs/docs/GeminiImageNode/tr.md index 48af5cae1..a13f0c072 100644 --- a/comfyui_embedded_docs/docs/GeminiImageNode/tr.md +++ b/comfyui_embedded_docs/docs/GeminiImageNode/tr.md @@ -19,4 +19,4 @@ GeminiImage düğümü, Google'ın Gemini AI modellerinden metin ve görüntü y | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `IMAGE` | IMAGE | Gemini modelinden oluşturulan görüntü yanıtı | -| `STRING` | STRING | Gemini modelinden oluşturulan metin yanıtı | \ No newline at end of file +| `STRING` | STRING | Gemini modelinden oluşturulan metin yanıtı | diff --git a/comfyui_embedded_docs/docs/GeminiImageNode/zh-TW.md b/comfyui_embedded_docs/docs/GeminiImageNode/zh-TW.md index 6bc66e769..7578af30e 100644 --- a/comfyui_embedded_docs/docs/GeminiImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/GeminiImageNode/zh-TW.md @@ -19,4 +19,4 @@ GeminiImage 節點能從 Google 的 Gemini AI 模型生成文字和圖片回應 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `IMAGE` | IMAGE | 從 Gemini 模型生成的圖片回應 | -| `STRING` | STRING | 從 Gemini 模型生成的文字回應 | \ No newline at end of file +| `STRING` | STRING | 從 Gemini 模型生成的文字回應 | diff --git a/comfyui_embedded_docs/docs/GeminiInputFiles/ar.md b/comfyui_embedded_docs/docs/GeminiInputFiles/ar.md index 8d1d5bd69..a754422db 100644 --- a/comfyui_embedded_docs/docs/GeminiInputFiles/ar.md +++ b/comfyui_embedded_docs/docs/GeminiInputFiles/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|--------------|--------| -| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | بيانات الملف المُنسقة الجاهزة للاستخدام مع عقد نموذج Gemini اللغوي الكبير، والتي تحتوي على محتوى الملف المحمّل بالتنسيق المناسب لواجهة برمجة التطبيقات. | \ No newline at end of file +| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | بيانات الملف المُنسقة الجاهزة للاستخدام مع عقد نموذج Gemini اللغوي الكبير، والتي تحتوي على محتوى الملف المحمّل بالتنسيق المناسب لواجهة برمجة التطبيقات. | diff --git a/comfyui_embedded_docs/docs/GeminiInputFiles/pt-BR.md b/comfyui_embedded_docs/docs/GeminiInputFiles/pt-BR.md index 0aaccde4f..ba58484aa 100644 --- a/comfyui_embedded_docs/docs/GeminiInputFiles/pt-BR.md +++ b/comfyui_embedded_docs/docs/GeminiInputFiles/pt-BR.md @@ -15,4 +15,4 @@ Carrega e formata arquivos de entrada para uso com a API Gemini. Este nó permit | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | Dados do arquivo formatados e prontos para uso com os nós LLM do Gemini, contendo o conteúdo do arquivo carregado no formato apropriado para a API. | \ No newline at end of file +| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | Dados do arquivo formatados e prontos para uso com os nós LLM do Gemini, contendo o conteúdo do arquivo carregado no formato apropriado para a API. | diff --git a/comfyui_embedded_docs/docs/GeminiInputFiles/tr.md b/comfyui_embedded_docs/docs/GeminiInputFiles/tr.md index ad4112353..94a416e5a 100644 --- a/comfyui_embedded_docs/docs/GeminiInputFiles/tr.md +++ b/comfyui_embedded_docs/docs/GeminiInputFiles/tr.md @@ -15,4 +15,4 @@ Gemini API ile kullanım için giriş dosyalarını yükler ve biçimlendirir. B | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | Yüklenen dosya içeriğini uygun API formatında içeren, Gemini LLM düğümleriyle kullanıma hazır biçimlendirilmiş dosya verisi. | \ No newline at end of file +| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | Yüklenen dosya içeriğini uygun API formatında içeren, Gemini LLM düğümleriyle kullanıma hazır biçimlendirilmiş dosya verisi. | diff --git a/comfyui_embedded_docs/docs/GeminiInputFiles/zh-TW.md b/comfyui_embedded_docs/docs/GeminiInputFiles/zh-TW.md index 32ab96a7b..5d3eba16b 100644 --- a/comfyui_embedded_docs/docs/GeminiInputFiles/zh-TW.md +++ b/comfyui_embedded_docs/docs/GeminiInputFiles/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 參數說明 | |-------------|-----------|-------------| -| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | 格式化後的檔案資料,準備好用於 Gemini LLM 節點,其中包含已載入的檔案內容,並轉換為適當的 API 格式。 | \ No newline at end of file +| `GEMINI_INPUT_FILES` | GEMINI_INPUT_FILES | 格式化後的檔案資料,準備好用於 Gemini LLM 節點,其中包含已載入的檔案內容,並轉換為適當的 API 格式。 | diff --git a/comfyui_embedded_docs/docs/GeminiNode/ar.md b/comfyui_embedded_docs/docs/GeminiNode/ar.md index 61c743093..ff58b0895 100644 --- a/comfyui_embedded_docs/docs/GeminiNode/ar.md +++ b/comfyui_embedded_docs/docs/GeminiNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `STRING` | STRING | الاستجابة النصية التي تم توليدها بواسطة نموذج Gemini. | \ No newline at end of file +| `STRING` | STRING | الاستجابة النصية التي تم توليدها بواسطة نموذج Gemini. | diff --git a/comfyui_embedded_docs/docs/GeminiNode/pt-BR.md b/comfyui_embedded_docs/docs/GeminiNode/pt-BR.md index 0a8074739..f882359ff 100644 --- a/comfyui_embedded_docs/docs/GeminiNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/GeminiNode/pt-BR.md @@ -18,4 +18,4 @@ Este nó permite que os usuários interajam com os modelos de IA Gemini do Googl | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `STRING` | STRING | A resposta em texto gerada pelo modelo Gemini. | \ No newline at end of file +| `STRING` | STRING | A resposta em texto gerada pelo modelo Gemini. | diff --git a/comfyui_embedded_docs/docs/GeminiNode/tr.md b/comfyui_embedded_docs/docs/GeminiNode/tr.md index df1cf3542..97524c886 100644 --- a/comfyui_embedded_docs/docs/GeminiNode/tr.md +++ b/comfyui_embedded_docs/docs/GeminiNode/tr.md @@ -18,4 +18,4 @@ Bu düğüm, kullanıcıların Google'ın Gemini AI modelleriyle etkileşime gir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `STRING` | STRING | Gemini modeli tarafından oluşturulan metin yanıtı. | \ No newline at end of file +| `STRING` | STRING | Gemini modeli tarafından oluşturulan metin yanıtı. | diff --git a/comfyui_embedded_docs/docs/GeminiNode/zh-TW.md b/comfyui_embedded_docs/docs/GeminiNode/zh-TW.md index 3a7342a6c..dd675d862 100644 --- a/comfyui_embedded_docs/docs/GeminiNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/GeminiNode/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `STRING` | STRING | 由 Gemini 模型生成的文字回應。 | \ No newline at end of file +| `STRING` | STRING | 由 Gemini 模型生成的文字回應。 | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/ar.md b/comfyui_embedded_docs/docs/GenerateTracks/ar.md index 941c22fd6..1576130c3 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/ar.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `TRACKS` | TRACKS | كائن مسارات يحتوي على إحداثيات المسار المُنشأة ومعلومات الرؤية لجميع المسارات عبر جميع الإطارات. | -| `track_length` | INT | عدد الإطارات التي تم إنشاء مسارات لها، مطابق لمدخل `num_frames`. | \ No newline at end of file +| `track_length` | INT | عدد الإطارات التي تم إنشاء مسارات لها، مطابق لمدخل `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/en.md b/comfyui_embedded_docs/docs/GenerateTracks/en.md index 7d8021b32..a3f3b06d6 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/en.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/en.md @@ -28,4 +28,4 @@ The `GenerateTracks` node creates multiple parallel motion paths for video gener | Output Name | Data Type | Description | |-------------|-----------|-------------| | `TRACKS` | TRACKS | A tracks object containing the generated path coordinates and visibility information for all tracks across all frames. | -| `track_length` | INT | The number of frames for which tracks were generated, matching the input `num_frames`. | \ No newline at end of file +| `track_length` | INT | The number of frames for which tracks were generated, matching the input `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/es.md b/comfyui_embedded_docs/docs/GenerateTracks/es.md index c40a16f56..ee261cd84 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/es.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/es.md @@ -28,4 +28,4 @@ El nodo `GenerateTracks` crea múltiples trayectorias de movimiento paralelas pa | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `TRACKS` | TRACKS | Un objeto de pistas que contiene las coordenadas de ruta generadas y la información de visibilidad para todas las pistas en todos los fotogramas. | -| `track_length` | INT | El número de fotogramas para los cuales se generaron pistas, coincidiendo con la entrada `num_frames`. | \ No newline at end of file +| `track_length` | INT | El número de fotogramas para los cuales se generaron pistas, coincidiendo con la entrada `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/fr.md b/comfyui_embedded_docs/docs/GenerateTracks/fr.md index 2e7bcd524..fc70b1f05 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/fr.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/fr.md @@ -30,4 +30,4 @@ Le nœud `GenerateTracks` crée plusieurs trajectoires de mouvement parallèles | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `TRACKS` | TRACKS | Un objet tracks contenant les coordonnées du chemin généré et les informations de visibilité pour toutes les pistes sur toutes les images. | -| `track_length` | INT | Le nombre d'images pour lesquelles les pistes ont été générées, correspondant à l'entrée `num_frames`. | \ No newline at end of file +| `track_length` | INT | Le nombre d'images pour lesquelles les pistes ont été générées, correspondant à l'entrée `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/ja.md b/comfyui_embedded_docs/docs/GenerateTracks/ja.md index bf122bb70..67523ce0b 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/ja.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/ja.md @@ -28,4 +28,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `TRACKS` | TRACKS | 生成されたパス座標と、全フレームにおける全トラックの可視性情報を含むトラックオブジェクト。 | -| `track_length` | INT | トラックが生成されたフレーム数。入力`num_frames`と一致します。 | \ No newline at end of file +| `track_length` | INT | トラックが生成されたフレーム数。入力`num_frames`と一致します。 | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/ko.md b/comfyui_embedded_docs/docs/GenerateTracks/ko.md index 36afbe3a1..903b4e0ff 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/ko.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/ko.md @@ -28,4 +28,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `TRACKS` | TRACKS | 생성된 경로 좌표와 모든 프레임에 걸친 모든 트랙의 가시성 정보를 포함하는 트랙 객체입니다. | -| `track_length` | INT | 트랙이 생성된 프레임 수로, 입력 `num_frames`와 일치합니다. | \ No newline at end of file +| `track_length` | INT | 트랙이 생성된 프레임 수로, 입력 `num_frames`와 일치합니다. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/pt-BR.md b/comfyui_embedded_docs/docs/GenerateTracks/pt-BR.md index 1a7b872f7..b23244960 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/pt-BR.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/pt-BR.md @@ -28,4 +28,4 @@ O nó `GenerateTracks` cria múltiplos caminhos de movimento paralelos para gera | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `TRACKS` | TRACKS | Um objeto de trilhas contendo as coordenadas do caminho gerado e informações de visibilidade para todas as trilhas em todos os quadros. | -| `track_length` | INT | O número de quadros para os quais as trilhas foram geradas, correspondendo à entrada `num_frames`. | \ No newline at end of file +| `track_length` | INT | O número de quadros para os quais as trilhas foram geradas, correspondendo à entrada `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/ru.md b/comfyui_embedded_docs/docs/GenerateTracks/ru.md index c36abe97a..0dbd46be0 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/ru.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/ru.md @@ -28,4 +28,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `TRACKS` | TRACKS | Объект траекторий, содержащий сгенерированные координаты пути и информацию о видимости для всех траекторий во всех кадрах. | -| `track_length` | INT | Количество кадров, для которых были сгенерированы траектории, соответствует входному параметру `num_frames`. | \ No newline at end of file +| `track_length` | INT | Количество кадров, для которых были сгенерированы траектории, соответствует входному параметру `num_frames`. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/tr.md b/comfyui_embedded_docs/docs/GenerateTracks/tr.md index 8b8c67aa0..dc8e39b92 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/tr.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/tr.md @@ -28,4 +28,4 @@ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `TRACKS` | TRACKS | Tüm karelerdeki tüm yollar için oluşturulan yol koordinatlarını ve görünürlük bilgilerini içeren bir yollar nesnesi. | -| `track_length` | INT | Yolların oluşturulduğu kare sayısı, giriş `num_frames` değeriyle eşleşir. | \ No newline at end of file +| `track_length` | INT | Yolların oluşturulduğu kare sayısı, giriş `num_frames` değeriyle eşleşir. | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/zh-TW.md b/comfyui_embedded_docs/docs/GenerateTracks/zh-TW.md index f0038c988..2dc6df2fe 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/zh-TW.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/zh-TW.md @@ -28,4 +28,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `TRACKS` | TRACKS | 一個軌跡物件,包含所有影格中所有軌跡的生成路徑座標和可見性資訊。 | -| `track_length` | INT | 生成軌跡的影格數,與輸入的 `num_frames` 相符。 | \ No newline at end of file +| `track_length` | INT | 生成軌跡的影格數,與輸入的 `num_frames` 相符。 | diff --git a/comfyui_embedded_docs/docs/GenerateTracks/zh.md b/comfyui_embedded_docs/docs/GenerateTracks/zh.md index a30c1a096..02b30f828 100644 --- a/comfyui_embedded_docs/docs/GenerateTracks/zh.md +++ b/comfyui_embedded_docs/docs/GenerateTracks/zh.md @@ -28,4 +28,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `TRACKS` | TRACKS | 一个轨迹对象,包含所有帧中所有轨迹的生成路径坐标和可见性信息。 | -| `track_length` | INT | 生成轨迹的帧数,与输入的 `num_frames` 匹配。 | \ No newline at end of file +| `track_length` | INT | 生成轨迹的帧数,与输入的 `num_frames` 匹配。 | diff --git a/comfyui_embedded_docs/docs/GetImageSize/ar.md b/comfyui_embedded_docs/docs/GetImageSize/ar.md index d78d3a740..797b67712 100644 --- a/comfyui_embedded_docs/docs/GetImageSize/ar.md +++ b/comfyui_embedded_docs/docs/GetImageSize/ar.md @@ -17,4 +17,4 @@ |-------------|---------------|--------| | `width` | INT | عرض صورة الإدخال بالبكسل | | `height` | INT | ارتفاع صورة الإدخال بالبكسل | -| `batch_size`| INT | عدد الصور في الدُفعة | \ No newline at end of file +| `batch_size`| INT | عدد الصور في الدُفعة | diff --git a/comfyui_embedded_docs/docs/GetImageSize/pt-BR.md b/comfyui_embedded_docs/docs/GetImageSize/pt-BR.md index 87ecdf0e1..e5d4d52da 100644 --- a/comfyui_embedded_docs/docs/GetImageSize/pt-BR.md +++ b/comfyui_embedded_docs/docs/GetImageSize/pt-BR.md @@ -15,4 +15,4 @@ O nó GetImageSize extrai as dimensões e informações de lote de uma imagem de |-------------|-----------|-------------| | `width` | INT | A largura da imagem de entrada em pixels | | `height` | INT | A altura da imagem de entrada em pixels | -| `batch_size` | INT | O número de imagens no lote | \ No newline at end of file +| `batch_size` | INT | O número de imagens no lote | diff --git a/comfyui_embedded_docs/docs/GetImageSize/tr.md b/comfyui_embedded_docs/docs/GetImageSize/tr.md index e70a5a5ac..0c9b111e5 100644 --- a/comfyui_embedded_docs/docs/GetImageSize/tr.md +++ b/comfyui_embedded_docs/docs/GetImageSize/tr.md @@ -15,4 +15,4 @@ GetImageSize düğümü, bir giriş görüntüsünden boyut ve toplu işlem bilg |-------------|-----------|-------------| | `width` | INT | Giriş görüntüsünün piksel cinsinden genişliği | | `height` | INT | Giriş görüntüsünün piksel cinsinden yüksekliği | -| `batch_size` | INT | Toplu işlemdeki görüntü sayısı | \ No newline at end of file +| `batch_size` | INT | Toplu işlemdeki görüntü sayısı | diff --git a/comfyui_embedded_docs/docs/GetImageSize/zh-TW.md b/comfyui_embedded_docs/docs/GetImageSize/zh-TW.md index 0e233b182..1a9b1da8e 100644 --- a/comfyui_embedded_docs/docs/GetImageSize/zh-TW.md +++ b/comfyui_embedded_docs/docs/GetImageSize/zh-TW.md @@ -17,4 +17,4 @@ GetImageSize 節點從輸入圖像中提取尺寸和批次資訊。它會返回 |-------------|-----------|-------------| | `width` | INT | 輸入圖像的寬度(以像素為單位) | | `height` | INT | 輸入圖像的高度(以像素為單位) | -| `batch_size` | INT | 批次中的圖像數量 | \ No newline at end of file +| `batch_size` | INT | 批次中的圖像數量 | diff --git a/comfyui_embedded_docs/docs/GetVideoComponents/ar.md b/comfyui_embedded_docs/docs/GetVideoComponents/ar.md index ce101c9d9..26a29de71 100644 --- a/comfyui_embedded_docs/docs/GetVideoComponents/ar.md +++ b/comfyui_embedded_docs/docs/GetVideoComponents/ar.md @@ -14,4 +14,4 @@ |-------------|-----------|-------------| | `الصوت` | IMAGE | الإطارات الفردية المستخرجة من الفيديو كصور منفصلة. | | `معدل_الإطارات` | AUDIO | مسار الصوت المستخرج من الفيديو. | -| `fps` | FLOAT | معدل إطارات الفيديو مقاسًا بعدد الإطارات في الثانية. | \ No newline at end of file +| `fps` | FLOAT | معدل إطارات الفيديو مقاسًا بعدد الإطارات في الثانية. | diff --git a/comfyui_embedded_docs/docs/GetVideoComponents/pt-BR.md b/comfyui_embedded_docs/docs/GetVideoComponents/pt-BR.md index 0fceb4e61..364cf951e 100644 --- a/comfyui_embedded_docs/docs/GetVideoComponents/pt-BR.md +++ b/comfyui_embedded_docs/docs/GetVideoComponents/pt-BR.md @@ -14,4 +14,4 @@ O nó Get Video Components extrai todos os elementos principais de um arquivo de |-------------|-----------|-------------| | `images` | IMAGE | Os quadros individuais extraídos do vídeo como imagens separadas. | | `audio` | AUDIO | A faixa de áudio extraída do vídeo. | -| `fps` | FLOAT | A taxa de quadros do vídeo em quadros por segundo. | \ No newline at end of file +| `fps` | FLOAT | A taxa de quadros do vídeo em quadros por segundo. | diff --git a/comfyui_embedded_docs/docs/GetVideoComponents/tr.md b/comfyui_embedded_docs/docs/GetVideoComponents/tr.md index 4b0ea9de3..0033a85f3 100644 --- a/comfyui_embedded_docs/docs/GetVideoComponents/tr.md +++ b/comfyui_embedded_docs/docs/GetVideoComponents/tr.md @@ -16,4 +16,4 @@ Get Video Components düğümü, bir video dosyasından tüm ana bileşenleri ç |-------------|-----------|-------------| | `images` | IMAGE | Videodan çıkarılan, ayrı görüntüler halindeki tek tek kareler. | | `audio` | AUDIO | Videodan çıkarılan ses parçası. | -| `fps` | FLOAT | Videonun saniyedeki kare sayısı (FPS) cinsinden kare hızı. | \ No newline at end of file +| `fps` | FLOAT | Videonun saniyedeki kare sayısı (FPS) cinsinden kare hızı. | diff --git a/comfyui_embedded_docs/docs/GetVideoComponents/zh-TW.md b/comfyui_embedded_docs/docs/GetVideoComponents/zh-TW.md index 545ebdadf..326cbc47f 100644 --- a/comfyui_embedded_docs/docs/GetVideoComponents/zh-TW.md +++ b/comfyui_embedded_docs/docs/GetVideoComponents/zh-TW.md @@ -14,4 +14,4 @@ Get Video Components 節點可從影片檔案中提取所有主要元素。它 |-------------|-----------|-------------| | `音訊` | IMAGE | 從影片中提取的個別影格,以獨立影像形式呈現。 | | `每秒影格數` | AUDIO | 從影片中提取的音訊軌道。 | -| `fps` | FLOAT | 影片的影格率,以每秒影格數為單位。 | \ No newline at end of file +| `fps` | FLOAT | 影片的影格率,以每秒影格數為單位。 | diff --git a/comfyui_embedded_docs/docs/GligenLoader/ar.md b/comfyui_embedded_docs/docs/GligenLoader/ar.md index 1cd254cfe..f418aff00 100644 --- a/comfyui_embedded_docs/docs/GligenLoader/ar.md +++ b/comfyui_embedded_docs/docs/GligenLoader/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |----------|-------------|--------------------------------------------------------------------------| -| `gligen` | `GLIGEN` | نموذج GLIGEN المحمّل، الجاهز للاستخدام في المهام التوليدية، ويمثل النموذج المُهيأ بالكامل والمحمّل من المسار المحدد. | \ No newline at end of file +| `gligen` | `GLIGEN` | نموذج GLIGEN المحمّل، الجاهز للاستخدام في المهام التوليدية، ويمثل النموذج المُهيأ بالكامل والمحمّل من المسار المحدد. | diff --git a/comfyui_embedded_docs/docs/GligenLoader/pt-BR.md b/comfyui_embedded_docs/docs/GligenLoader/pt-BR.md index b9753ac0d..f6b792945 100644 --- a/comfyui_embedded_docs/docs/GligenLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/GligenLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó `GLIGENLoader` é projetado para carregar modelos GLIGEN, que são modelos | Campo | Tipo de Dados | Descrição | |-------|---------------|-----------| -| `gligen` | `GLIGEN` | O modelo GLIGEN carregado, pronto para uso em tarefas generativas, representando o modelo totalmente inicializado carregado a partir do caminho especificado. | \ No newline at end of file +| `gligen` | `GLIGEN` | O modelo GLIGEN carregado, pronto para uso em tarefas generativas, representando o modelo totalmente inicializado carregado a partir do caminho especificado. | diff --git a/comfyui_embedded_docs/docs/GligenLoader/tr.md b/comfyui_embedded_docs/docs/GligenLoader/tr.md index 474a74875..c7681020b 100644 --- a/comfyui_embedded_docs/docs/GligenLoader/tr.md +++ b/comfyui_embedded_docs/docs/GligenLoader/tr.md @@ -14,4 +14,4 @@ Bu düğüm, `ComfyUI/models/gligen` klasöründe bulunan modelleri tespit edece | Alan | Veri Türü | Açıklama | |----------|-----------|-----------------------------------------------------------------------| -| `gligen` | `GLIGEN` | Yüklenen GLIGEN modeli, üretim görevlerinde kullanılmaya hazır, belirtilen yoldan yüklenen tamamen başlatılmış modeli temsil eder. | \ No newline at end of file +| `gligen` | `GLIGEN` | Yüklenen GLIGEN modeli, üretim görevlerinde kullanılmaya hazır, belirtilen yoldan yüklenen tamamen başlatılmış modeli temsil eder. | diff --git a/comfyui_embedded_docs/docs/GligenLoader/zh-TW.md b/comfyui_embedded_docs/docs/GligenLoader/zh-TW.md index 5373b1d9c..48938d3ea 100644 --- a/comfyui_embedded_docs/docs/GligenLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/GligenLoader/zh-TW.md @@ -16,4 +16,4 @@ | 欄位 | 資料類型 | 描述 | |----------|-------------|--------------------------------------------------------------------------| -| `gligen` | `GLIGEN` | 已載入的 GLIGEN 模型,準備好用於生成任務,代表從指定路徑載入的完全初始化模型。 | \ No newline at end of file +| `gligen` | `GLIGEN` | 已載入的 GLIGEN 模型,準備好用於生成任務,代表從指定路徑載入的完全初始化模型。 | diff --git a/comfyui_embedded_docs/docs/GligenTextBoxApply/ar.md b/comfyui_embedded_docs/docs/GligenTextBoxApply/ar.md index b7ad112da..bc5bbadd4 100644 --- a/comfyui_embedded_docs/docs/GligenTextBoxApply/ar.md +++ b/comfyui_embedded_docs/docs/GligenTextBoxApply/ar.md @@ -19,4 +19,4 @@ | المعامل | نوع Comfy | الوصف | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | ناتج التكييف المُثرى، والذي يتضمن بيانات التكييف الأصلية مع معاملات مربع النص والمعلومات النصية المشفرة المضافة حديثًا. يُستخدم لتوجيه النموذج التوليدي لإنتاج مخرجات تراعي السياق. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | ناتج التكييف المُثرى، والذي يتضمن بيانات التكييف الأصلية مع معاملات مربع النص والمعلومات النصية المشفرة المضافة حديثًا. يُستخدم لتوجيه النموذج التوليدي لإنتاج مخرجات تراعي السياق. | diff --git a/comfyui_embedded_docs/docs/GligenTextBoxApply/pt-BR.md b/comfyui_embedded_docs/docs/GligenTextBoxApply/pt-BR.md index 451508095..2a91601dc 100644 --- a/comfyui_embedded_docs/docs/GligenTextBoxApply/pt-BR.md +++ b/comfyui_embedded_docs/docs/GligenTextBoxApply/pt-BR.md @@ -19,4 +19,4 @@ O nó `GLIGENTextBoxApply` é projetado para integrar condicionamento baseado em | Parâmetro | Tipo Comfy | Descrição | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | A saída de condicionamento enriquecida, que inclui os dados de condicionamento originais juntamente com os parâmetros da caixa de texto e as informações de texto codificadas recém-anexadas. É usada para orientar o modelo generativo na produção de saídas conscientes do contexto. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | A saída de condicionamento enriquecida, que inclui os dados de condicionamento originais juntamente com os parâmetros da caixa de texto e as informações de texto codificadas recém-anexadas. É usada para orientar o modelo generativo na produção de saídas conscientes do contexto. | diff --git a/comfyui_embedded_docs/docs/GligenTextBoxApply/tr.md b/comfyui_embedded_docs/docs/GligenTextBoxApply/tr.md index c111d99bf..618263e0d 100644 --- a/comfyui_embedded_docs/docs/GligenTextBoxApply/tr.md +++ b/comfyui_embedded_docs/docs/GligenTextBoxApply/tr.md @@ -19,4 +19,4 @@ | Parametre | Comfy dtype | Açıklama | |---------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | Orijinal koşullandırma verilerinin yanı sıra yeni eklenen metin kutusu parametrelerini ve kodlanmış metin bilgisini içeren zenginleştirilmiş koşullandırma çıktısıdır. Üretken modelin bağlamdan haberdar çıktılar üretmesine rehberlik etmek için kullanılır. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | Orijinal koşullandırma verilerinin yanı sıra yeni eklenen metin kutusu parametrelerini ve kodlanmış metin bilgisini içeren zenginleştirilmiş koşullandırma çıktısıdır. Üretken modelin bağlamdan haberdar çıktılar üretmesine rehberlik etmek için kullanılır. | diff --git a/comfyui_embedded_docs/docs/GligenTextBoxApply/zh-TW.md b/comfyui_embedded_docs/docs/GligenTextBoxApply/zh-TW.md index df0d8f0ae..c14b8a4d0 100644 --- a/comfyui_embedded_docs/docs/GligenTextBoxApply/zh-TW.md +++ b/comfyui_embedded_docs/docs/GligenTextBoxApply/zh-TW.md @@ -19,4 +19,4 @@ | 參數名稱 | Comfy 資料類型 | 描述 | |----------------------|--------------------|-------------| -| `conditioning` | `CONDITIONING` | 經過豐富的條件化輸出,包含原始條件化數據以及新附加的文本框參數和編碼文本信息。它用於引導生成模型產生上下文感知的輸出。 | \ No newline at end of file +| `conditioning` | `CONDITIONING` | 經過豐富的條件化輸出,包含原始條件化數據以及新附加的文本框參數和編碼文本信息。它用於引導生成模型產生上下文感知的輸出。 | diff --git a/comfyui_embedded_docs/docs/GrowMask/ar.md b/comfyui_embedded_docs/docs/GrowMask/ar.md index f23e028ed..e566bd341 100644 --- a/comfyui_embedded_docs/docs/GrowMask/ar.md +++ b/comfyui_embedded_docs/docs/GrowMask/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `القناع` | MASK | القناع المعدل بعد تطبيق التوسيع/التقلص المحدد وتأثير الزوايا المتدرجة الاختياري. | \ No newline at end of file +| `القناع` | MASK | القناع المعدل بعد تطبيق التوسيع/التقلص المحدد وتأثير الزوايا المتدرجة الاختياري. | diff --git a/comfyui_embedded_docs/docs/GrowMask/pt-BR.md b/comfyui_embedded_docs/docs/GrowMask/pt-BR.md index 68797463a..3bff4ab76 100644 --- a/comfyui_embedded_docs/docs/GrowMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/GrowMask/pt-BR.md @@ -14,4 +14,4 @@ O nó `GrowMask` é projetado para modificar o tamanho de uma máscara fornecida | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `mask` | MASK | A máscara modificada após a aplicação da expansão/contração especificada e do efeito opcional de cantos afilados. | \ No newline at end of file +| `mask` | MASK | A máscara modificada após a aplicação da expansão/contração especificada e do efeito opcional de cantos afilados. | diff --git a/comfyui_embedded_docs/docs/GrowMask/tr.md b/comfyui_embedded_docs/docs/GrowMask/tr.md index e2082cc5c..5036e91c8 100644 --- a/comfyui_embedded_docs/docs/GrowMask/tr.md +++ b/comfyui_embedded_docs/docs/GrowMask/tr.md @@ -14,4 +14,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `maske` | MASK | Belirtilen genişletme/daraltma ve isteğe bağlı kademeli köşe efektinin uygulanmasından sonra değiştirilmiş maske. | \ No newline at end of file +| `maske` | MASK | Belirtilen genişletme/daraltma ve isteğe bağlı kademeli köşe efektinin uygulanmasından sonra değiştirilmiş maske. | diff --git a/comfyui_embedded_docs/docs/GrowMask/zh-TW.md b/comfyui_embedded_docs/docs/GrowMask/zh-TW.md index 8e9b16869..6b9347b40 100644 --- a/comfyui_embedded_docs/docs/GrowMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/GrowMask/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `遮罩` | MASK | 套用指定擴展/收縮及可選錐形角落效果後的修改遮罩。 | \ No newline at end of file +| `遮罩` | MASK | 套用指定擴展/收縮及可選錐形角落效果後的修改遮罩。 | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/ar.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/ar.md index a73b103ba..386606b82 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/ar.md @@ -15,4 +15,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | بيانات التكييف الإيجابية التي تحتوي على تضمينات رؤية CLIP | | `negative` | CONDITIONING | بيانات التكييف السلبية التي تحتوي على تضمينات بقيمة صفرية تطابق شكل التضمينات الإيجابية | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/pt-BR.md index 4509fbaea..e334bba74 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/pt-BR.md @@ -13,4 +13,4 @@ O nó Hunyuan3Dv2Conditioning processa a saída de visão do CLIP para gerar dad | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | Dados de condicionamento positivo contendo os embeddings de visão do CLIP | -| `negative` | CONDITIONING | Dados de condicionamento negativo contendo embeddings de valor zero que correspondem à forma dos embeddings positivos | \ No newline at end of file +| `negative` | CONDITIONING | Dados de condicionamento negativo contendo embeddings de valor zero que correspondem à forma dos embeddings positivos | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/tr.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/tr.md index 12f10ae83..804aaa94b 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/tr.md @@ -13,4 +13,4 @@ Hunyuan3Dv2Conditioning düğümü, video modelleri için koşullandırma verisi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | CLIP görüntü yerleştirmelerini içeren pozitif koşullandırma verisi | -| `negative` | CONDITIONING | Pozitif yerleştirmelerin şekliyle eşleşen sıfır değerli yerleştirmeler içeren negatif koşullandırma verisi | \ No newline at end of file +| `negative` | CONDITIONING | Pozitif yerleştirmelerin şekliyle eşleşen sıfır değerli yerleştirmeler içeren negatif koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/zh-TW.md index 1f3ffbece..fc3936933 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2Conditioning/zh-TW.md @@ -15,4 +15,4 @@ Hunyuan3Dv2Conditioning 節點處理 CLIP 視覺輸出,為影片模型生成 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `positive` | CONDITIONING | 包含 CLIP 視覺嵌入的正向條件化資料 | -| `negative` | CONDITIONING | 包含與正向嵌入形狀匹配的零值嵌入的負向條件化資料 | \ No newline at end of file +| `negative` | CONDITIONING | 包含與正向嵌入形狀匹配的零值嵌入的負向條件化資料 | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/ar.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/ar.md index 0b9c3c968..c25023151 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/ar.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/ar.md @@ -20,4 +20,4 @@ |--------------|--------------|--------| | `سلبي` | CONDITIONING | التكييف الإيجابي الذي يحتوي على التضمينات متعددة المناظر المدمجة مع الترميز الموضعي | | `negative` | CONDITIONING | التكييف السلبي بقيم صفرية للتعلم التبايني | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/pt-BR.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/pt-BR.md index e43441c0e..27abc54c5 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/pt-BR.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/pt-BR.md @@ -18,4 +18,4 @@ O nó Hunyuan3Dv2ConditioningMultiView processa embeddings de visão CLIP de mú | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo contendo os embeddings de múltiplas vistas combinados com codificação posicional | -| `negative` | CONDITIONING | Condicionamento negativo com valores zero para aprendizado contrastivo | \ No newline at end of file +| `negative` | CONDITIONING | Condicionamento negativo com valores zero para aprendizado contrastivo | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/tr.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/tr.md index ede703326..b887203fc 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/tr.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/tr.md @@ -18,4 +18,4 @@ Hunyuan3Dv2ConditioningMultiView düğümü, 3D video üretimi için çok görü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | Konumsal kodlama ile birleştirilmiş çok görüntülü yerleştirmeleri içeren pozitif koşullandırma | -| `negative` | CONDITIONING | Karşılaştırmalı öğrenme için sıfır değerlerle negatif koşullandırma | \ No newline at end of file +| `negative` | CONDITIONING | Karşılaştırmalı öğrenme için sıfır değerlerle negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/zh-TW.md b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/zh-TW.md index ff4b1d444..272e47060 100644 --- a/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/zh-TW.md +++ b/comfyui_embedded_docs/docs/Hunyuan3Dv2ConditioningMultiView/zh-TW.md @@ -20,4 +20,4 @@ Hunyuan3Dv2ConditioningMultiView 節點處理多視角 CLIP 視覺嵌入以用 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `positive` | CONDITIONING | 包含帶有位置編碼的組合多視角嵌入的正面條件資料 | -| `negative` | CONDITIONING | 帶有零值的負面條件資料,用於對比學習 | \ No newline at end of file +| `negative` | CONDITIONING | 帶有零值的負面條件資料,用於對比學習 | diff --git a/comfyui_embedded_docs/docs/HunyuanImageToVideo/ar.md b/comfyui_embedded_docs/docs/HunyuanImageToVideo/ar.md index 0390da9d0..d5ec43799 100644 --- a/comfyui_embedded_docs/docs/HunyuanImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/HunyuanImageToVideo/ar.md @@ -28,4 +28,4 @@ |------------|--------------|--------| | `كامِن` | CONDITIONING | التوجيه الإيجابي المعدل مع تطبيق التوجيه الصوري عند توفير start_image | | `latent` | LATENT | التمثيل الكامن للفيديو جاهز للمعالجة الإضافية بواسطة نماذج توليد الفيديو | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/HunyuanImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/HunyuanImageToVideo/pt-BR.md index 844f9cfe1..592c67a56 100644 --- a/comfyui_embedded_docs/docs/HunyuanImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/HunyuanImageToVideo/pt-BR.md @@ -26,4 +26,4 @@ O nó HunyuanImageToVideo converte imagens em representações latentes de víde | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com a orientação da imagem aplicada quando start_image é fornecida | -| `latent` | LATENT | Representação latente do vídeo pronta para processamento posterior por modelos de geração de vídeo | \ No newline at end of file +| `latent` | LATENT | Representação latente do vídeo pronta para processamento posterior por modelos de geração de vídeo | diff --git a/comfyui_embedded_docs/docs/HunyuanImageToVideo/tr.md b/comfyui_embedded_docs/docs/HunyuanImageToVideo/tr.md index ff5e98756..be8d45123 100644 --- a/comfyui_embedded_docs/docs/HunyuanImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/HunyuanImageToVideo/tr.md @@ -26,4 +26,4 @@ HunyuanImageToVideo düğümü, Hunyuan video modelini kullanarak görüntüleri | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `gizli` | CONDITIONING | start_image sağlandığında görüntü rehberliği uygulanmış değiştirilmiş pozitif koşullandırma | -| `latent` | LATENT | Video oluşturma modelleri tarafından daha fazla işlenmeye hazır video gizli temsili | \ No newline at end of file +| `latent` | LATENT | Video oluşturma modelleri tarafından daha fazla işlenmeye hazır video gizli temsili | diff --git a/comfyui_embedded_docs/docs/HunyuanImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/HunyuanImageToVideo/zh-TW.md index 20eb0b2f1..648489597 100644 --- a/comfyui_embedded_docs/docs/HunyuanImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/HunyuanImageToVideo/zh-TW.md @@ -26,4 +26,4 @@ HunyuanImageToVideo 節點使用 Hunyuan 影片模型將圖像轉換為影片潛 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `潛在空間` | CONDITIONING | 當提供起始圖像時,套用圖像引導後的修改正向條件 | -| `latent` | LATENT | 準備供影片生成模型進一步處理的影片潛在表示 | \ No newline at end of file +| `latent` | LATENT | 準備供影片生成模型進一步處理的影片潛在表示 | diff --git a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/ar.md b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/ar.md index 542f44758..e17311cec 100644 --- a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/ar.md +++ b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/ar.md @@ -17,4 +17,4 @@ |-------------|---------------|-------------| | `positive` | CONDITIONING | تكييف الإشارات الإيجابية المعالج مع تطبيق زيادة الضوضاء ودمج صورة كامنة | | `negative` | CONDITIONING | تكييف الإشارات السلبية المعالج مع تطبيق زيادة الضوضاء ودمج صورة كامنة | -| `latent` | LATENT | مخرج كامن جديد بأبعاد [batch_size, 32, height, width, channels] | \ No newline at end of file +| `latent` | LATENT | مخرج كامن جديد بأبعاد [batch_size, 32, height, width, channels] | diff --git a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/pt-BR.md b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/pt-BR.md index 3f44ee827..d80192a39 100644 --- a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/pt-BR.md @@ -17,4 +17,4 @@ O nó HunyuanRefinerLatent processa condicionamentos e entradas latentes para op |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo processado, com aumento de ruído aplicado e concatenação da imagem latente | | `negative` | CONDITIONING | O condicionamento negativo processado, com aumento de ruído aplicado e concatenação da imagem latente | -| `latent` | LATENT | Uma nova saída latente com dimensões [batch_size, 32, altura, largura, canais] | \ No newline at end of file +| `latent` | LATENT | Uma nova saída latente com dimensões [batch_size, 32, altura, largura, canais] | diff --git a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/tr.md b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/tr.md index ee5eff58b..4b7b905b8 100644 --- a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/tr.md +++ b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/tr.md @@ -17,4 +17,4 @@ HunyuanRefinerLatent düğümü, iyileştirme işlemleri için koşullandırma v |-------------|-----------|-------------| | `positive` | CONDITIONING | Uygulanan gürültü artırımı ve gizli görüntü birleştirmesi ile işlenmiş pozitif koşullandırma | | `negative` | CONDITIONING | Uygulanan gürültü artırımı ve gizli görüntü birleştirmesi ile işlenmiş negatif koşullandırma | -| `latent` | LATENT | [batch_size, 32, height, width, channels] boyutlarında yeni bir gizli çıktı | \ No newline at end of file +| `latent` | LATENT | [batch_size, 32, height, width, channels] boyutlarında yeni bir gizli çıktı | diff --git a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/zh-TW.md b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/zh-TW.md index 463f2e1bc..82969996b 100644 --- a/comfyui_embedded_docs/docs/HunyuanRefinerLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/HunyuanRefinerLatent/zh-TW.md @@ -17,4 +17,4 @@ HunyuanRefinerLatent 節點處理用於精細化操作的條件調控和潛在 |-------------|-----------|-------------| | `positive` | CONDITIONING | 經過處理的正向條件調控,包含應用的噪聲增強和潛在圖像串接 | | `negative` | CONDITIONING | 經過處理的負向條件調控,包含應用的噪聲增強和潛在圖像串接 | -| `latent` | LATENT | 具有 [batch_size, 32, height, width, channels] 維度的新潛在輸出 | \ No newline at end of file +| `latent` | LATENT | 具有 [batch_size, 32, height, width, channels] 維度的新潛在輸出 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ar.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ar.md index e3dfc8762..6a2e564db 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ar.md @@ -24,4 +24,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | تكييف `positive` المعدل، والذي قد يتضمن الآن صورة البداية المشفرة أو ناتج رؤية CLIP. | | `negative` | CONDITIONING | تكييف `negative` المعدل، والذي قد يتضمن الآن صورة البداية المشفرة أو ناتج رؤية CLIP. | -| `latent` | LATENT | موتر كامن فارغ بأبعاد مُهيأة لحجم الدفعة المحدد، وطول الفيديو، والعرض، والارتفاع. | \ No newline at end of file +| `latent` | LATENT | موتر كامن فارغ بأبعاد مُهيأة لحجم الدفعة المحدد، وطول الفيديو، والعرض، والارتفاع. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/en.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/en.md index 289998f31..d57e869e1 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/en.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/en.md @@ -24,4 +24,4 @@ The HunyuanVideo15ImageToVideo node prepares conditioning and latent space data |-------------|-----------|-------------| | `positive` | CONDITIONING | The modified positive conditioning, which may now include the encoded starting image or CLIP vision output. | | `negative` | CONDITIONING | The modified negative conditioning, which may now include the encoded starting image or CLIP vision output. | -| `latent` | LATENT | An empty latent tensor with dimensions configured for the specified batch size, video length, width, and height. | \ No newline at end of file +| `latent` | LATENT | An empty latent tensor with dimensions configured for the specified batch size, video length, width, and height. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/es.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/es.md index e016f2115..e1fae2cc5 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/es.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/es.md @@ -24,4 +24,4 @@ El nodo HunyuanVideo15ImageToVideo prepara los datos de condicionamiento y espac |-------------|-----------|-------------| | `positive` | CONDITIONING | El condicionamiento positivo modificado, que ahora puede incluir la imagen de inicio codificada o la salida de visión CLIP. | | `negative` | CONDITIONING | El condicionamiento negativo modificado, que ahora puede incluir la imagen de inicio codificada o la salida de visión CLIP. | -| `latent` | LATENT | Un tensor latente vacío con dimensiones configuradas para el tamaño de lote, duración del video, ancho y alto especificados. | \ No newline at end of file +| `latent` | LATENT | Un tensor latente vacío con dimensiones configuradas para el tamaño de lote, duración del video, ancho y alto especificados. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/fr.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/fr.md index 5eb7a3a54..4d04a0153 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/fr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/fr.md @@ -24,4 +24,4 @@ Le nœud HunyuanVideo15ImageToVideo prépare les données de conditionnement et |-------------|-----------|-------------| | `positive` | CONDITIONING | Le conditionnement positif modifié, qui peut maintenant inclure l'image de départ encodée ou la sortie de vision CLIP. | | `negative` | CONDITIONING | Le conditionnement négatif modifié, qui peut maintenant inclure l'image de départ encodée ou la sortie de vision CLIP. | -| `latent` | LATENT | Un tenseur latent vide avec des dimensions configurées pour la taille de lot, la longueur vidéo, la largeur et la hauteur spécifiées. | \ No newline at end of file +| `latent` | LATENT | Un tenseur latent vide avec des dimensions configurées pour la taille de lot, la longueur vidéo, la largeur et la hauteur spécifiées. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ja.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ja.md index 5b60dc2fd..7812fe269 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ja.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ja.md @@ -24,4 +24,4 @@ HunyuanVideo15ImageToVideoノードは、HunyuanVideo 1.5モデルに基づい |-------------|-----------|-------------| | `positive` | CONDITIONING | 変更されたポジティブなコンディショニングです。エンコードされた開始画像やCLIP vision出力が含まれるようになっている場合があります。 | | `negative` | CONDITIONING | 変更されたネガティブなコンディショニングです。エンコードされた開始画像やCLIP vision出力が含まれるようになっている場合があります。 | -| `latent` | LATENT | 指定されたバッチサイズ、動画長、幅、高さに合わせて構成された次元を持つ空の潜在テンソルです。 | \ No newline at end of file +| `latent` | LATENT | 指定されたバッチサイズ、動画長、幅、高さに合わせて構成された次元を持つ空の潜在テンソルです。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ko.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ko.md index 830dd4e9f..68a5b864c 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ko.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ko.md @@ -24,4 +24,4 @@ HunyuanVideo15ImageToVideo 노드는 HunyuanVideo 1.5 모델 기반의 비디오 |-------------|-----------|-------------| | `positive` | CONDITIONING | 인코딩된 시작 이미지나 CLIP 비전 출력이 포함될 수 있는 수정된 긍정적 조건화입니다. | | `negative` | CONDITIONING | 인코딩된 시작 이미지나 CLIP 비전 출력이 포함될 수 있는 수정된 부정적 조건화입니다. | -| `latent` | LATENT | 지정된 배치 크기, 비디오 길이, 너비 및 높이에 맞게 구성된 차원을 가진 빈 잠재 텐서입니다. | \ No newline at end of file +| `latent` | LATENT | 지정된 배치 크기, 비디오 길이, 너비 및 높이에 맞게 구성된 차원을 가진 빈 잠재 텐서입니다. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/pt-BR.md index 05ad1c9a6..841b79c3e 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó HunyuanVideo15ImageToVideo prepara dados de condicionamento e espaço late |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado, que agora pode incluir a imagem inicial codificada ou a saída de visão CLIP. | | `negative` | CONDITIONING | O condicionamento negativo modificado, que agora pode incluir a imagem inicial codificada ou a saída de visão CLIP. | -| `latent` | LATENT | Um tensor latente vazio com dimensões configuradas para o tamanho do lote, duração do vídeo, largura e altura especificados. | \ No newline at end of file +| `latent` | LATENT | Um tensor latente vazio com dimensões configuradas para o tamanho do lote, duração do vídeo, largura e altura especificados. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ru.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ru.md index 1e2116a2c..a0bf4d314 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ru.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/ru.md @@ -24,4 +24,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | Модифицированное положительное кондиционирование, которое теперь может включать закодированное стартовое изображение или вывод CLIP Vision. | | `negative` | CONDITIONING | Модифицированное отрицательное кондиционирование, которое теперь может включать закодированное стартовое изображение или вывод CLIP Vision. | -| `latent` | LATENT | Пустой латентный тензор с размерами, настроенными для указанного размера пакета, длины видео, ширины и высоты. | \ No newline at end of file +| `latent` | LATENT | Пустой латентный тензор с размерами, настроенными для указанного размера пакета, длины видео, ширины и высоты. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/tr.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/tr.md index 426cda8ff..1bfc04767 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/tr.md @@ -24,4 +24,4 @@ HunyuanVideo15ImageToVideo düğümü, HunyuanVideo 1.5 modeline dayalı video o |-------------|-----------|-------------| | `positive` | CONDITIONING | Kodlanmış başlangıç görüntüsünü veya CLIP görüntü çıktısını artık içerebilen, değiştirilmiş pozitif koşullandırma. | | `negative` | CONDITIONING | Kodlanmış başlangıç görüntüsünü veya CLIP görüntü çıktısını artık içerebilen, değiştirilmiş negatif koşullandırma. | -| `latent` | LATENT | Belirtilen parti boyutu, video uzunluğu, genişlik ve yükseklik için yapılandırılmış boyutlara sahip boş bir gizli tensör. | \ No newline at end of file +| `latent` | LATENT | Belirtilen parti boyutu, video uzunluğu, genişlik ve yükseklik için yapılandırılmış boyutlara sahip boş bir gizli tensör. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh-TW.md index c1aece2ca..9cf906c9b 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh-TW.md @@ -24,4 +24,4 @@ HunyuanVideo15ImageToVideo 節點為基於 HunyuanVideo 1.5 模型的影片生 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改後的正向條件設定,現在可能包含編碼後的起始圖像或 CLIP 視覺輸出。 | | `negative` | CONDITIONING | 修改後的負向條件設定,現在可能包含編碼後的起始圖像或 CLIP 視覺輸出。 | -| `latent` | LATENT | 一個空的潛在張量,其維度已根據指定的批次大小、影片長度、寬度和高度進行配置。 | \ No newline at end of file +| `latent` | LATENT | 一個空的潛在張量,其維度已根據指定的批次大小、影片長度、寬度和高度進行配置。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh.md b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh.md index a04359df4..89a1d0337 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15ImageToVideo/zh.md @@ -24,4 +24,4 @@ HunyuanVideo15ImageToVideo 节点基于混元视频 1.5 模型,为视频生成 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改后的正面条件输入,现在可能包含编码后的起始图像或 CLIP 视觉输出。 | | `negative` | CONDITIONING | 修改后的负面条件输入,现在可能包含编码后的起始图像或 CLIP 视觉输出。 | -| `latent` | LATENT | 一个空的潜在张量,其维度根据指定的批次大小、视频长度、宽度和高度进行配置。 | \ No newline at end of file +| `latent` | LATENT | 一个空的潜在张量,其维度根据指定的批次大小、视频长度、宽度和高度进行配置。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ar.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ar.md index d7a473171..204465d99 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ar.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | تمثيل الصورة الكامنة المكبرة والمنقاة بواسطة النموذج. | \ No newline at end of file +| `LATENT` | LATENT | تمثيل الصورة الكامنة المكبرة والمنقاة بواسطة النموذج. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/en.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/en.md index 2822927fb..934e16ef5 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/en.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/en.md @@ -19,4 +19,4 @@ The Hunyuan Video 15 Latent Upscale With Model node increases the resolution of | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `LATENT` | LATENT | The upscaled and model-refined latent image representation. | \ No newline at end of file +| `LATENT` | LATENT | The upscaled and model-refined latent image representation. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/es.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/es.md index d4b85eb08..e3f2f35cf 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/es.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/es.md @@ -19,4 +19,4 @@ El nodo Hunyuan Video 15 Latent Upscale With Model aumenta la resolución de una | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `LATENT` | LATENT | La representación de imagen latente escalada y refinada por el modelo. | \ No newline at end of file +| `LATENT` | LATENT | La representación de imagen latente escalada y refinada por el modelo. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/fr.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/fr.md index 80f2c1e65..a3a7ac3de 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/fr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/fr.md @@ -19,4 +19,4 @@ Le nœud Hunyuan Video 15 Latent Upscale With Model augmente la résolution d'un | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `LATENT` | LATENT | La représentation d'image latente suréchantillonnée et affinée par le modèle. | \ No newline at end of file +| `LATENT` | LATENT | La représentation d'image latente suréchantillonnée et affinée par le modèle. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ja.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ja.md index cd3c3d158..8b56e33f7 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ja.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ja.md @@ -19,4 +19,4 @@ Hunyuan Video 15 Latent Upscale With Model ノードは、潜在的な画像表 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `LATENT` | LATENT | アップスケールされ、モデルによって洗練された潜在的な画像表現。 | \ No newline at end of file +| `LATENT` | LATENT | アップスケールされ、モデルによって洗練された潜在的な画像表現。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ko.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ko.md index 87e0f9afc..f8a0674e8 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ko.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ko.md @@ -19,4 +19,4 @@ Hunyuan Video 15 Latent Upscale With Model 노드는 잠재 이미지 표현의 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 업스케일되고 모델에 의해 개선된 잠재 이미지 표현입니다. | \ No newline at end of file +| `LATENT` | LATENT | 업스케일되고 모델에 의해 개선된 잠재 이미지 표현입니다. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/pt-BR.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/pt-BR.md index 6ced9a358..a27920055 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/pt-BR.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/pt-BR.md @@ -19,4 +19,4 @@ O nó **Hunyuan Video 15 Latent Upscale With Model** aumenta a resolução de um | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | A representação de imagem latente ampliada e refinada pelo modelo. | \ No newline at end of file +| `LATENT` | LATENT | A representação de imagem latente ampliada e refinada pelo modelo. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ru.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ru.md index a7919e2eb..7fc3b671a 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ru.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/ru.md @@ -19,4 +19,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `LATENT` | LATENT | Масштабированное и улучшенное моделью латентное представление изображения. | \ No newline at end of file +| `LATENT` | LATENT | Масштабированное и улучшенное моделью латентное представление изображения. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/tr.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/tr.md index 7a514a7e3..afe8a1b59 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/tr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/tr.md @@ -19,4 +19,4 @@ Hunyuan Video 15 Latent Upscale With Model düğümü, bir gizli (latent) görü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Yükseltilmiş ve model tarafından işlenmiş gizli görüntü temsili. | \ No newline at end of file +| `LATENT` | LATENT | Yükseltilmiş ve model tarafından işlenmiş gizli görüntü temsili. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh-TW.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh-TW.md index 3315b83b8..36ccdad3b 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh-TW.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh-TW.md @@ -19,4 +19,4 @@ Hunyuan Video 15 Latent Upscale With Model 節點用於提升潛空間影像表 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 經過放大和模型精煉後的潛空間影像表徵。 | \ No newline at end of file +| `LATENT` | LATENT | 經過放大和模型精煉後的潛空間影像表徵。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh.md b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh.md index e2e3c7652..7172b1c71 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15LatentUpscaleWithModel/zh.md @@ -19,4 +19,4 @@ Hunyuan Video 15 Latent Upscale With Model 节点用于提升潜在图像表示 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 经过放大和模型细化后的潜在图像表示。 | \ No newline at end of file +| `LATENT` | LATENT | 经过放大和模型细化后的潜在图像表示。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ar.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ar.md index d8a075671..cd4982217 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ar.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ar.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | التكييف الإيجابي المعدل، والذي يحتوي الآن على بيانات الكامن المدمجة، وزيادة الضوضاء، وبيانات رؤية CLIP الاختيارية. | | `negative` | CONDITIONING | التكييف السلبي المعدل، والذي يحتوي الآن على بيانات الكامن المدمجة، وزيادة الضوضاء، وبيانات رؤية CLIP الاختيارية. | -| `latent` | LATENT | الكامن المدخل يُمرر دون تغيير. | \ No newline at end of file +| `latent` | LATENT | الكامن المدخل يُمرر دون تغيير. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/en.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/en.md index 4b15a9d73..24ab61b54 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/en.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/en.md @@ -22,4 +22,4 @@ The HunyuanVideo15SuperResolution node prepares conditioning data for a video su |-------------|-----------|-------------| | `positive` | CONDITIONING | The modified positive conditioning, now containing the concatenated latent, noise augmentation, and optional CLIP vision data. | | `negative` | CONDITIONING | The modified negative conditioning, now containing the concatenated latent, noise augmentation, and optional CLIP vision data. | -| `latent` | LATENT | The input latent is passed through unchanged. | \ No newline at end of file +| `latent` | LATENT | The input latent is passed through unchanged. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/es.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/es.md index 4150a589f..c1858cfc7 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/es.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/es.md @@ -22,4 +22,4 @@ El nodo HunyuanVideo15SuperResolution prepara datos de condicionamiento para un |-------------|-----------|-------------| | `positive` | CONDITIONING | El condicionamiento positivo modificado, que ahora contiene el latente concatenado, el aumento de ruido y los datos opcionales de visión CLIP. | | `negative` | CONDITIONING | El condicionamiento negativo modificado, que ahora contiene el latente concatenado, el aumento de ruido y los datos opcionales de visión CLIP. | -| `latent` | LATENT | El latente de entrada se pasa sin cambios. | \ No newline at end of file +| `latent` | LATENT | El latente de entrada se pasa sin cambios. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/fr.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/fr.md index 2056cf90e..c39678dc0 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/fr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/fr.md @@ -20,4 +20,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | Le conditionnement positif modifié, contenant désormais le latent concaténé, l'augmentation par bruit et les données de vision CLIP optionnelles. | | `negative` | CONDITIONING | Le conditionnement négatif modifié, contenant désormais le latent concaténé, l'augmentation par bruit et les données de vision CLIP optionnelles. | -| `latent` | LATENT | Le latent d'entrée est transmis inchangé. | \ No newline at end of file +| `latent` | LATENT | Le latent d'entrée est transmis inchangé. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ja.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ja.md index 91a6c3a56..e39d4392c 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ja.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ja.md @@ -22,4 +22,4 @@ HunyuanVideo15SuperResolutionノードは、動画の超解像処理のための |-------------|-----------|-------------| | `positive` | CONDITIONING | 修正されたポジティブな条件付けです。連結された潜在表現、ノイズ増強、およびオプションのCLIP visionデータが含まれています。 | | `negative` | CONDITIONING | 修正されたネガティブな条件付けです。連結された潜在表現、ノイズ増強、およびオプションのCLIP visionデータが含まれています。 | -| `latent` | LATENT | 入力された潜在表現が変更されずに通過します。 | \ No newline at end of file +| `latent` | LATENT | 入力された潜在表現が変更されずに通過します。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ko.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ko.md index 8478a91df..ab6117c72 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ko.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ko.md @@ -22,4 +22,4 @@ HunyuanVideo15SuperResolution 노드는 비디오 초해상도 처리를 위한 |-------------|-----------|-------------| | `positive` | CONDITIONING | 연결된 잠재 데이터, 노이즈 증강 및 선택적 CLIP 비전 데이터를 포함하도록 수정된 긍정적 조건화입니다. | | `negative` | CONDITIONING | 연결된 잠재 데이터, 노이즈 증강 및 선택적 CLIP 비전 데이터를 포함하도록 수정된 부정적 조건화입니다. | -| `latent` | LATENT | 입력된 잠재 표현이 변경 없이 통과됩니다. | \ No newline at end of file +| `latent` | LATENT | 입력된 잠재 표현이 변경 없이 통과됩니다. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/pt-BR.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/pt-BR.md index d889220ec..22705cced 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/pt-BR.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/pt-BR.md @@ -22,4 +22,4 @@ O nó HunyuanVideo15SuperResolution prepara dados de condicionamento para um pro |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado, agora contendo o latente concatenado, o aumento de ruído e os dados opcionais de visão CLIP. | | `negative` | CONDITIONING | O condicionamento negativo modificado, agora contendo o latente concatenado, o aumento de ruído e os dados opcionais de visão CLIP. | -| `latent` | LATENT | O latente de entrada é passado inalterado. | \ No newline at end of file +| `latent` | LATENT | O latente de entrada é passado inalterado. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ru.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ru.md index 47d9169d8..201779a31 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ru.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/ru.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | Модифицированное положительное кондиционирование, теперь содержащее объединённые латентные данные, данные шумовой аугментации и опциональные данные CLIP vision. | | `negative` | CONDITIONING | Модифицированное отрицательное кондиционирование, теперь содержащее объединённые латентные данные, данные шумовой аугментации и опциональные данные CLIP vision. | -| `latent` | LATENT | Входной латентный тензор передаётся без изменений. | \ No newline at end of file +| `latent` | LATENT | Входной латентный тензор передаётся без изменений. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/tr.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/tr.md index 6f146e7a6..4ead955ae 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/tr.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/tr.md @@ -22,4 +22,4 @@ HunyuanVideo15SuperResolution düğümü, bir video süper çözünürlük işle |-------------|-----------|-------------| | `positive` | CONDITIONING | Değiştirilmiş olumlu koşullandırma; artık birleştirilmiş gizli alan, gürültü artırma ve isteğe bağlı CLIP görüntü verilerini içerir. | | `negative` | CONDITIONING | Değiştirilmiş olumsuz koşullandırma; artık birleştirilmiş gizli alan, gürültü artırma ve isteğe bağlı CLIP görüntü verilerini içerir. | -| `latent` | LATENT | Girdi gizli alanı değişmeden iletilir. | \ No newline at end of file +| `latent` | LATENT | Girdi gizli alanı değişmeden iletilir. | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh-TW.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh-TW.md index 5d919ed10..8a3fecc24 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh-TW.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh-TW.md @@ -22,4 +22,4 @@ HunyuanVideo15SuperResolution 節點為影片超解析度處理準備條件資 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改後的正向條件,現在包含了串聯的潛在資料、雜訊增強以及可選的 CLIP 視覺資料。 | | `negative` | CONDITIONING | 修改後的負向條件,現在包含了串聯的潛在資料、雜訊增強以及可選的 CLIP 視覺資料。 | -| `latent` | LATENT | 輸入的潛在資料將保持不變地傳遞。 | \ No newline at end of file +| `latent` | LATENT | 輸入的潛在資料將保持不變地傳遞。 | diff --git a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh.md b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh.md index ada2240a7..af59ca3b1 100644 --- a/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh.md +++ b/comfyui_embedded_docs/docs/HunyuanVideo15SuperResolution/zh.md @@ -22,4 +22,4 @@ HunyuanVideo15SuperResolution 节点为视频超分辨率处理准备条件数 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改后的正向条件数据,现在包含了拼接的潜在数据、噪声增强以及可选的 CLIP 视觉数据。 | | `negative` | CONDITIONING | 修改后的负向条件数据,现在包含了拼接的潜在数据、噪声增强以及可选的 CLIP 视觉数据。 | -| `latent` | LATENT | 输入的潜在数据,原样传递,未作更改。 | \ No newline at end of file +| `latent` | LATENT | 输入的潜在数据,原样传递,未作更改。 | diff --git a/comfyui_embedded_docs/docs/HyperTile/ar.md b/comfyui_embedded_docs/docs/HyperTile/ar.md index ec8f453d0..d61c8f6c0 100644 --- a/comfyui_embedded_docs/docs/HyperTile/ar.md +++ b/comfyui_embedded_docs/docs/HyperTile/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق تحسين HyperTile عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق تحسين HyperTile عليه | diff --git a/comfyui_embedded_docs/docs/HyperTile/pt-BR.md b/comfyui_embedded_docs/docs/HyperTile/pt-BR.md index 911430d8e..ef20d5dab 100644 --- a/comfyui_embedded_docs/docs/HyperTile/pt-BR.md +++ b/comfyui_embedded_docs/docs/HyperTile/pt-BR.md @@ -16,4 +16,4 @@ O nó HyperTile aplica uma técnica de mosaico ao mecanismo de atenção em mode | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a otimização HyperTile aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a otimização HyperTile aplicada | diff --git a/comfyui_embedded_docs/docs/HyperTile/tr.md b/comfyui_embedded_docs/docs/HyperTile/tr.md index cbc740fe7..20d124b36 100644 --- a/comfyui_embedded_docs/docs/HyperTile/tr.md +++ b/comfyui_embedded_docs/docs/HyperTile/tr.md @@ -16,4 +16,4 @@ HyperTile düğümü, görüntü oluşturma sırasında bellek kullanımını op | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | HyperTile optimizasyonu uygulanmış, değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | HyperTile optimizasyonu uygulanmış, değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/HyperTile/zh-TW.md b/comfyui_embedded_docs/docs/HyperTile/zh-TW.md index b2f8a9c44..b528171e6 100644 --- a/comfyui_embedded_docs/docs/HyperTile/zh-TW.md +++ b/comfyui_embedded_docs/docs/HyperTile/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 HyperTile 優化的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 HyperTile 優化的修改後模型 | diff --git a/comfyui_embedded_docs/docs/HypernetworkLoader/ar.md b/comfyui_embedded_docs/docs/HypernetworkLoader/ar.md index 0eb4ba13c..3e11c7234 100644 --- a/comfyui_embedded_docs/docs/HypernetworkLoader/ar.md +++ b/comfyui_embedded_docs/docs/HypernetworkLoader/ar.md @@ -16,4 +16,4 @@ | الحقل | نوع البيانات | الوصف | |---------|-------------|--------------------------------------------------------------------------| -| `النموذج` | `MODEL` | النموذج المعدل بعد تطبيق الشبكة الفائقة عليه، والذي يُظهر تأثير الشبكة الفائقة على النموذج الأصلي. | \ No newline at end of file +| `النموذج` | `MODEL` | النموذج المعدل بعد تطبيق الشبكة الفائقة عليه، والذي يُظهر تأثير الشبكة الفائقة على النموذج الأصلي. | diff --git a/comfyui_embedded_docs/docs/HypernetworkLoader/pt-BR.md b/comfyui_embedded_docs/docs/HypernetworkLoader/pt-BR.md index c5adfa2cf..04e55b58d 100644 --- a/comfyui_embedded_docs/docs/HypernetworkLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/HypernetworkLoader/pt-BR.md @@ -16,4 +16,4 @@ O nó HypernetworkLoader é projetado para aprimorar ou modificar as capacidades | Campo | Tipo de Dados | Descrição | |---------|-------------|--------------------------------------------------------------------------| -| `model` | `MODEL` | O modelo modificado após a aplicação da hiper-rede, demonstrando o impacto da hiper-rede no modelo original. | \ No newline at end of file +| `model` | `MODEL` | O modelo modificado após a aplicação da hiper-rede, demonstrando o impacto da hiper-rede no modelo original. | diff --git a/comfyui_embedded_docs/docs/HypernetworkLoader/tr.md b/comfyui_embedded_docs/docs/HypernetworkLoader/tr.md index 7627abd40..238ce66c3 100644 --- a/comfyui_embedded_docs/docs/HypernetworkLoader/tr.md +++ b/comfyui_embedded_docs/docs/HypernetworkLoader/tr.md @@ -16,4 +16,4 @@ HypernetworkLoader düğümü, bir hiper ağ uygulayarak belirli bir modelin yet | Alan | Veri Türü | Açıklama | |---------|-------------|--------------------------------------------------------------------------| -| `model` | `MODEL` | Hiper ağ uygulandıktan sonra, hiper ağın orijinal model üzerindeki etkisini sergileyen değiştirilmiş model. | \ No newline at end of file +| `model` | `MODEL` | Hiper ağ uygulandıktan sonra, hiper ağın orijinal model üzerindeki etkisini sergileyen değiştirilmiş model. | diff --git a/comfyui_embedded_docs/docs/HypernetworkLoader/zh-TW.md b/comfyui_embedded_docs/docs/HypernetworkLoader/zh-TW.md index 7a14a1288..76a76a736 100644 --- a/comfyui_embedded_docs/docs/HypernetworkLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/HypernetworkLoader/zh-TW.md @@ -16,4 +16,4 @@ HypernetworkLoader 節點旨在透過應用超網絡來增強或修改給定模 | 欄位名稱 | 資料類型 | 描述說明 | |---------|-------------|--------------------------------------------------------------------------| -| `model` | `MODEL` | 應用超網絡後的修改模型,展示超網絡對原始模型的影響效果。 | \ No newline at end of file +| `model` | `MODEL` | 應用超網絡後的修改模型,展示超網絡對原始模型的影響效果。 | diff --git a/comfyui_embedded_docs/docs/IdeogramV1/ar.md b/comfyui_embedded_docs/docs/IdeogramV1/ar.md index 839115cb0..2ccc3fcaf 100644 --- a/comfyui_embedded_docs/docs/IdeogramV1/ar.md +++ b/comfyui_embedded_docs/docs/IdeogramV1/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `output` | IMAGE | الصور المُنتَجة من نموذج Ideogram V1 | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/IdeogramV1/pt-BR.md b/comfyui_embedded_docs/docs/IdeogramV1/pt-BR.md index d43551cee..7e9edb206 100644 --- a/comfyui_embedded_docs/docs/IdeogramV1/pt-BR.md +++ b/comfyui_embedded_docs/docs/IdeogramV1/pt-BR.md @@ -20,4 +20,4 @@ O nó IdeogramV1 gera imagens usando o modelo Ideogram V1 por meio de uma API. E | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A(s) imagem(ns) gerada(s) pelo modelo Ideogram V1 | \ No newline at end of file +| `output` | IMAGE | A(s) imagem(ns) gerada(s) pelo modelo Ideogram V1 | diff --git a/comfyui_embedded_docs/docs/IdeogramV1/tr.md b/comfyui_embedded_docs/docs/IdeogramV1/tr.md index 7721fc406..582a5c0fd 100644 --- a/comfyui_embedded_docs/docs/IdeogramV1/tr.md +++ b/comfyui_embedded_docs/docs/IdeogramV1/tr.md @@ -20,4 +20,4 @@ IdeogramV1 düğümü, bir API aracılığıyla Ideogram V1 modelini kullanarak | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Ideogram V1 modelinden oluşturulan görüntü(ler) | \ No newline at end of file +| `output` | IMAGE | Ideogram V1 modelinden oluşturulan görüntü(ler) | diff --git a/comfyui_embedded_docs/docs/IdeogramV1/zh-TW.md b/comfyui_embedded_docs/docs/IdeogramV1/zh-TW.md index 77fe4c112..cb02a82bc 100644 --- a/comfyui_embedded_docs/docs/IdeogramV1/zh-TW.md +++ b/comfyui_embedded_docs/docs/IdeogramV1/zh-TW.md @@ -20,4 +20,4 @@ IdeogramV1 節點透過 API 使用 Ideogram V1 模型生成圖像。它接收文 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 來自 Ideogram V1 模型生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 來自 Ideogram V1 模型生成的圖像 | diff --git a/comfyui_embedded_docs/docs/IdeogramV2/ar.md b/comfyui_embedded_docs/docs/IdeogramV2/ar.md index 4b9507879..2fa05c60e 100644 --- a/comfyui_embedded_docs/docs/IdeogramV2/ar.md +++ b/comfyui_embedded_docs/docs/IdeogramV2/ar.md @@ -24,4 +24,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `output` | IMAGE | الصور المُنتَجة من نموذج Ideogram V2 | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/IdeogramV2/pt-BR.md b/comfyui_embedded_docs/docs/IdeogramV2/pt-BR.md index d6838e130..2e5dec56f 100644 --- a/comfyui_embedded_docs/docs/IdeogramV2/pt-BR.md +++ b/comfyui_embedded_docs/docs/IdeogramV2/pt-BR.md @@ -22,4 +22,4 @@ O nó Ideogram V2 gera imagens usando o modelo de IA Ideogram V2. Ele recebe pro | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A(s) imagem(ns) gerada(s) pelo modelo Ideogram V2 | \ No newline at end of file +| `output` | IMAGE | A(s) imagem(ns) gerada(s) pelo modelo Ideogram V2 | diff --git a/comfyui_embedded_docs/docs/IdeogramV2/tr.md b/comfyui_embedded_docs/docs/IdeogramV2/tr.md index b9694bd3e..fc1824da7 100644 --- a/comfyui_embedded_docs/docs/IdeogramV2/tr.md +++ b/comfyui_embedded_docs/docs/IdeogramV2/tr.md @@ -22,4 +22,4 @@ Ideogram V2 düğümü, Ideogram V2 AI modelini kullanarak görüntüler oluştu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Ideogram V2 modelinden oluşturulan görüntü(ler) | \ No newline at end of file +| `output` | IMAGE | Ideogram V2 modelinden oluşturulan görüntü(ler) | diff --git a/comfyui_embedded_docs/docs/IdeogramV2/zh-TW.md b/comfyui_embedded_docs/docs/IdeogramV2/zh-TW.md index 7e9420a4f..36e71e8a4 100644 --- a/comfyui_embedded_docs/docs/IdeogramV2/zh-TW.md +++ b/comfyui_embedded_docs/docs/IdeogramV2/zh-TW.md @@ -22,4 +22,4 @@ Ideogram V2 節點使用 Ideogram V2 AI 模型生成圖像。它接收文字提 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | IMAGE | 來自 Ideogram V2 模型生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 來自 Ideogram V2 模型生成的圖像 | diff --git a/comfyui_embedded_docs/docs/IdeogramV3/ar.md b/comfyui_embedded_docs/docs/IdeogramV3/ar.md index bcd708afd..4b4a8b083 100644 --- a/comfyui_embedded_docs/docs/IdeogramV3/ar.md +++ b/comfyui_embedded_docs/docs/IdeogramV3/ar.md @@ -33,4 +33,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| | `output` | IMAGE | الصورة (أو الصور) المُولَّدة أو المُحرَّرة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/IdeogramV3/pt-BR.md b/comfyui_embedded_docs/docs/IdeogramV3/pt-BR.md index 177165649..0a4ca315d 100644 --- a/comfyui_embedded_docs/docs/IdeogramV3/pt-BR.md +++ b/comfyui_embedded_docs/docs/IdeogramV3/pt-BR.md @@ -31,4 +31,4 @@ O nó Ideogram V3 gera imagens usando o modelo Ideogram V3. Ele suporta tanto a | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A(s) imagem(ns) gerada(s) ou editada(s) | \ No newline at end of file +| `output` | IMAGE | A(s) imagem(ns) gerada(s) ou editada(s) | diff --git a/comfyui_embedded_docs/docs/IdeogramV3/tr.md b/comfyui_embedded_docs/docs/IdeogramV3/tr.md index 5608bbe1b..f5408d6ef 100644 --- a/comfyui_embedded_docs/docs/IdeogramV3/tr.md +++ b/comfyui_embedded_docs/docs/IdeogramV3/tr.md @@ -31,4 +31,4 @@ Ideogram V3 düğümü, Ideogram V3 modelini kullanarak görüntüler oluşturur | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Oluşturulan veya düzenlenen görüntü(ler) | \ No newline at end of file +| `output` | IMAGE | Oluşturulan veya düzenlenen görüntü(ler) | diff --git a/comfyui_embedded_docs/docs/IdeogramV3/zh-TW.md b/comfyui_embedded_docs/docs/IdeogramV3/zh-TW.md index 2ba668de6..280e1976d 100644 --- a/comfyui_embedded_docs/docs/IdeogramV3/zh-TW.md +++ b/comfyui_embedded_docs/docs/IdeogramV3/zh-TW.md @@ -31,4 +31,4 @@ Ideogram V3 節點使用 Ideogram V3 模型生成影像。它支援基於文字 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | IMAGE | 生成或編輯後的影像 | \ No newline at end of file +| `output` | IMAGE | 生成或編輯後的影像 | diff --git a/comfyui_embedded_docs/docs/ImageAddNoise/ar.md b/comfyui_embedded_docs/docs/ImageAddNoise/ar.md index 8a595dc46..9e6de1e5a 100644 --- a/comfyui_embedded_docs/docs/ImageAddNoise/ar.md +++ b/comfyui_embedded_docs/docs/ImageAddNoise/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | صورة المخرجات مع تطبيق الضوضاء المضافة | \ No newline at end of file +| `image` | IMAGE | صورة المخرجات مع تطبيق الضوضاء المضافة | diff --git a/comfyui_embedded_docs/docs/ImageAddNoise/pt-BR.md b/comfyui_embedded_docs/docs/ImageAddNoise/pt-BR.md index 410bc833b..a0abca68b 100644 --- a/comfyui_embedded_docs/docs/ImageAddNoise/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageAddNoise/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageAddNoise adiciona ruído aleatório a uma imagem de entrada. Ele util | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída com o ruído adicionado aplicado | \ No newline at end of file +| `image` | IMAGE | A imagem de saída com o ruído adicionado aplicado | diff --git a/comfyui_embedded_docs/docs/ImageAddNoise/tr.md b/comfyui_embedded_docs/docs/ImageAddNoise/tr.md index 7856657b4..f63e30e84 100644 --- a/comfyui_embedded_docs/docs/ImageAddNoise/tr.md +++ b/comfyui_embedded_docs/docs/ImageAddNoise/tr.md @@ -14,4 +14,4 @@ ImageAddNoise düğümü, bir giriş görüntüsüne rastgele gürültü ekler. | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Üzerine gürültü eklenmiş çıktı görüntüsü | \ No newline at end of file +| `image` | IMAGE | Üzerine gürültü eklenmiş çıktı görüntüsü | diff --git a/comfyui_embedded_docs/docs/ImageAddNoise/zh-TW.md b/comfyui_embedded_docs/docs/ImageAddNoise/zh-TW.md index d87f297ba..e9353396f 100644 --- a/comfyui_embedded_docs/docs/ImageAddNoise/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageAddNoise/zh-TW.md @@ -14,4 +14,4 @@ ImageAddNoise 節點會對輸入影像添加隨機噪點。它使用指定的隨 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 已添加噪點的輸出影像 | \ No newline at end of file +| `image` | IMAGE | 已添加噪點的輸出影像 | diff --git a/comfyui_embedded_docs/docs/ImageBatch/ar.md b/comfyui_embedded_docs/docs/ImageBatch/ar.md index d551f76be..0bc088c80 100644 --- a/comfyui_embedded_docs/docs/ImageBatch/ar.md +++ b/comfyui_embedded_docs/docs/ImageBatch/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `image` | `IMAGE` | الدفعة المدمجة من الصور، مع إعادة تحجيم الصورة الثانية لمطابقة أبعاد الصورة الأولى إذا لزم الأمر. | \ No newline at end of file +| `image` | `IMAGE` | الدفعة المدمجة من الصور، مع إعادة تحجيم الصورة الثانية لمطابقة أبعاد الصورة الأولى إذا لزم الأمر. | diff --git a/comfyui_embedded_docs/docs/ImageBatch/pt-BR.md b/comfyui_embedded_docs/docs/ImageBatch/pt-BR.md index 517bdf2ae..45f89a1f8 100644 --- a/comfyui_embedded_docs/docs/ImageBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageBatch/pt-BR.md @@ -13,4 +13,4 @@ O nó `ImageBatch` é projetado para combinar duas imagens em um único lote. Se | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | O lote combinado de imagens, com a segunda imagem redimensionada para corresponder às dimensões da primeira, se necessário. | \ No newline at end of file +| `image` | `IMAGE` | O lote combinado de imagens, com a segunda imagem redimensionada para corresponder às dimensões da primeira, se necessário. | diff --git a/comfyui_embedded_docs/docs/ImageBatch/tr.md b/comfyui_embedded_docs/docs/ImageBatch/tr.md index 44d8f3d83..03815c1dd 100644 --- a/comfyui_embedded_docs/docs/ImageBatch/tr.md +++ b/comfyui_embedded_docs/docs/ImageBatch/tr.md @@ -13,4 +13,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `image` | `IMAGE` | Birleştirilmiş görüntü toplu işlemi. Gerekirse ikinci görüntü, ilkinin boyutlarına uyacak şekilde yeniden ölçeklendirilmiştir. | \ No newline at end of file +| `image` | `IMAGE` | Birleştirilmiş görüntü toplu işlemi. Gerekirse ikinci görüntü, ilkinin boyutlarına uyacak şekilde yeniden ölçeklendirilmiştir. | diff --git a/comfyui_embedded_docs/docs/ImageBatch/zh-TW.md b/comfyui_embedded_docs/docs/ImageBatch/zh-TW.md index cc2c91f8a..0fa2aa37e 100644 --- a/comfyui_embedded_docs/docs/ImageBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageBatch/zh-TW.md @@ -13,4 +13,4 @@ | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `image` | `IMAGE` | 合併後的圖像批次,必要時第二張圖像已重新縮放以匹配第一張圖像的尺寸。 | \ No newline at end of file +| `image` | `IMAGE` | 合併後的圖像批次,必要時第二張圖像已重新縮放以匹配第一張圖像的尺寸。 | diff --git a/comfyui_embedded_docs/docs/ImageBlend/ar.md b/comfyui_embedded_docs/docs/ImageBlend/ar.md index 9ee67a919..9c9f17a8d 100644 --- a/comfyui_embedded_docs/docs/ImageBlend/ar.md +++ b/comfyui_embedded_docs/docs/ImageBlend/ar.md @@ -15,4 +15,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|--------------------------------------------------------------------------| -| `image`| `IMAGE` | الصورة الناتجة بعد دمج الصورتين المدخلة وفقًا لوضع الدمح وعامل الدمج المحددين. | \ No newline at end of file +| `image`| `IMAGE` | الصورة الناتجة بعد دمج الصورتين المدخلة وفقًا لوضع الدمح وعامل الدمج المحددين. | diff --git a/comfyui_embedded_docs/docs/ImageBlend/pt-BR.md b/comfyui_embedded_docs/docs/ImageBlend/pt-BR.md index c91f07e5d..28b0fac95 100644 --- a/comfyui_embedded_docs/docs/ImageBlend/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageBlend/pt-BR.md @@ -15,4 +15,4 @@ O nó `ImageBlend` é projetado para mesclar duas imagens com base em um modo de | Campo | Tipo de Dados | Descrição | |-------|-------------|--------------------------------------------------------------------------| -| `image`| `IMAGE` | A imagem resultante após a mesclagem das duas imagens de entrada de acordo com o modo e fator de mesclagem especificados. | \ No newline at end of file +| `image`| `IMAGE` | A imagem resultante após a mesclagem das duas imagens de entrada de acordo com o modo e fator de mesclagem especificados. | diff --git a/comfyui_embedded_docs/docs/ImageBlend/tr.md b/comfyui_embedded_docs/docs/ImageBlend/tr.md index 8e3872c69..0f7ab5f58 100644 --- a/comfyui_embedded_docs/docs/ImageBlend/tr.md +++ b/comfyui_embedded_docs/docs/ImageBlend/tr.md @@ -15,4 +15,4 @@ | Alan | Veri Türü | Açıklama | |--------|-------------|--------------------------------------------------------------------------| -| `image`| `IMAGE` | Belirtilen karıştırma modu ve faktörüne göre iki giriş görüntüsünün karıştırılması sonucu oluşan görüntü. | \ No newline at end of file +| `image`| `IMAGE` | Belirtilen karıştırma modu ve faktörüne göre iki giriş görüntüsünün karıştırılması sonucu oluşan görüntü. | diff --git a/comfyui_embedded_docs/docs/ImageBlend/zh-TW.md b/comfyui_embedded_docs/docs/ImageBlend/zh-TW.md index e0d80ad97..696fa2ae6 100644 --- a/comfyui_embedded_docs/docs/ImageBlend/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageBlend/zh-TW.md @@ -15,4 +15,4 @@ | 欄位名稱 | 資料類型 | 描述 | |-------|-------------|--------------------------------------------------------------------------| -| `image`| `IMAGE` | 根據指定的混合模式和因子混合兩張輸入圖像後所得的結果圖像。 | \ No newline at end of file +| `image`| `IMAGE` | 根據指定的混合模式和因子混合兩張輸入圖像後所得的結果圖像。 | diff --git a/comfyui_embedded_docs/docs/ImageBlur/ar.md b/comfyui_embedded_docs/docs/ImageBlur/ar.md index 72450d868..5559a6c7b 100644 --- a/comfyui_embedded_docs/docs/ImageBlur/ar.md +++ b/comfyui_embedded_docs/docs/ImageBlur/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|--------------------------------------------------------------------------| -| `الصورة`| `IMAGE` | المخرجات هي النسخة الضبابية من الصورة المدخلة، حيث يتم تحديد درجة الضبابية بواسطة المعاملات المدخلة. | \ No newline at end of file +| `الصورة`| `IMAGE` | المخرجات هي النسخة الضبابية من الصورة المدخلة، حيث يتم تحديد درجة الضبابية بواسطة المعاملات المدخلة. | diff --git a/comfyui_embedded_docs/docs/ImageBlur/pt-BR.md b/comfyui_embedded_docs/docs/ImageBlur/pt-BR.md index b95371674..41650168e 100644 --- a/comfyui_embedded_docs/docs/ImageBlur/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageBlur/pt-BR.md @@ -14,4 +14,4 @@ O nó `ImageBlur` aplica um desfoque Gaussiano a uma imagem, permitindo o suaviz | Campo | Tipo de Dados | Descrição | |--------|---------------|------------------------------------------------------------------------| -| `image`| `IMAGE` | A saída é a versão desfocada da imagem de entrada, com o grau de desfoque determinado pelos parâmetros de entrada. | \ No newline at end of file +| `image`| `IMAGE` | A saída é a versão desfocada da imagem de entrada, com o grau de desfoque determinado pelos parâmetros de entrada. | diff --git a/comfyui_embedded_docs/docs/ImageBlur/tr.md b/comfyui_embedded_docs/docs/ImageBlur/tr.md index 5081c1381..b98b6a63c 100644 --- a/comfyui_embedded_docs/docs/ImageBlur/tr.md +++ b/comfyui_embedded_docs/docs/ImageBlur/tr.md @@ -14,4 +14,4 @@ | Alan | Veri Türü | Açıklama | |-------|-------------|--------------------------------------------------------------------------| -| `görüntü`| `IMAGE` | Çıktı, girdi parametreleri tarafından belirlenen bulanıklık derecesine sahip, girdi görüntüsünün bulanıklaştırılmış halidir. | \ No newline at end of file +| `görüntü`| `IMAGE` | Çıktı, girdi parametreleri tarafından belirlenen bulanıklık derecesine sahip, girdi görüntüsünün bulanıklaştırılmış halidir. | diff --git a/comfyui_embedded_docs/docs/ImageBlur/zh-TW.md b/comfyui_embedded_docs/docs/ImageBlur/zh-TW.md index 6f0d25793..fa7a45cbb 100644 --- a/comfyui_embedded_docs/docs/ImageBlur/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageBlur/zh-TW.md @@ -14,4 +14,4 @@ | 欄位名稱 | 資料類型 | 描述 | |----------|-------------|------------------------------------------------------------------| -| `影像` | `IMAGE` | 輸出是輸入圖像的模糊版本,模糊程度由輸入參數決定。 | \ No newline at end of file +| `影像` | `IMAGE` | 輸出是輸入圖像的模糊版本,模糊程度由輸入參數決定。 | diff --git a/comfyui_embedded_docs/docs/ImageColorToMask/ar.md b/comfyui_embedded_docs/docs/ImageColorToMask/ar.md index 7cb062dce..c70810b2d 100644 --- a/comfyui_embedded_docs/docs/ImageColorToMask/ar.md +++ b/comfyui_embedded_docs/docs/ImageColorToMask/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------------------------------------------------------------------------------------------------| -| `mask` | `MASK` | المخرج هو قناع يبرز مناطق الصورة المدخلة التي تطابق اللون المحدد. يمكن استخدام هذا القناع لمهام معالجة الصور الإضافية، مثل التجزئة أو عزل الكائنات. | \ No newline at end of file +| `mask` | `MASK` | المخرج هو قناع يبرز مناطق الصورة المدخلة التي تطابق اللون المحدد. يمكن استخدام هذا القناع لمهام معالجة الصور الإضافية، مثل التجزئة أو عزل الكائنات. | diff --git a/comfyui_embedded_docs/docs/ImageColorToMask/pt-BR.md b/comfyui_embedded_docs/docs/ImageColorToMask/pt-BR.md index 2aaacffae..9d97b1c08 100644 --- a/comfyui_embedded_docs/docs/ImageColorToMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageColorToMask/pt-BR.md @@ -13,4 +13,4 @@ O nó `ImageColorToMask` é projetado para converter uma cor específica em uma | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `mask` | `MASK` | A saída é uma máscara que destaca as áreas da imagem de entrada que correspondem à cor especificada. Esta máscara pode ser usada para tarefas posteriores de processamento de imagem, como segmentação ou isolamento de objetos. | \ No newline at end of file +| `mask` | `MASK` | A saída é uma máscara que destaca as áreas da imagem de entrada que correspondem à cor especificada. Esta máscara pode ser usada para tarefas posteriores de processamento de imagem, como segmentação ou isolamento de objetos. | diff --git a/comfyui_embedded_docs/docs/ImageColorToMask/tr.md b/comfyui_embedded_docs/docs/ImageColorToMask/tr.md index d2eb0be28..3e20da6a3 100644 --- a/comfyui_embedded_docs/docs/ImageColorToMask/tr.md +++ b/comfyui_embedded_docs/docs/ImageColorToMask/tr.md @@ -13,4 +13,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `mask` | `MASK` | Çıktı, giriş görüntüsünün belirtilen renkle eşleşen alanlarını vurgulayan bir maskedir. Bu maske, segmentasyon veya nesne izolasyonu gibi daha ileri görüntü işleme görevleri için kullanılabilir. | \ No newline at end of file +| `mask` | `MASK` | Çıktı, giriş görüntüsünün belirtilen renkle eşleşen alanlarını vurgulayan bir maskedir. Bu maske, segmentasyon veya nesne izolasyonu gibi daha ileri görüntü işleme görevleri için kullanılabilir. | diff --git a/comfyui_embedded_docs/docs/ImageColorToMask/zh-TW.md b/comfyui_embedded_docs/docs/ImageColorToMask/zh-TW.md index 7709e5373..64ebeb727 100644 --- a/comfyui_embedded_docs/docs/ImageColorToMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageColorToMask/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `mask` | `MASK` | 輸出是一個遮罩,突出顯示輸入圖像中與指定顏色匹配的區域。此遮罩可用於進一步的圖像處理任務,例如分割或物件隔離。 | \ No newline at end of file +| `mask` | `MASK` | 輸出是一個遮罩,突出顯示輸入圖像中與指定顏色匹配的區域。此遮罩可用於進一步的圖像處理任務,例如分割或物件隔離。 | diff --git a/comfyui_embedded_docs/docs/ImageCompositeMasked/ar.md b/comfyui_embedded_docs/docs/ImageCompositeMasked/ar.md index b4baacccf..724538ad5 100644 --- a/comfyui_embedded_docs/docs/ImageCompositeMasked/ar.md +++ b/comfyui_embedded_docs/docs/ImageCompositeMasked/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `image` | `IMAGE` | الصورة الناتجة بعد عملية التركيب، والتي تجمع بين عناصر كل \ No newline at end of file +| `image` | `IMAGE` | الصورة الناتجة بعد عملية التركيب، والتي تجمع بين عناصر كل diff --git a/comfyui_embedded_docs/docs/ImageCompositeMasked/pt-BR.md b/comfyui_embedded_docs/docs/ImageCompositeMasked/pt-BR.md index 65182c9c3..747b8febe 100644 --- a/comfyui_embedded_docs/docs/ImageCompositeMasked/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageCompositeMasked/pt-BR.md @@ -17,4 +17,4 @@ O nó `ImageCompositeMasked` é projetado para composição de imagens, permitin | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A imagem resultante após a operação de composição, que combina elementos de ambas as imagens. | \ No newline at end of file +| `image` | `IMAGE` | A imagem resultante após a operação de composição, que combina elementos de ambas as imagens. | diff --git a/comfyui_embedded_docs/docs/ImageCompositeMasked/tr.md b/comfyui_embedded_docs/docs/ImageCompositeMasked/tr.md index 4f96fecd4..bc7858eaf 100644 --- a/comfyui_embedded_docs/docs/ImageCompositeMasked/tr.md +++ b/comfyui_embedded_docs/docs/ImageCompositeMasked/tr.md @@ -17,4 +17,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `image` | `IMAGE` | Birleştirme işlemi sonrasında, her iki görüntünün de unsurlarını bir araya getiren sonuç görüntüsü. | \ No newline at end of file +| `image` | `IMAGE` | Birleştirme işlemi sonrasında, her iki görüntünün de unsurlarını bir araya getiren sonuç görüntüsü. | diff --git a/comfyui_embedded_docs/docs/ImageCompositeMasked/zh-TW.md b/comfyui_embedded_docs/docs/ImageCompositeMasked/zh-TW.md index cace55527..840426db3 100644 --- a/comfyui_embedded_docs/docs/ImageCompositeMasked/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageCompositeMasked/zh-TW.md @@ -17,4 +17,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `image` | `IMAGE` | 合成操作後產生的結果圖像,結合了兩 \ No newline at end of file +| `image` | `IMAGE` | 合成操作後產生的結果圖像,結合了兩 diff --git a/comfyui_embedded_docs/docs/ImageCrop/ar.md b/comfyui_embedded_docs/docs/ImageCrop/ar.md index 7f040e853..0fab97ac1 100644 --- a/comfyui_embedded_docs/docs/ImageCrop/ar.md +++ b/comfyui_embedded_docs/docs/ImageCrop/ar.md @@ -16,4 +16,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-------------------------------------------------------------------------------| -| `الصورة` | `IMAGE` | الصورة المقطوعة نتيجة لعملية القص. هذا المخرج مهم للمعالجة أو التحليل الإضافي لمنطقة الصورة المحددة. | \ No newline at end of file +| `الصورة` | `IMAGE` | الصورة المقطوعة نتيجة لعملية القص. هذا المخرج مهم للمعالجة أو التحليل الإضافي لمنطقة الصورة المحددة. | diff --git a/comfyui_embedded_docs/docs/ImageCrop/pt-BR.md b/comfyui_embedded_docs/docs/ImageCrop/pt-BR.md index 95469bb54..479a689aa 100644 --- a/comfyui_embedded_docs/docs/ImageCrop/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageCrop/pt-BR.md @@ -16,4 +16,4 @@ O nó `ImageCrop` é projetado para recortar imagens para uma largura e altura e | Campo | Tipo de Dados | Descrição | |-------|-------------|-----------| -| `image` | `IMAGE` | A imagem recortada como resultado da operação de recorte. Esta saída é significativa para processamento ou análise posterior da região de imagem especificada. | \ No newline at end of file +| `image` | `IMAGE` | A imagem recortada como resultado da operação de recorte. Esta saída é significativa para processamento ou análise posterior da região de imagem especificada. | diff --git a/comfyui_embedded_docs/docs/ImageCrop/tr.md b/comfyui_embedded_docs/docs/ImageCrop/tr.md index 21925f8f9..6ba0455c6 100644 --- a/comfyui_embedded_docs/docs/ImageCrop/tr.md +++ b/comfyui_embedded_docs/docs/ImageCrop/tr.md @@ -16,4 +16,4 @@ | Alan | Veri Türü | Açıklama | |-------|-------------|---------------| -| `görüntü` | `IMAGE` | Kırpma işleminin bir sonucu olarak elde edilen kırpılmış görüntü. Bu çıktı, belirtilen görüntü bölgesinin daha fazla işlenmesi veya analizi için önemlidir. | \ No newline at end of file +| `görüntü` | `IMAGE` | Kırpma işleminin bir sonucu olarak elde edilen kırpılmış görüntü. Bu çıktı, belirtilen görüntü bölgesinin daha fazla işlenmesi veya analizi için önemlidir. | diff --git a/comfyui_embedded_docs/docs/ImageCrop/zh-TW.md b/comfyui_embedded_docs/docs/ImageCrop/zh-TW.md index b37400957..0be805418 100644 --- a/comfyui_embedded_docs/docs/ImageCrop/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageCrop/zh-TW.md @@ -16,4 +16,4 @@ | 參數名稱 | 資料類型 | 描述 | |-------|-------------|-------------------------------------------------------------------------------| -| `影像` | `IMAGE` | 裁剪操作產生的裁剪後圖像。此輸出對於進一步處理或分析指定的圖像區域非常重要。 | \ No newline at end of file +| `影像` | `IMAGE` | 裁剪操作產生的裁剪後圖像。此輸出對於進一步處理或分析指定的圖像區域非常重要。 | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/ar.md b/comfyui_embedded_docs/docs/ImageCropV2/ar.md new file mode 100644 index 000000000..0e5e1e3a3 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/ar.md) + +يقوم عقد Image Crop باستخراج قسم مستطيل من صورة الإدخال. يمكنك تحديد المنطقة المراد الاحتفاظ بها عن طريق تحديد إحداثيات الزاوية العلوية اليسرى وعرضها وارتفاعها. ثم يقوم العقد بإرجاع الجزء المقطوع من الصورة الأصلية. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | نعم | N/A | صورة الإدخال المراد اقتصاصها. | +| `crop_region` | BOUNDINGBOX | نعم | N/A | يحدد المنطقة المستطيلة المراد استخراجها من الصورة. يتم تحديدها بواسطة `x` (بداية أفقية)، `y` (بداية رأسية)، `width`، و `height`. إذا امتدت المنطقة المحددة خارج حدود الصورة، فسيتم تعديلها تلقائيًا لتناسب أبعاد الصورة. | + +**ملاحظة حول قيود المنطقة:** يتم تقييد منطقة الاقتصاص تلقائيًا للبقاء ضمن حدود صورة الإدخال. إذا كانت إحداثيات `x` أو `y` المحددة أكبر من عرض أو ارتفاع الصورة، فسيتم ضبطها على أقصى موضع صالح. سيتم تعديل عرض وارتفاع الاقتصاص الناتجين بحيث لا تتجاوز المنطقة حواف الصورة. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `image` | IMAGE | القسم المقطوع من صورة الإدخال الأصلية. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/en.md b/comfyui_embedded_docs/docs/ImageCropV2/en.md new file mode 100644 index 000000000..9ab493797 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/en.md) + +The Image Crop node extracts a rectangular section from an input image. You define the region to keep by specifying its top-left corner coordinates and its width and height. The node then returns the cropped portion of the original image. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Yes | N/A | The input image to be cropped. | +| `crop_region` | BOUNDINGBOX | Yes | N/A | Defines the rectangular area to extract from the image. It is specified by `x` (horizontal start), `y` (vertical start), `width`, and `height`. If the defined region extends beyond the image's borders, it will be automatically adjusted to fit within the image dimensions. | + +**Note on Region Constraints:** The crop region is automatically constrained to stay within the bounds of the input image. If the specified `x` or `y` coordinate is greater than the image's width or height, it will be set to the maximum valid position. The resulting crop width and height will be adjusted so the region does not exceed the image's edges. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `image` | IMAGE | The cropped section of the original input image. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/es.md b/comfyui_embedded_docs/docs/ImageCropV2/es.md new file mode 100644 index 000000000..3afd49e2b --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/es.md) + +El nodo Recorte de Imagen extrae una sección rectangular de una imagen de entrada. Se define la región a conservar especificando las coordenadas de su esquina superior izquierda y su ancho y alto. El nodo devuelve entonces la porción recortada de la imagen original. + +## Entradas + +| Parámetro | Tipo de Dato | Requerido | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Sí | N/A | La imagen de entrada que se va a recortar. | +| `crop_region` | BOUNDINGBOX | Sí | N/A | Define el área rectangular a extraer de la imagen. Se especifica mediante `x` (inicio horizontal), `y` (inicio vertical), `width` (ancho) y `height` (alto). Si la región definida se extiende más allá de los bordes de la imagen, se ajustará automáticamente para que quepa dentro de las dimensiones de la imagen. | + +**Nota sobre las Restricciones de la Región:** La región de recorte se restringe automáticamente para permanecer dentro de los límites de la imagen de entrada. Si la coordenada `x` o `y` especificada es mayor que el ancho o alto de la imagen, se establecerá en la posición válida máxima. El ancho y alto resultantes del recorte se ajustarán para que la región no exceda los bordes de la imagen. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `image` | IMAGE | La sección recortada de la imagen de entrada original. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/fr.md b/comfyui_embedded_docs/docs/ImageCropV2/fr.md new file mode 100644 index 000000000..e772f7d81 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/fr.md) + +Le nœud Image Crop extrait une section rectangulaire d'une image d'entrée. Vous définissez la région à conserver en spécifiant les coordonnées de son coin supérieur gauche ainsi que sa largeur et sa hauteur. Le nœud renvoie ensuite la partie recadrée de l'image originale. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Oui | N/A | L'image d'entrée à recadrer. | +| `crop_region` | BOUNDINGBOX | Oui | N/A | Définit la zone rectangulaire à extraire de l'image. Elle est spécifiée par `x` (début horizontal), `y` (début vertical), `width` (largeur) et `height` (hauteur). Si la région définie dépasse les bords de l'image, elle sera automatiquement ajustée pour tenir dans les dimensions de l'image. | + +**Note sur les contraintes de région :** La région de recadrage est automatiquement contrainte pour rester à l'intérieur des limites de l'image d'entrée. Si la coordonnée `x` ou `y` spécifiée est supérieure à la largeur ou à la hauteur de l'image, elle sera définie sur la position valide maximale. La largeur et la hauteur de recadrage résultantes seront ajustées afin que la région ne dépasse pas les bords de l'image. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `image` | IMAGE | La section recadrée de l'image d'entrée originale. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/ja.md b/comfyui_embedded_docs/docs/ImageCropV2/ja.md new file mode 100644 index 000000000..5441f87da --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/ja.md) + +Image Cropノードは、入力画像から矩形の領域を抽出します。保持する領域は、その左上隅の座標と幅および高さを指定することで定義します。このノードは、元の画像の切り抜かれた部分を返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | はい | N/A | 切り抜き対象の入力画像です。 | +| `crop_region` | BOUNDINGBOX | はい | N/A | 画像から抽出する矩形領域を定義します。`x`(水平方向の開始位置)、`y`(垂直方向の開始位置)、`width`(幅)、`height`(高さ)で指定されます。定義された領域が画像の境界を超える場合、画像の寸法内に収まるように自動的に調整されます。 | + +**領域制約に関する注意:** 切り抜き領域は、入力画像の境界内に収まるように自動的に制約されます。指定された`x`または`y`座標が画像の幅または高さを超える場合、有効な最大位置に設定されます。結果として得られる切り抜きの幅と高さは、領域が画像の端を超えないように調整されます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `image` | IMAGE | 元の入力画像から切り抜かれた部分です。 | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/ko.md b/comfyui_embedded_docs/docs/ImageCropV2/ko.md new file mode 100644 index 000000000..e66c98c4a --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/ko.md) + +Image Crop 노드는 입력 이미지에서 사각형 영역을 추출합니다. 유지할 영역을 왼쪽 상단 모서리 좌표와 너비 및 높이를 지정하여 정의합니다. 그런 다음 노드는 원본 이미지의 잘린 부분을 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 예 | N/A | 잘라낼 입력 이미지입니다. | +| `crop_region` | BOUNDINGBOX | 예 | N/A | 이미지에서 추출할 사각형 영역을 정의합니다. `x`(수평 시작점), `y`(수직 시작점), `width`(너비), `height`(높이)로 지정됩니다. 정의된 영역이 이미지 경계를 벗어나는 경우, 이미지 크기 내에 맞도록 자동으로 조정됩니다. | + +**영역 제약 사항 참고:** 잘라내기 영역은 입력 이미지의 경계 내에 유지되도록 자동으로 제한됩니다. 지정된 `x` 또는 `y` 좌표가 이미지의 너비나 높이보다 크면, 유효한 최대 위치로 설정됩니다. 결과적인 잘라내기 너비와 높이는 영역이 이미지 가장자리를 초과하지 않도록 조정됩니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `image` | IMAGE | 원본 입력 이미지의 잘라낸 부분입니다. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/pt-BR.md b/comfyui_embedded_docs/docs/ImageCropV2/pt-BR.md new file mode 100644 index 000000000..3adbbad78 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/pt-BR.md) + +O nó Image Crop extrai uma seção retangular de uma imagem de entrada. Você define a região a ser mantida especificando suas coordenadas do canto superior esquerdo, largura e altura. O nó então retorna a porção recortada da imagem original. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Sim | N/A | A imagem de entrada a ser recortada. | +| `crop_region` | BOUNDINGBOX | Sim | N/A | Define a área retangular a ser extraída da imagem. É especificada por `x` (início horizontal), `y` (início vertical), `width` (largura) e `height` (altura). Se a região definida se estender além das bordas da imagem, ela será automaticamente ajustada para caber dentro das dimensões da imagem. | + +**Nota sobre Restrições de Região:** A região de corte é automaticamente restringida para permanecer dentro dos limites da imagem de entrada. Se a coordenada `x` ou `y` especificada for maior que a largura ou altura da imagem, ela será definida para a posição válida máxima. A largura e altura resultantes do corte serão ajustadas para que a região não ultrapasse as bordas da imagem. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `image` | IMAGE | A seção recortada da imagem de entrada original. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/ru.md b/comfyui_embedded_docs/docs/ImageCropV2/ru.md new file mode 100644 index 000000000..828798a08 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/ru.md) + +Узел Image Crop извлекает прямоугольный участок из входного изображения. Вы определяете область для сохранения, указывая координаты её верхнего левого угла, ширину и высоту. Узел возвращает обрезанную часть исходного изображения. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Да | N/A | Входное изображение для обрезки. | +| `crop_region` | BOUNDINGBOX | Да | N/A | Определяет прямоугольную область для извлечения из изображения. Задаётся параметрами `x` (горизонтальное начало), `y` (вертикальное начало), `width` (ширина) и `height` (высота). Если определённая область выходит за границы изображения, она будет автоматически скорректирована, чтобы оставаться в пределах его размеров. | + +**Примечание об ограничениях области:** Область обрезки автоматически ограничивается, чтобы оставаться в пределах границ входного изображения. Если указанная координата `x` или `y` больше ширины или высоты изображения, она будет установлена на максимально допустимую позицию. Результирующие ширина и высота обрезки будут скорректированы так, чтобы область не выходила за края изображения. + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `image` | IMAGE | Обрезанный участок исходного входного изображения. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/tr.md b/comfyui_embedded_docs/docs/ImageCropV2/tr.md new file mode 100644 index 000000000..77ad4c11d --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/tr.md) + +Image Crop düğümü, bir giriş görüntüsünden dikdörtgen bir bölüm çıkarır. Tutulacak bölgeyi, sol üst köşe koordinatlarını ve genişlik ile yüksekliğini belirterek tanımlarsınız. Düğüm daha sonra orijinal görüntünün kırpılan kısmını döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | Evet | Yok | Kırpılacak giriş görüntüsü. | +| `crop_region` | BOUNDINGBOX | Evet | Yok | Görüntüden çıkarılacak dikdörtgen alanı tanımlar. `x` (yatay başlangıç), `y` (dikey başlangıç), `width` (genişlik) ve `height` (yükseklik) ile belirtilir. Tanımlanan bölge görüntünün sınırlarının ötesine uzanıyorsa, görüntü boyutlarına sığacak şekilde otomatik olarak ayarlanır. | + +**Bölge Kısıtlamaları Notu:** Kırpma bölgesi, giriş görüntüsünün sınırları içinde kalacak şekilde otomatik olarak kısıtlanır. Belirtilen `x` veya `y` koordinatı görüntünün genişliğinden veya yüksekliğinden büyükse, maksimum geçerli konuma ayarlanacaktır. Ortaya çıkan kırpma genişliği ve yüksekliği, bölgenin görüntü kenarlarını aşmaması için ayarlanır. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `image` | IMAGE | Orijinal giriş görüntüsünün kırpılmış bölümü. | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/zh-TW.md b/comfyui_embedded_docs/docs/ImageCropV2/zh-TW.md new file mode 100644 index 000000000..a2c3d9ed6 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/zh-TW.md) + +此節點從輸入圖像中擷取一個矩形區域。您可以透過指定區域的左上角座標及其寬度和高度來定義要保留的區域。節點隨後會返回原始圖像的裁剪部分。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 是 | N/A | 要進行裁剪的輸入圖像。 | +| `crop_region` | BOUNDINGBOX | 是 | N/A | 定義要從圖像中擷取的矩形區域。由 `x`(水平起始點)、`y`(垂直起始點)、`width`(寬度)和 `height`(高度)指定。如果定義的區域超出圖像邊界,它將被自動調整以適應圖像尺寸。 | + +**關於區域限制的說明:** 裁剪區域會自動被限制在輸入圖像的邊界內。如果指定的 `x` 或 `y` 座標大於圖像的寬度或高度,它將被設定為最大有效位置。最終的裁剪寬度和高度將被調整,以確保區域不超出圖像邊緣。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `image` | IMAGE | 原始輸入圖像的裁剪部分。 | diff --git a/comfyui_embedded_docs/docs/ImageCropV2/zh.md b/comfyui_embedded_docs/docs/ImageCropV2/zh.md new file mode 100644 index 000000000..69e11b379 --- /dev/null +++ b/comfyui_embedded_docs/docs/ImageCropV2/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ImageCropV2/zh.md) + +图像裁剪节点从输入图像中提取一个矩形区域。您可以通过指定其左上角坐标以及宽度和高度来定义要保留的区域。该节点随后会返回原始图像的裁剪部分。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `image` | IMAGE | 是 | 不适用 | 待裁剪的输入图像。 | +| `crop_region` | BOUNDINGBOX | 是 | 不适用 | 定义要从图像中提取的矩形区域。它由 `x`(水平起始位置)、`y`(垂直起始位置)、`width`(宽度)和 `height`(高度)指定。如果定义的区域超出了图像的边界,它将自动调整以适应图像的尺寸。 | + +**关于区域约束的说明:** 裁剪区域会自动被约束在输入图像的边界内。如果指定的 `x` 或 `y` 坐标大于图像的宽度或高度,它将被设置为最大有效位置。最终的裁剪宽度和高度将被调整,以确保区域不超过图像的边缘。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `image` | IMAGE | 原始输入图像的裁剪部分。 | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/ar.md b/comfyui_embedded_docs/docs/ImageDeduplication/ar.md index cba59f44f..ba53d67de 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/ar.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `images` | IMAGE | قائمة الصور المصفاة بعد إزالة التكرارات. | \ No newline at end of file +| `images` | IMAGE | قائمة الصور المصفاة بعد إزالة التكرارات. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/en.md b/comfyui_embedded_docs/docs/ImageDeduplication/en.md index 2b23b4735..d6f32df34 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/en.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/en.md @@ -13,4 +13,4 @@ This node removes duplicate or very similar images from a batch. It works by cre | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `images` | IMAGE | The filtered list of images with duplicates removed. | \ No newline at end of file +| `images` | IMAGE | The filtered list of images with duplicates removed. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/es.md b/comfyui_embedded_docs/docs/ImageDeduplication/es.md index 7a59c9659..02a826ef5 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/es.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/es.md @@ -13,4 +13,4 @@ Este nodo elimina imágenes duplicadas o muy similares de un lote. Funciona crea | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `images` | IMAGE | La lista filtrada de imágenes con los duplicados eliminados. | \ No newline at end of file +| `images` | IMAGE | La lista filtrada de imágenes con los duplicados eliminados. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/fr.md b/comfyui_embedded_docs/docs/ImageDeduplication/fr.md index b15c2bf27..91d5c71ed 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/fr.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/fr.md @@ -13,4 +13,4 @@ Ce nœud supprime les images en double ou très similaires d'un lot. Il fonction | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `images` | IMAGE | La liste filtrée d'images avec les doublons supprimés. | \ No newline at end of file +| `images` | IMAGE | La liste filtrée d'images avec les doublons supprimés. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/ja.md b/comfyui_embedded_docs/docs/ImageDeduplication/ja.md index 658d435d6..04b2f3563 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/ja.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/ja.md @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `images` | IMAGE | 重複が除去された、フィルタリングされた画像のリストです。 | \ No newline at end of file +| `images` | IMAGE | 重複が除去された、フィルタリングされた画像のリストです。 | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/ko.md b/comfyui_embedded_docs/docs/ImageDeduplication/ko.md index cb4a8592f..a4d1345ee 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/ko.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `images` | IMAGE | 중복이 제거된 필터링된 이미지 목록입니다. | \ No newline at end of file +| `images` | IMAGE | 중복이 제거된 필터링된 이미지 목록입니다. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/pt-BR.md b/comfyui_embedded_docs/docs/ImageDeduplication/pt-BR.md index 06018c966..d0aa58dc8 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/pt-BR.md @@ -13,4 +13,4 @@ Este nó remove imagens duplicadas ou muito similares de um lote. Ele funciona c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `images` | IMAGE | A lista filtrada de imagens com os duplicados removidos. | \ No newline at end of file +| `images` | IMAGE | A lista filtrada de imagens com os duplicados removidos. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/ru.md b/comfyui_embedded_docs/docs/ImageDeduplication/ru.md index 8cca57ddf..70ddc0e5d 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/ru.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `images` | IMAGE | Отфильтрованный список изображений с удаленными дубликатами. | \ No newline at end of file +| `images` | IMAGE | Отфильтрованный список изображений с удаленными дубликатами. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/tr.md b/comfyui_embedded_docs/docs/ImageDeduplication/tr.md index 032e21ea4..9cfeeae66 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/tr.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/tr.md @@ -13,4 +13,4 @@ Bu düğüm, bir grup görselden kopya veya çok benzer görselleri kaldırır. | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `images` | IMAGE | Kopyaları kaldırılmış, filtrelenmiş görsel listesi. | \ No newline at end of file +| `images` | IMAGE | Kopyaları kaldırılmış, filtrelenmiş görsel listesi. | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/zh-TW.md b/comfyui_embedded_docs/docs/ImageDeduplication/zh-TW.md index a2436ceb8..c63b637b5 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `images` | IMAGE | 已移除重複圖像的過濾後圖像清單。 | \ No newline at end of file +| `images` | IMAGE | 已移除重複圖像的過濾後圖像清單。 | diff --git a/comfyui_embedded_docs/docs/ImageDeduplication/zh.md b/comfyui_embedded_docs/docs/ImageDeduplication/zh.md index 91871aeaf..677b10711 100644 --- a/comfyui_embedded_docs/docs/ImageDeduplication/zh.md +++ b/comfyui_embedded_docs/docs/ImageDeduplication/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 已移除重复项后的过滤图像列表。 | \ No newline at end of file +| `images` | IMAGE | 已移除重复项后的过滤图像列表。 | diff --git a/comfyui_embedded_docs/docs/ImageFlip/ar.md b/comfyui_embedded_docs/docs/ImageFlip/ar.md index 58f6a1679..130abdca0 100644 --- a/comfyui_embedded_docs/docs/ImageFlip/ar.md +++ b/comfyui_embedded_docs/docs/ImageFlip/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة المقلوبة الناتجة | \ No newline at end of file +| `image` | IMAGE | الصورة المقلوبة الناتجة | diff --git a/comfyui_embedded_docs/docs/ImageFlip/pt-BR.md b/comfyui_embedded_docs/docs/ImageFlip/pt-BR.md index bac46523d..c0c036f33 100644 --- a/comfyui_embedded_docs/docs/ImageFlip/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageFlip/pt-BR.md @@ -13,4 +13,4 @@ O nó ImageFlip inverte imagens ao longo de diferentes eixos. Ele pode inverter | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída invertida | \ No newline at end of file +| `image` | IMAGE | A imagem de saída invertida | diff --git a/comfyui_embedded_docs/docs/ImageFlip/tr.md b/comfyui_embedded_docs/docs/ImageFlip/tr.md index 062ad6cce..2ffc6113d 100644 --- a/comfyui_embedded_docs/docs/ImageFlip/tr.md +++ b/comfyui_embedded_docs/docs/ImageFlip/tr.md @@ -13,4 +13,4 @@ ImageFlip düğümü, görüntüleri farklı eksenler boyunca çevirir. Görünt | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Çevrilmiş çıkış görüntüsü | \ No newline at end of file +| `image` | IMAGE | Çevrilmiş çıkış görüntüsü | diff --git a/comfyui_embedded_docs/docs/ImageFlip/zh-TW.md b/comfyui_embedded_docs/docs/ImageFlip/zh-TW.md index ae1d3df70..7fb4550c2 100644 --- a/comfyui_embedded_docs/docs/ImageFlip/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageFlip/zh-TW.md @@ -13,4 +13,4 @@ ImageFlip 節點可沿不同軸線翻轉圖像。它能沿 x 軸垂直翻轉或 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `image` | IMAGE | 經過翻轉處理後的輸出圖像 | \ No newline at end of file +| `image` | IMAGE | 經過翻轉處理後的輸出圖像 | diff --git a/comfyui_embedded_docs/docs/ImageFromBatch/ar.md b/comfyui_embedded_docs/docs/ImageFromBatch/ar.md index b48ebb553..a1ebe802a 100644 --- a/comfyui_embedded_docs/docs/ImageFromBatch/ar.md +++ b/comfyui_embedded_docs/docs/ImageFromBatch/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-----------------------------------------------------------------------------------------------| -| `الصورة` | `IMAGE` | الجزء المستخرج من الصور من المجموعة المحددة. هذا المخرج يمثل مجموعة فرعية من المجموعة الأصلية، يتم تحديدها بواسطة معاملات الفهرس البدائي والطول. | \ No newline at end of file +| `الصورة` | `IMAGE` | الجزء المستخرج من الصور من المجموعة المحددة. هذا المخرج يمثل مجموعة فرعية من المجموعة الأصلية، يتم تحديدها بواسطة معاملات الفهرس البدائي والطول. | diff --git a/comfyui_embedded_docs/docs/ImageFromBatch/pt-BR.md b/comfyui_embedded_docs/docs/ImageFromBatch/pt-BR.md index c385a4cd7..da831de45 100644 --- a/comfyui_embedded_docs/docs/ImageFromBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageFromBatch/pt-BR.md @@ -14,4 +14,4 @@ O nó `ImageFromBatch` é projetado para extrair um segmento específico de imag | Campo | Tipo de Dados | Descrição | |-------|-------------|-----------------------------------------------------------------------------------------------| -| `image` | `IMAGE` | O segmento de imagens extraído do lote especificado. Esta saída representa um subconjunto do lote original, determinado pelos parâmetros `batch_index` e `length`. | \ No newline at end of file +| `image` | `IMAGE` | O segmento de imagens extraído do lote especificado. Esta saída representa um subconjunto do lote original, determinado pelos parâmetros `batch_index` e `length`. | diff --git a/comfyui_embedded_docs/docs/ImageFromBatch/tr.md b/comfyui_embedded_docs/docs/ImageFromBatch/tr.md index dbdeaade2..1803010b6 100644 --- a/comfyui_embedded_docs/docs/ImageFromBatch/tr.md +++ b/comfyui_embedded_docs/docs/ImageFromBatch/tr.md @@ -14,4 +14,4 @@ | Alan | Veri Türü | Açıklama | |-------|-------------|-----------------------------------------------------------------------------------------------| -| `görüntü` | `IMAGE` | Belirtilen gruptan çıkarılan resim bölümü. Bu çıktı, orijinal grubun `toplu_indeks` ve `uzunluk` parametreleri tarafından belirlenen bir alt kümesini temsil eder. | \ No newline at end of file +| `görüntü` | `IMAGE` | Belirtilen gruptan çıkarılan resim bölümü. Bu çıktı, orijinal grubun `toplu_indeks` ve `uzunluk` parametreleri tarafından belirlenen bir alt kümesini temsil eder. | diff --git a/comfyui_embedded_docs/docs/ImageFromBatch/zh-TW.md b/comfyui_embedded_docs/docs/ImageFromBatch/zh-TW.md index e01b9ad93..934ca60a8 100644 --- a/comfyui_embedded_docs/docs/ImageFromBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageFromBatch/zh-TW.md @@ -16,4 +16,4 @@ | 欄位 | 資料類型 | 描述 | |------|----------|------| -| `影像` | `IMAGE` | 從指定批次中提取的圖像區段。此輸出代表原始批次的一個子集,由 batch_index 和 length 參數決定。 | \ No newline at end of file +| `影像` | `IMAGE` | 從指定批次中提取的圖像區段。此輸出代表原始批次的一個子集,由 batch_index 和 length 參數決定。 | diff --git a/comfyui_embedded_docs/docs/ImageGrid/ar.md b/comfyui_embedded_docs/docs/ImageGrid/ar.md index 099fb7e7f..1fc4b0ad2 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/ar.md +++ b/comfyui_embedded_docs/docs/ImageGrid/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | صورة المخرج الوحيدة التي تحتوي على جميع صور الإدخال مرتبة في شبكة. | \ No newline at end of file +| `image` | IMAGE | صورة المخرج الوحيدة التي تحتوي على جميع صور الإدخال مرتبة في شبكة. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/en.md b/comfyui_embedded_docs/docs/ImageGrid/en.md index 9a10ee585..e8002d675 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/en.md +++ b/comfyui_embedded_docs/docs/ImageGrid/en.md @@ -16,4 +16,4 @@ The Image Grid node combines multiple images into a single, organized grid or co | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The single output image containing all the input images arranged in a grid. | \ No newline at end of file +| `image` | IMAGE | The single output image containing all the input images arranged in a grid. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/es.md b/comfyui_embedded_docs/docs/ImageGrid/es.md index 73a3b4e24..87d06d27f 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/es.md +++ b/comfyui_embedded_docs/docs/ImageGrid/es.md @@ -16,4 +16,4 @@ El nodo Image Grid combina múltiples imágenes en una sola cuadrícula o collag | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La única imagen de salida que contiene todas las imágenes de entrada organizadas en una cuadrícula. | \ No newline at end of file +| `image` | IMAGE | La única imagen de salida que contiene todas las imágenes de entrada organizadas en una cuadrícula. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/fr.md b/comfyui_embedded_docs/docs/ImageGrid/fr.md index 92a66dd6c..4e03945e8 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/fr.md +++ b/comfyui_embedded_docs/docs/ImageGrid/fr.md @@ -16,4 +16,4 @@ Le nœud Image Grid combine plusieurs images en une seule image organisée sous | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image de sortie unique contenant toutes les images d'entrée disposées en grille. | \ No newline at end of file +| `image` | IMAGE | L'image de sortie unique contenant toutes les images d'entrée disposées en grille. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/ja.md b/comfyui_embedded_docs/docs/ImageGrid/ja.md index ca06a2164..e3742ed82 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/ja.md +++ b/comfyui_embedded_docs/docs/ImageGrid/ja.md @@ -16,4 +16,4 @@ Image Gridノードは、複数の画像を1つの整理されたグリッドま | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | グリッドに配置された全ての入力画像を含む単一の出力画像。 | \ No newline at end of file +| `image` | IMAGE | グリッドに配置された全ての入力画像を含む単一の出力画像。 | diff --git a/comfyui_embedded_docs/docs/ImageGrid/ko.md b/comfyui_embedded_docs/docs/ImageGrid/ko.md index a9b80b122..09bcf6dfe 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/ko.md +++ b/comfyui_embedded_docs/docs/ImageGrid/ko.md @@ -16,4 +16,4 @@ Image Grid 노드는 여러 이미지를 하나의 정리된 격자 또는 콜 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 모든 입력 이미지가 격자 형태로 배열된 단일 출력 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 모든 입력 이미지가 격자 형태로 배열된 단일 출력 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/pt-BR.md b/comfyui_embedded_docs/docs/ImageGrid/pt-BR.md index e2fbbbb1b..21cb296dc 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageGrid/pt-BR.md @@ -16,4 +16,4 @@ O nó Image Grid combina várias imagens em uma única grade ou colagem organiza | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída única contendo todas as imagens de entrada organizadas em uma grade. | \ No newline at end of file +| `image` | IMAGE | A imagem de saída única contendo todas as imagens de entrada organizadas em uma grade. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/ru.md b/comfyui_embedded_docs/docs/ImageGrid/ru.md index 808da4142..a1c1c266e 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/ru.md +++ b/comfyui_embedded_docs/docs/ImageGrid/ru.md @@ -16,4 +16,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Единое выходное изображение, содержащее все входные изображения, расположенные в виде сетки. | \ No newline at end of file +| `image` | IMAGE | Единое выходное изображение, содержащее все входные изображения, расположенные в виде сетки. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/tr.md b/comfyui_embedded_docs/docs/ImageGrid/tr.md index d5538818a..f0941ea62 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/tr.md +++ b/comfyui_embedded_docs/docs/ImageGrid/tr.md @@ -16,4 +16,4 @@ Image Grid düğümü, birden fazla görüntüyü tek bir düzenli ızgara veya | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Tüm girdi görüntülerinin bir ızgarada düzenlendiği tek çıktı görüntüsü. | \ No newline at end of file +| `image` | IMAGE | Tüm girdi görüntülerinin bir ızgarada düzenlendiği tek çıktı görüntüsü. | diff --git a/comfyui_embedded_docs/docs/ImageGrid/zh-TW.md b/comfyui_embedded_docs/docs/ImageGrid/zh-TW.md index 6fbc4e21c..75df81a4d 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageGrid/zh-TW.md @@ -16,4 +16,4 @@ Image Grid 節點可將多張圖片組合成單一、有組織的網格或拼貼 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 包含所有輸入圖片、以網格排列的單一輸出圖片。 | \ No newline at end of file +| `image` | IMAGE | 包含所有輸入圖片、以網格排列的單一輸出圖片。 | diff --git a/comfyui_embedded_docs/docs/ImageGrid/zh.md b/comfyui_embedded_docs/docs/ImageGrid/zh.md index d5c17d87e..6daa41a80 100644 --- a/comfyui_embedded_docs/docs/ImageGrid/zh.md +++ b/comfyui_embedded_docs/docs/ImageGrid/zh.md @@ -16,4 +16,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 包含所有输入图像并按网格排列的单一输出图像。 | \ No newline at end of file +| `image` | IMAGE | 包含所有输入图像并按网格排列的单一输出图像。 | diff --git a/comfyui_embedded_docs/docs/ImageInvert/ar.md b/comfyui_embedded_docs/docs/ImageInvert/ar.md index d01b26a88..446b62ac8 100644 --- a/comfyui_embedded_docs/docs/ImageInvert/ar.md +++ b/comfyui_embedded_docs/docs/ImageInvert/ar.md @@ -12,4 +12,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `الصورة` | `IMAGE` | المخرجات هي نسخة معكوسة من الصورة المدخلة، حيث تم تحويل قيمة لون كل بكسل إلى لونه المكمل. | \ No newline at end of file +| `الصورة` | `IMAGE` | المخرجات هي نسخة معكوسة من الصورة المدخلة، حيث تم تحويل قيمة لون كل بكسل إلى لونه المكمل. | diff --git a/comfyui_embedded_docs/docs/ImageInvert/pt-BR.md b/comfyui_embedded_docs/docs/ImageInvert/pt-BR.md index aa155f27c..cf0163d8b 100644 --- a/comfyui_embedded_docs/docs/ImageInvert/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageInvert/pt-BR.md @@ -12,4 +12,4 @@ O nó `ImageInvert` é projetado para inverter as cores de uma imagem, transform | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A saída é uma versão invertida da imagem de entrada, com o valor de cor de cada pixel transformado em sua cor complementar. | \ No newline at end of file +| `image` | `IMAGE` | A saída é uma versão invertida da imagem de entrada, com o valor de cor de cada pixel transformado em sua cor complementar. | diff --git a/comfyui_embedded_docs/docs/ImageInvert/tr.md b/comfyui_embedded_docs/docs/ImageInvert/tr.md index 2255638d3..1130ed037 100644 --- a/comfyui_embedded_docs/docs/ImageInvert/tr.md +++ b/comfyui_embedded_docs/docs/ImageInvert/tr.md @@ -12,4 +12,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `görüntü` | `IMAGE` | Çıktı, giriş görüntüsünün ters çevrilmiş halidir; her pikselin renk değeri tamamlayıcı rengine dönüştürülmüştür. | \ No newline at end of file +| `görüntü` | `IMAGE` | Çıktı, giriş görüntüsünün ters çevrilmiş halidir; her pikselin renk değeri tamamlayıcı rengine dönüştürülmüştür. | diff --git a/comfyui_embedded_docs/docs/ImageInvert/zh-TW.md b/comfyui_embedded_docs/docs/ImageInvert/zh-TW.md index 49c6d364e..71c9d62e8 100644 --- a/comfyui_embedded_docs/docs/ImageInvert/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageInvert/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `影像` | `IMAGE` | 輸出為輸入影像的反轉版本,其中每個像素的色彩值均已轉換為其互補色。 | \ No newline at end of file +| `影像` | `IMAGE` | 輸出為輸入影像的反轉版本,其中每個像素的色彩值均已轉換為其互補色。 | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/ar.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/ar.md index d653c4a97..09d218313 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/ar.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/ar.md @@ -16,4 +16,4 @@ |-----------|-------------|-----------------------------------------------------------------------------------------------| | `model` | MODEL | يُرجع النموذج الرئيسي المحمل من نقطة التفتيش، والمكون لمعالجة الصور ضمن سياقات توليد الفيديو. | | `clip_vision` | `CLIP_VISION` | يوفر مكون CLIP الخاص بالرؤية من نقطة التفتيش، والمصمم لفهم الصور واستخراج الميزات منها. | -| `vae` | VAE | يقدم مكون المُشفر التلقائي (VAE)، وهو أساسي لمهام معالجة الصور وتوليدها. | \ No newline at end of file +| `vae` | VAE | يقدم مكون المُشفر التلقائي (VAE)، وهو أساسي لمهام معالجة الصور وتوليدها. | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/pt-BR.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/pt-BR.md index 46aff7028..f52148656 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/pt-BR.md @@ -16,4 +16,4 @@ Este nó é especializado em carregar checkpoints especificamente para modelos b |-----------|-------------|-----------------------------------------------------------------------------------------------| | `model` | MODEL | Retorna o modelo principal carregado do checkpoint, configurado para processamento de imagem em contextos de geração de vídeo. | | `clip_vision` | `CLIP_VISION` | Fornece o componente de visão CLIP do checkpoint, adaptado para compreensão de imagem e extração de características. | -| `vae` | VAE | Fornece o componente de Autoencoder Variacional (VAE), essencial para tarefas de manipulação e geração de imagem. | \ No newline at end of file +| `vae` | VAE | Fornece o componente de Autoencoder Variacional (VAE), essencial para tarefas de manipulação e geração de imagem. | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/tr.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/tr.md index 3b4d5678e..4e54a9a7c 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/tr.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/tr.md @@ -16,4 +16,4 @@ Bu düğüm, video oluşturma iş akışları içinde özellikle görüntü taba |-----------|-------------|-----------------------------------------------------------------------------------------------| | `model` | MODEL | Kontrol noktasından yüklenen, video oluşturma bağlamlarında görüntü işleme için yapılandırılmış ana modeli döndürür. | | `clip_vision` | `CLIP_VISION` | Kontrol noktasından alınan, görüntü anlama ve özellik çıkarımı için uyarlanmış CLIP görüş bileşenini sağlar. | -| `vae` | VAE | Görüntü manipülasyonu ve oluşturma görevleri için gerekli olan Varyasyonel Otokodlayıcı (VAE) bileşenini sağlar. | \ No newline at end of file +| `vae` | VAE | Görüntü manipülasyonu ve oluşturma görevleri için gerekli olan Varyasyonel Otokodlayıcı (VAE) bileşenini sağlar. | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/zh-TW.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/zh-TW.md index f5ab7fa93..5d7bddc1f 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointLoader/zh-TW.md @@ -16,4 +16,4 @@ |------|-----------|------| | `model` | MODEL | 傳回從檢查點載入的主要模型,配置用於影片生成情境中的影像處理。 | | `clip_vision` | CLIP_VISION | 提供來自檢查點的 CLIP 視覺元件,專為影像理解和特徵提取而設計。 | -| `vae` | VAE | 提供變分自編碼器(VAE)元件,對於影像操作和生成任務至關重要。 | \ No newline at end of file +| `vae` | VAE | 提供變分自編碼器(VAE)元件,對於影像操作和生成任務至關重要。 | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/ar.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/ar.md index 47c2af3f1..bf62d3b61 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/ar.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/ar.md @@ -17,4 +17,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| - | - | هذه العقدة لا تُرجع أي مخرجات | \ No newline at end of file +| - | - | هذه العقدة لا تُرجع أي مخرجات | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/pt-BR.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/pt-BR.md index cd19e75d6..6daaa4d3b 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/pt-BR.md @@ -17,4 +17,4 @@ O nó ImageOnlyCheckpointSave salva um arquivo de checkpoint contendo um modelo, | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| - | - | Este nó não retorna nenhuma saída | \ No newline at end of file +| - | - | Este nó não retorna nenhuma saída | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/tr.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/tr.md index f076d270d..d8668871e 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/tr.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/tr.md @@ -17,4 +17,4 @@ ImageOnlyCheckpointSave düğümü, bir model, CLIP görüntü kodlayıcı ve VA | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| - | - | Bu düğüm herhangi bir çıktı döndürmez | \ No newline at end of file +| - | - | Bu düğüm herhangi bir çıktı döndürmez | diff --git a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/zh-TW.md b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/zh-TW.md index 95b13455b..20ce12ead 100644 --- a/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageOnlyCheckpointSave/zh-TW.md @@ -17,4 +17,4 @@ ImageOnlyCheckpointSave 節點會儲存一個包含模型、CLIP 視覺編碼器 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| - | - | 此節點不返回任何輸出 | \ No newline at end of file +| - | - | 此節點不返回任何輸出 | diff --git a/comfyui_embedded_docs/docs/ImagePadForOutpaint/ar.md b/comfyui_embedded_docs/docs/ImagePadForOutpaint/ar.md index fa8b5451c..7173ac5f0 100644 --- a/comfyui_embedded_docs/docs/ImagePadForOutpaint/ar.md +++ b/comfyui_embedded_docs/docs/ImagePadForOutpaint/ar.md @@ -18,4 +18,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| | `الصورة` | `IMAGE` | مخرج 'image' يمثل الصورة المحشوة، الجاهزة لعملية التمديد الخارجي. | -| `mask` | `MASK` | مخرج 'mask' يشير إلى مناطق الصورة الأصلية والحشوة المضافة، وهو مفيد لتوجيه خوارزميات التمديد الخارجي. | \ No newline at end of file +| `mask` | `MASK` | مخرج 'mask' يشير إلى مناطق الصورة الأصلية والحشوة المضافة، وهو مفيد لتوجيه خوارزميات التمديد الخارجي. | diff --git a/comfyui_embedded_docs/docs/ImagePadForOutpaint/pt-BR.md b/comfyui_embedded_docs/docs/ImagePadForOutpaint/pt-BR.md index ca100b659..bbeae171c 100644 --- a/comfyui_embedded_docs/docs/ImagePadForOutpaint/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImagePadForOutpaint/pt-BR.md @@ -18,4 +18,4 @@ Este nó é projetado para preparar imagens para o processo de outpainting adici | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| | `image` | `IMAGE` | A 'image' de saída representa a imagem com preenchimento, pronta para o processo de outpainting. | -| `mask` | `MASK` | A 'mask' de saída indica as áreas da imagem original e do preenchimento adicionado, útil para orientar os algoritmos de outpainting. | \ No newline at end of file +| `mask` | `MASK` | A 'mask' de saída indica as áreas da imagem original e do preenchimento adicionado, útil para orientar os algoritmos de outpainting. | diff --git a/comfyui_embedded_docs/docs/ImagePadForOutpaint/tr.md b/comfyui_embedded_docs/docs/ImagePadForOutpaint/tr.md index 4f1e818a9..1aca7d890 100644 --- a/comfyui_embedded_docs/docs/ImagePadForOutpaint/tr.md +++ b/comfyui_embedded_docs/docs/ImagePadForOutpaint/tr.md @@ -18,4 +18,4 @@ Bu düğüm, görüntülerin etrafına dolgu ekleyerek dışa boyama süreci iç | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| | `görüntü` | `IMAGE` | Çıktı 'image', dışa boyama süreci için hazır olan dolgulu görüntüyü temsil eder. | -| `mask` | `MASK` | Çıktı 'mask', orijinal görüntünün ve eklenen dolgunun alanlarını gösterir ve dışa boyama algoritmalarını yönlendirmek için kullanışlıdır. | \ No newline at end of file +| `mask` | `MASK` | Çıktı 'mask', orijinal görüntünün ve eklenen dolgunun alanlarını gösterir ve dışa boyama algoritmalarını yönlendirmek için kullanışlıdır. | diff --git a/comfyui_embedded_docs/docs/ImagePadForOutpaint/zh-TW.md b/comfyui_embedded_docs/docs/ImagePadForOutpaint/zh-TW.md index 6cbc825e2..5ff12049f 100644 --- a/comfyui_embedded_docs/docs/ImagePadForOutpaint/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImagePadForOutpaint/zh-TW.md @@ -20,4 +20,4 @@ | 參數 | 資料類型 | 描述 | |-----------|-------------|-------------| | `影像` | `IMAGE` | 輸出的 'image' 代表已填充的圖像,準備好用於外繪製過程。 | -| `mask` | `MASK` | 輸出的 'mask' 標示了原始圖像和添加填充區域的範圍,有助於引導外繪製演算法。 | \ No newline at end of file +| `mask` | `MASK` | 輸出的 'mask' 標示了原始圖像和添加填充區域的範圍,有助於引導外繪製演算法。 | diff --git a/comfyui_embedded_docs/docs/ImageQuantize/ar.md b/comfyui_embedded_docs/docs/ImageQuantize/ar.md index 02a5ba610..0d94ab7a4 100644 --- a/comfyui_embedded_docs/docs/ImageQuantize/ar.md +++ b/comfyui_embedded_docs/docs/ImageQuantize/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-------------------------------------------------------------------------------| -| `الصورة`| `IMAGE` | النسخة المُقلَّلة الألوان من الصورة المدخلة، ذات تعقيد لوني مخفض ومشتتة اختيارياً للحفاظ على الجودة البصرية. | \ No newline at end of file +| `الصورة`| `IMAGE` | النسخة المُقلَّلة الألوان من الصورة المدخلة، ذات تعقيد لوني مخفض ومشتتة اختيارياً للحفاظ على الجودة البصرية. | diff --git a/comfyui_embedded_docs/docs/ImageQuantize/pt-BR.md b/comfyui_embedded_docs/docs/ImageQuantize/pt-BR.md index c07857b78..a69e771b3 100644 --- a/comfyui_embedded_docs/docs/ImageQuantize/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageQuantize/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageQuantize é projetado para reduzir o número de cores em uma imagem p | Campo | Tipo de Dados | Descrição | |-------|-------------|-------------------------------------------------------------------------------| -| `image`| `IMAGE` | A versão quantizada da imagem de entrada, com complexidade de cores reduzida e opcionalmente com *dithering* aplicado para manter a qualidade visual. | \ No newline at end of file +| `image`| `IMAGE` | A versão quantizada da imagem de entrada, com complexidade de cores reduzida e opcionalmente com *dithering* aplicado para manter a qualidade visual. | diff --git a/comfyui_embedded_docs/docs/ImageQuantize/tr.md b/comfyui_embedded_docs/docs/ImageQuantize/tr.md index 38010014a..62b676df8 100644 --- a/comfyui_embedded_docs/docs/ImageQuantize/tr.md +++ b/comfyui_embedded_docs/docs/ImageQuantize/tr.md @@ -14,4 +14,4 @@ ImageQuantize düğümü, bir görüntüdeki renk sayısını belirtilen sayıya | Alan | Veri Türü | Açıklama | |--------|-------------|-------------------------------------------------------------------------------| -| `görüntü`| `IMAGE` | Girdi görüntüsünün nicemlenmiş versiyonu; azaltılmış renk karmaşıklığına sahiptir ve isteğe bağlı olarak görsel kaliteyi korumak için renk taklidi uygulanmıştır. | \ No newline at end of file +| `görüntü`| `IMAGE` | Girdi görüntüsünün nicemlenmiş versiyonu; azaltılmış renk karmaşıklığına sahiptir ve isteğe bağlı olarak görsel kaliteyi korumak için renk taklidi uygulanmıştır. | diff --git a/comfyui_embedded_docs/docs/ImageQuantize/zh-TW.md b/comfyui_embedded_docs/docs/ImageQuantize/zh-TW.md index 519eb0964..2864899d2 100644 --- a/comfyui_embedded_docs/docs/ImageQuantize/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageQuantize/zh-TW.md @@ -16,4 +16,4 @@ ImageQuantize 節點旨在將影像中的顏色數量減少到指定數量,並 | 欄位 | 資料類型 | 描述 | |------|-----------|-------------| -| `影像` | `IMAGE` | 輸入影像的量化版本,具有降低的色彩複雜度,並可選擇性地應用抖動以維持視覺品質。 | \ No newline at end of file +| `影像` | `IMAGE` | 輸入影像的量化版本,具有降低的色彩複雜度,並可選擇性地應用抖動以維持視覺品質。 | diff --git a/comfyui_embedded_docs/docs/ImageRGBToYUV/ar.md b/comfyui_embedded_docs/docs/ImageRGBToYUV/ar.md index a3d906237..bdac67779 100644 --- a/comfyui_embedded_docs/docs/ImageRGBToYUV/ar.md +++ b/comfyui_embedded_docs/docs/ImageRGBToYUV/ar.md @@ -14,4 +14,4 @@ |------------|---------------|--------| | `U` | IMAGE | مكون الإضاءة (السطوع) في مساحة ألوان YUV | | `V` | IMAGE | مكون الإسقاط الأزرق في مساحة ألوان YUV | -| `V` | IMAGE | مكون الإسقاط الأحمر في مساحة ألوان YUV | \ No newline at end of file +| `V` | IMAGE | مكون الإسقاط الأحمر في مساحة ألوان YUV | diff --git a/comfyui_embedded_docs/docs/ImageRGBToYUV/pt-BR.md b/comfyui_embedded_docs/docs/ImageRGBToYUV/pt-BR.md index 520cea3ed..88e02cc27 100644 --- a/comfyui_embedded_docs/docs/ImageRGBToYUV/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageRGBToYUV/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageRGBToYUV converte imagens coloridas RGB para o espaço de cores YUV. |-------------|-----------|-------------| | `Y` | IMAGE | O componente de luminância (brilho) do espaço de cores YUV | | `U` | IMAGE | O componente de projeção azul do espaço de cores YUV | -| `V` | IMAGE | O componente de projeção vermelha do espaço de cores YUV | \ No newline at end of file +| `V` | IMAGE | O componente de projeção vermelha do espaço de cores YUV | diff --git a/comfyui_embedded_docs/docs/ImageRGBToYUV/tr.md b/comfyui_embedded_docs/docs/ImageRGBToYUV/tr.md index 45cfe9ed4..1629b6dbf 100644 --- a/comfyui_embedded_docs/docs/ImageRGBToYUV/tr.md +++ b/comfyui_embedded_docs/docs/ImageRGBToYUV/tr.md @@ -14,4 +14,4 @@ ImageRGBToYUV düğümü, RGB renkli görüntüleri YUV renk uzayına dönüşt |-------------|-----------|-------------| | `U` | IMAGE | YUV renk uzayının parlaklık bileşeni | | `V` | IMAGE | YUV renk uzayının mavi çıkıntı bileşeni | -| `V` | IMAGE | YUV renk uzayının kırmızı çıkıntı bileşeni | \ No newline at end of file +| `V` | IMAGE | YUV renk uzayının kırmızı çıkıntı bileşeni | diff --git a/comfyui_embedded_docs/docs/ImageRGBToYUV/zh-TW.md b/comfyui_embedded_docs/docs/ImageRGBToYUV/zh-TW.md index f990434fa..268bb9718 100644 --- a/comfyui_embedded_docs/docs/ImageRGBToYUV/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageRGBToYUV/zh-TW.md @@ -14,4 +14,4 @@ ImageRGBToYUV 節點將 RGB 彩色影像轉換為 YUV 色彩空間。它接收 R |-------------|-----------|-------------| | `U` | IMAGE | YUV 色彩空間中的亮度分量 | | `V` | IMAGE | YUV 色彩空間中的藍色投影分量 | -| `V` | IMAGE | YUV 色彩空間中的紅色投影分量 | \ No newline at end of file +| `V` | IMAGE | YUV 色彩空間中的紅色投影分量 | diff --git a/comfyui_embedded_docs/docs/ImageRotate/ar.md b/comfyui_embedded_docs/docs/ImageRotate/ar.md index 1494eb7b7..a67bf4c5a 100644 --- a/comfyui_embedded_docs/docs/ImageRotate/ar.md +++ b/comfyui_embedded_docs/docs/ImageRotate/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `image` | IMAGE | الصورة المخرجة بعد التدوير | \ No newline at end of file +| `image` | IMAGE | الصورة المخرجة بعد التدوير | diff --git a/comfyui_embedded_docs/docs/ImageRotate/pt-BR.md b/comfyui_embedded_docs/docs/ImageRotate/pt-BR.md index bd3fcc06a..8a127fe8a 100644 --- a/comfyui_embedded_docs/docs/ImageRotate/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageRotate/pt-BR.md @@ -13,4 +13,4 @@ O nó ImageRotate gira uma imagem de entrada por ângulos especificados. Ele sup | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída rotacionada | \ No newline at end of file +| `image` | IMAGE | A imagem de saída rotacionada | diff --git a/comfyui_embedded_docs/docs/ImageRotate/tr.md b/comfyui_embedded_docs/docs/ImageRotate/tr.md index 010cd79ae..2de9ca64d 100644 --- a/comfyui_embedded_docs/docs/ImageRotate/tr.md +++ b/comfyui_embedded_docs/docs/ImageRotate/tr.md @@ -13,4 +13,4 @@ ImageRotate düğümü, bir giriş görüntüsünü belirtilen açılarla dönd | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Döndürülmüş çıkış görüntüsü | \ No newline at end of file +| `image` | IMAGE | Döndürülmüş çıkış görüntüsü | diff --git a/comfyui_embedded_docs/docs/ImageRotate/zh-TW.md b/comfyui_embedded_docs/docs/ImageRotate/zh-TW.md index 54cceb45d..0f9ebae59 100644 --- a/comfyui_embedded_docs/docs/ImageRotate/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageRotate/zh-TW.md @@ -13,4 +13,4 @@ ImageRotate 節點可將輸入圖像旋轉指定角度。它支援四種旋轉 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 經過旋轉處理後的輸出圖像 | \ No newline at end of file +| `image` | IMAGE | 經過旋轉處理後的輸出圖像 | diff --git a/comfyui_embedded_docs/docs/ImageScale/ar.md b/comfyui_embedded_docs/docs/ImageScale/ar.md index 08ac149ba..2825a52fa 100644 --- a/comfyui_embedded_docs/docs/ImageScale/ar.md +++ b/comfyui_embedded_docs/docs/ImageScale/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `الصورة` | `IMAGE` | الصورة المكبّرة (والمقتطعة اختياريًا)، جاهزة لمزيد من المعالجة أو التصور. | \ No newline at end of file +| `الصورة` | `IMAGE` | الصورة المكبّرة (والمقتطعة اختياريًا)، جاهزة لمزيد من المعالجة أو التصور. | diff --git a/comfyui_embedded_docs/docs/ImageScale/pt-BR.md b/comfyui_embedded_docs/docs/ImageScale/pt-BR.md index db074b1bd..ab3557ccb 100644 --- a/comfyui_embedded_docs/docs/ImageScale/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageScale/pt-BR.md @@ -16,4 +16,4 @@ O nó ImageScale é projetado para redimensionar imagens para dimensões especí | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A imagem ampliada (e opcionalmente recortada), pronta para processamento adicional ou visualização. | \ No newline at end of file +| `image` | `IMAGE` | A imagem ampliada (e opcionalmente recortada), pronta para processamento adicional ou visualização. | diff --git a/comfyui_embedded_docs/docs/ImageScale/tr.md b/comfyui_embedded_docs/docs/ImageScale/tr.md index a66690571..a8509d24b 100644 --- a/comfyui_embedded_docs/docs/ImageScale/tr.md +++ b/comfyui_embedded_docs/docs/ImageScale/tr.md @@ -16,4 +16,4 @@ ImageScale düğümü, görüntüleri belirli boyutlara yeniden boyutlandırmak | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `görüntü` | `IMAGE` | Yükseltilmiş (ve isteğe bağlı olarak kırpılmış) görüntü, daha fazla işleme veya görselleştirmeye hazır. | \ No newline at end of file +| `görüntü` | `IMAGE` | Yükseltilmiş (ve isteğe bağlı olarak kırpılmış) görüntü, daha fazla işleme veya görselleştirmeye hazır. | diff --git a/comfyui_embedded_docs/docs/ImageScale/zh-TW.md b/comfyui_embedded_docs/docs/ImageScale/zh-TW.md index c0f2ab1fc..83dc9123c 100644 --- a/comfyui_embedded_docs/docs/ImageScale/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageScale/zh-TW.md @@ -16,4 +16,4 @@ ImageScale 節點專為將影像調整至特定尺寸而設計,提供多種放 | 參數名稱 | 資料類型 | 描述說明 | |-----------|-------------|-------------| -| `影像` | `IMAGE` | 已完成放大(並可選擇性裁剪)的影像,可進行後續處理或視覺化操作。 | \ No newline at end of file +| `影像` | `IMAGE` | 已完成放大(並可選擇性裁剪)的影像,可進行後續處理或視覺化操作。 | diff --git a/comfyui_embedded_docs/docs/ImageScaleBy/ar.md b/comfyui_embedded_docs/docs/ImageScaleBy/ar.md index a7dce159b..2cdae47a8 100644 --- a/comfyui_embedded_docs/docs/ImageScaleBy/ar.md +++ b/comfyui_embedded_docs/docs/ImageScaleBy/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|---------------------------------------------------------------| -| `الصورة` | `IMAGE` | الصورة المحسنة الجودة، والتي تكون أكبر من الصورة المدخلة وفقًا لعامل التحجيم وطريقة الاستيفاء المحددين. | \ No newline at end of file +| `الصورة` | `IMAGE` | الصورة المحسنة الجودة، والتي تكون أكبر من الصورة المدخلة وفقًا لعامل التحجيم وطريقة الاستيفاء المحددين. | diff --git a/comfyui_embedded_docs/docs/ImageScaleBy/pt-BR.md b/comfyui_embedded_docs/docs/ImageScaleBy/pt-BR.md index 83f7ddd13..f945bf6d1 100644 --- a/comfyui_embedded_docs/docs/ImageScaleBy/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageScaleBy/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageScaleBy é projetado para aumentar a escala de imagens por um fator d | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|---------------------------------------------------------------| -| `image` | `IMAGE` | A imagem ampliada, que é maior do que a imagem de entrada de acordo com o fator de escala e o método de interpolação especificados. | \ No newline at end of file +| `image` | `IMAGE` | A imagem ampliada, que é maior do que a imagem de entrada de acordo com o fator de escala e o método de interpolação especificados. | diff --git a/comfyui_embedded_docs/docs/ImageScaleBy/tr.md b/comfyui_embedded_docs/docs/ImageScaleBy/tr.md index 1454c27dd..9707f8595 100644 --- a/comfyui_embedded_docs/docs/ImageScaleBy/tr.md +++ b/comfyui_embedded_docs/docs/ImageScaleBy/tr.md @@ -14,4 +14,4 @@ ImageScaleBy düğümü, çeşitli enterpolasyon yöntemleri kullanarak görünt | Parametre | Veri Tipi | Açıklama | |-----------|-------------|---------------------------------------------------------------| -| `görüntü` | `IMAGE` | Belirtilen ölçek faktörü ve enterpolasyon yöntemine göre girdi görüntüsünden daha büyük olan büyütülmüş görüntü. | \ No newline at end of file +| `görüntü` | `IMAGE` | Belirtilen ölçek faktörü ve enterpolasyon yöntemine göre girdi görüntüsünden daha büyük olan büyütülmüş görüntü. | diff --git a/comfyui_embedded_docs/docs/ImageScaleBy/zh-TW.md b/comfyui_embedded_docs/docs/ImageScaleBy/zh-TW.md index 76445d140..dd75a4640 100644 --- a/comfyui_embedded_docs/docs/ImageScaleBy/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageScaleBy/zh-TW.md @@ -14,4 +14,4 @@ ImageScaleBy 節點專門用於透過指定的縮放比例因子和各種插值 | 參數名稱 | 資料類型 | 描述 | |----------|----------|------------------------------------------------------------| -| `影像` | `IMAGE` | 經過放大處理的影像,根據指定的比例因子和插值方法,其尺寸會大於輸入影像。 | \ No newline at end of file +| `影像` | `IMAGE` | 經過放大處理的影像,根據指定的比例因子和插值方法,其尺寸會大於輸入影像。 | diff --git a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/ar.md b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/ar.md index 28b728ff4..d10310240 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/ar.md +++ b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة المُحجمة التي يطابق بُعدها الأكبر الحجم المُحدد | \ No newline at end of file +| `image` | IMAGE | الصورة المُحجمة التي يطابق بُعدها الأكبر الحجم المُحدد | diff --git a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/pt-BR.md b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/pt-BR.md index 067d581cd..0ac8a4bf9 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageScaleToMaxDimension redimensiona imagens para caberem dentro de uma d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem redimensionada com a maior dimensão correspondendo ao tamanho especificado | \ No newline at end of file +| `image` | IMAGE | A imagem redimensionada com a maior dimensão correspondendo ao tamanho especificado | diff --git a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/tr.md b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/tr.md index 9e94b7159..0a36e9ee9 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/tr.md +++ b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/tr.md @@ -14,4 +14,4 @@ ImageScaleToMaxDimension düğümü, görüntüleri orijinal en-boy oranını ko | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | En büyük boyutu belirtilen boyutla eşleşen ölçeklenmiş görüntü | \ No newline at end of file +| `image` | IMAGE | En büyük boyutu belirtilen boyutla eşleşen ölçeklenmiş görüntü | diff --git a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/zh-TW.md b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/zh-TW.md index d327ef116..467ee5ac7 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageScaleToMaxDimension/zh-TW.md @@ -14,4 +14,4 @@ ImageScaleToMaxDimension 節點可將圖像調整尺寸以符合指定的最大 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `image` | IMAGE | 最大維度符合指定尺寸的縮放後圖像 | \ No newline at end of file +| `image` | IMAGE | 最大維度符合指定尺寸的縮放後圖像 | diff --git a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/ar.md b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/ar.md index 72ba62777..ba6412b09 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/ar.md +++ b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-----------------------------------------------------------------------| -| `الصورة` | `IMAGE` | الصورة بعد تحجيمها لأعلى لتحتوي على العدد المحدد من وحدات البكسل الإجمالية، مع الحفاظ على نسبة الأبعاد الأصلية. | \ No newline at end of file +| `الصورة` | `IMAGE` | الصورة بعد تحجيمها لأعلى لتحتوي على العدد المحدد من وحدات البكسل الإجمالية، مع الحفاظ على نسبة الأبعاد الأصلية. | diff --git a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/pt-BR.md b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/pt-BR.md index 379475551..fefce28d0 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/pt-BR.md @@ -14,4 +14,4 @@ O nó ImageScaleToTotalPixels é projetado para redimensionar imagens para um n | Parâmetro | Tipo de Dados | Descrição | |-----------|---------------|------------------------------------------------------------------------------------------| -| `image` | `IMAGE` | A imagem ampliada com o número total de pixels especificado, mantendo a proporção original. | \ No newline at end of file +| `image` | `IMAGE` | A imagem ampliada com o número total de pixels especificado, mantendo a proporção original. | diff --git a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/tr.md b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/tr.md index f777a15c9..18bef1bc4 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/tr.md +++ b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/tr.md @@ -14,4 +14,4 @@ ImageScaleToTotalPixels düğümü, görüntüleri en-boy oranını koruyarak be | Parametre | Veri Türü | Açıklama | |-----------|-------------|-----------------------------------------------------------------------| -| `görüntü` | `IMAGE` | Orijinal en-boy oranı korunarak, belirtilen toplam piksel sayısına sahip yükseltilmiş görüntü. | \ No newline at end of file +| `görüntü` | `IMAGE` | Orijinal en-boy oranı korunarak, belirtilen toplam piksel sayısına sahip yükseltilmiş görüntü. | diff --git a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/zh-TW.md b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/zh-TW.md index ab1c46d38..895b289cb 100644 --- a/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageScaleToTotalPixels/zh-TW.md @@ -16,4 +16,4 @@ ImageScaleToTotalPixels 節點專為將影像調整至指定總像素數而設 | 參數 | 資料類型 | 描述 | |---------|----------|----------------------------------------------------------------------| -| `影像` | `IMAGE` | 已放大的影像,具有指定的總像素數,並保持原始長寬比。 | \ No newline at end of file +| `影像` | `IMAGE` | 已放大的影像,具有指定的總像素數,並保持原始長寬比。 | diff --git a/comfyui_embedded_docs/docs/ImageSharpen/ar.md b/comfyui_embedded_docs/docs/ImageSharpen/ar.md index 0549b9cfa..4232a0fff 100644 --- a/comfyui_embedded_docs/docs/ImageSharpen/ar.md +++ b/comfyui_embedded_docs/docs/ImageSharpen/ar.md @@ -15,4 +15,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|--------------------------------------------------------------------------| -| `الصورة`| `IMAGE` | الصورة الحادة، مع حواف وتفاصيل محسنة، جاهزة لمزيد من المعالجة أو العرض. | \ No newline at end of file +| `الصورة`| `IMAGE` | الصورة الحادة، مع حواف وتفاصيل محسنة، جاهزة لمزيد من المعالجة أو العرض. | diff --git a/comfyui_embedded_docs/docs/ImageSharpen/pt-BR.md b/comfyui_embedded_docs/docs/ImageSharpen/pt-BR.md index 8454d8583..2822bbc2a 100644 --- a/comfyui_embedded_docs/docs/ImageSharpen/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageSharpen/pt-BR.md @@ -15,4 +15,4 @@ O nó ImageSharpen melhora a nitidez de uma imagem ao acentuar suas bordas e det | Campo | Tipo de Dados | Descrição | |-------|-------------|--------------------------------------------------------------------------| -| `image`| `IMAGE` | A imagem nitidificada, com bordas e detalhes realçados, pronta para processamento adicional ou exibição. | \ No newline at end of file +| `image`| `IMAGE` | A imagem nitidificada, com bordas e detalhes realçados, pronta para processamento adicional ou exibição. | diff --git a/comfyui_embedded_docs/docs/ImageSharpen/tr.md b/comfyui_embedded_docs/docs/ImageSharpen/tr.md index ae4d9daaf..0bdd1bf15 100644 --- a/comfyui_embedded_docs/docs/ImageSharpen/tr.md +++ b/comfyui_embedded_docs/docs/ImageSharpen/tr.md @@ -15,4 +15,4 @@ ImageSharpen düğümü, bir görüntünün kenarlarını ve detaylarını belir | Alan | Veri Türü | Açıklama | |-------|-------------|--------------------------------------------------------------------------| -| `görüntü`| `IMAGE` | Geliştirilmiş kenarlara ve detaylara sahip, daha fazla işleme veya görüntülemeye hazır, keskinleştirilmiş görüntü. | \ No newline at end of file +| `görüntü`| `IMAGE` | Geliştirilmiş kenarlara ve detaylara sahip, daha fazla işleme veya görüntülemeye hazır, keskinleştirilmiş görüntü. | diff --git a/comfyui_embedded_docs/docs/ImageSharpen/zh-TW.md b/comfyui_embedded_docs/docs/ImageSharpen/zh-TW.md index 897f11ab6..c2a559fe1 100644 --- a/comfyui_embedded_docs/docs/ImageSharpen/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageSharpen/zh-TW.md @@ -17,4 +17,4 @@ ImageSharpen 節點透過強化影像邊緣和細節來提升影像清晰度。 | 欄位名稱 | 資料類型 | 描述 | |----------|-----------|-------| -| `影像` | `IMAGE` | 經過銳化處理的影像,具有增強後的邊緣和細節,可進行後續處理或顯示。 | \ No newline at end of file +| `影像` | `IMAGE` | 經過銳化處理的影像,具有增強後的邊緣和細節,可進行後續處理或顯示。 | diff --git a/comfyui_embedded_docs/docs/ImageStitch/ar.md b/comfyui_embedded_docs/docs/ImageStitch/ar.md index 85a14d7fd..8c693feb5 100644 --- a/comfyui_embedded_docs/docs/ImageStitch/ar.md +++ b/comfyui_embedded_docs/docs/ImageStitch/ar.md @@ -51,4 +51,4 @@ صورة المخرج 2: -![output2](./asset/output-2.webp) \ No newline at end of file +![output2](./asset/output-2.webp) diff --git a/comfyui_embedded_docs/docs/ImageStitch/pt-BR.md b/comfyui_embedded_docs/docs/ImageStitch/pt-BR.md index 36a29e9da..74b8133f9 100644 --- a/comfyui_embedded_docs/docs/ImageStitch/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageStitch/pt-BR.md @@ -51,4 +51,4 @@ Imagem de saída 1: Imagem de saída 2: -![output2](./asset/output-2.webp) \ No newline at end of file +![output2](./asset/output-2.webp) diff --git a/comfyui_embedded_docs/docs/ImageStitch/tr.md b/comfyui_embedded_docs/docs/ImageStitch/tr.md index f8b03f335..329d510c8 100644 --- a/comfyui_embedded_docs/docs/ImageStitch/tr.md +++ b/comfyui_embedded_docs/docs/ImageStitch/tr.md @@ -51,4 +51,4 @@ Aşağıdaki iş akışında, farklı boyutlara sahip 3 giriş görüntüsünü Çıktı görüntüsü 2: -![output2](./asset/output-2.webp) \ No newline at end of file +![output2](./asset/output-2.webp) diff --git a/comfyui_embedded_docs/docs/ImageStitch/zh-TW.md b/comfyui_embedded_docs/docs/ImageStitch/zh-TW.md index 1356169f1..f0040a662 100644 --- a/comfyui_embedded_docs/docs/ImageStitch/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageStitch/zh-TW.md @@ -51,4 +51,4 @@ 輸出圖片 2: -![output2](./asset/output-2.webp) \ No newline at end of file +![output2](./asset/output-2.webp) diff --git a/comfyui_embedded_docs/docs/ImageToMask/ar.md b/comfyui_embedded_docs/docs/ImageToMask/ar.md index 089247275..a4f9c039c 100644 --- a/comfyui_embedded_docs/docs/ImageToMask/ar.md +++ b/comfyui_embedded_docs/docs/ImageToMask/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `mask` | `MASK` | يمثل 'mask' الناتج تمثيلاً ثنائيًا أو بتدرج الرمادي لقناة اللون المحددة من الصورة المدخلة، وهو مفيد لمزيد من عمليات معالجة الصور أو عمليات الإخفاء. | \ No newline at end of file +| `mask` | `MASK` | يمثل 'mask' الناتج تمثيلاً ثنائيًا أو بتدرج الرمادي لقناة اللون المحددة من الصورة المدخلة، وهو مفيد لمزيد من عمليات معالجة الصور أو عمليات الإخفاء. | diff --git a/comfyui_embedded_docs/docs/ImageToMask/pt-BR.md b/comfyui_embedded_docs/docs/ImageToMask/pt-BR.md index 7572d8ea0..64b718c6f 100644 --- a/comfyui_embedded_docs/docs/ImageToMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageToMask/pt-BR.md @@ -13,4 +13,4 @@ O nó ImageToMask é projetado para converter uma imagem em uma máscara com bas | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `mask` | `MASK` | A saída `mask` é uma representação binária ou em tons de cinza do canal de cor especificado da imagem de entrada, útil para operações posteriores de processamento de imagem ou mascaramento. | \ No newline at end of file +| `mask` | `MASK` | A saída `mask` é uma representação binária ou em tons de cinza do canal de cor especificado da imagem de entrada, útil para operações posteriores de processamento de imagem ou mascaramento. | diff --git a/comfyui_embedded_docs/docs/ImageToMask/tr.md b/comfyui_embedded_docs/docs/ImageToMask/tr.md index dfa041464..1cb050764 100644 --- a/comfyui_embedded_docs/docs/ImageToMask/tr.md +++ b/comfyui_embedded_docs/docs/ImageToMask/tr.md @@ -13,4 +13,4 @@ ImageToMask düğümü, bir görüntüyü belirli bir renk kanalına dayalı ola | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `mask` | `MASK` | Çıktı olan 'mask', girdi görüntüsünden belirtilen renk kanalının ikili veya gri tonlamalı bir temsilidir ve daha fazla görüntü işleme veya maskeleme işlemleri için kullanışlıdır. | \ No newline at end of file +| `mask` | `MASK` | Çıktı olan 'mask', girdi görüntüsünden belirtilen renk kanalının ikili veya gri tonlamalı bir temsilidir ve daha fazla görüntü işleme veya maskeleme işlemleri için kullanışlıdır. | diff --git a/comfyui_embedded_docs/docs/ImageToMask/zh-TW.md b/comfyui_embedded_docs/docs/ImageToMask/zh-TW.md index 0d06e0427..517f4f128 100644 --- a/comfyui_embedded_docs/docs/ImageToMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageToMask/zh-TW.md @@ -15,4 +15,4 @@ ImageToMask 節點旨在根據指定的色彩通道將圖像轉換為遮罩。 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `mask` | `MASK` | 輸出的 `mask` 是從輸入圖像中指定色彩通道的二值或灰階表示,可用於進一步的圖像處理或遮罩操作。 | \ No newline at end of file +| `mask` | `MASK` | 輸出的 `mask` 是從輸入圖像中指定色彩通道的二值或灰階表示,可用於進一步的圖像處理或遮罩操作。 | diff --git a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/ar.md b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/ar.md index 550b48d9c..4cdff9811 100644 --- a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/ar.md +++ b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|----------------------------------------------------| -| `الصورة` | `IMAGE` | الصورة المحسنة الدقة، بعد معالجتها بواسطة نموذج التحسين. هذا الناتج هو نتيجة عملية التحسين، ويعرض الدقة أو الجودة المحسنة. | \ No newline at end of file +| `الصورة` | `IMAGE` | الصورة المحسنة الدقة، بعد معالجتها بواسطة نموذج التحسين. هذا الناتج هو نتيجة عملية التحسين، ويعرض الدقة أو الجودة المحسنة. | diff --git a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/pt-BR.md b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/pt-BR.md index 7519dd182..a6801adfa 100644 --- a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/pt-BR.md @@ -13,4 +13,4 @@ Este nó foi projetado para aumentar a escala de imagens usando um modelo de ups | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|----------------------------------------------------| -| `image` | `IMAGE` | A imagem com a escala aumentada, processada pelo modelo de upscale. Esta saída é o resultado da operação de upscaling, exibindo a resolução ou qualidade aprimorada. | \ No newline at end of file +| `image` | `IMAGE` | A imagem com a escala aumentada, processada pelo modelo de upscale. Esta saída é o resultado da operação de upscaling, exibindo a resolução ou qualidade aprimorada. | diff --git a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/tr.md b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/tr.md index 7d511a52e..534a03ffb 100644 --- a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/tr.md +++ b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/tr.md @@ -13,4 +13,4 @@ Bu düğüm, belirli bir yükseltme modeli kullanarak görüntüleri yükseltmek | Parametre | Veri Türü | Açıklama | |-----------|-------------|----------------------------------------------------| -| `görüntü` | `IMAGE` | Yükseltme modeli tarafından işlenen yükseltilmiş görüntü. Bu çıktı, yükseltme işleminin sonucu olup, geliştirilmiş çözünürlüğü veya kaliteyi sergiler. | \ No newline at end of file +| `görüntü` | `IMAGE` | Yükseltme modeli tarafından işlenen yükseltilmiş görüntü. Bu çıktı, yükseltme işleminin sonucu olup, geliştirilmiş çözünürlüğü veya kaliteyi sergiler. | diff --git a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/zh-TW.md b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/zh-TW.md index 5d981aa27..44e0854ce 100644 --- a/comfyui_embedded_docs/docs/ImageUpscaleWithModel/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageUpscaleWithModel/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | 描述說明 | |-----------|-------------|----------------------------------------------------| -| `影像` | `IMAGE` | 經放大模型處理後的高解析度影像。此輸出是放大操作的最終成果,展示了提升後的解析度或畫質。 | \ No newline at end of file +| `影像` | `IMAGE` | 經放大模型處理後的高解析度影像。此輸出是放大操作的最終成果,展示了提升後的解析度或畫質。 | diff --git a/comfyui_embedded_docs/docs/ImageYUVToRGB/ar.md b/comfyui_embedded_docs/docs/ImageYUVToRGB/ar.md index e0eeb1c53..c17b44d0c 100644 --- a/comfyui_embedded_docs/docs/ImageYUVToRGB/ar.md +++ b/comfyui_embedded_docs/docs/ImageYUVToRGB/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|--------------|--------| -| `output` | IMAGE | الصورة المحولة إلى RGB | \ No newline at end of file +| `output` | IMAGE | الصورة المحولة إلى RGB | diff --git a/comfyui_embedded_docs/docs/ImageYUVToRGB/pt-BR.md b/comfyui_embedded_docs/docs/ImageYUVToRGB/pt-BR.md index ff4fb223e..27452451d 100644 --- a/comfyui_embedded_docs/docs/ImageYUVToRGB/pt-BR.md +++ b/comfyui_embedded_docs/docs/ImageYUVToRGB/pt-BR.md @@ -16,4 +16,4 @@ O nó ImageYUVToRGB converte imagens do espaço de cores YUV para o espaço de c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem RGB convertida | \ No newline at end of file +| `output` | IMAGE | A imagem RGB convertida | diff --git a/comfyui_embedded_docs/docs/ImageYUVToRGB/tr.md b/comfyui_embedded_docs/docs/ImageYUVToRGB/tr.md index 1886486b8..4b08ca7ce 100644 --- a/comfyui_embedded_docs/docs/ImageYUVToRGB/tr.md +++ b/comfyui_embedded_docs/docs/ImageYUVToRGB/tr.md @@ -16,4 +16,4 @@ ImageYUVToRGB düğümü, YUV renk uzayındaki görüntüleri RGB renk uzayına | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Dönüştürülmüş RGB görüntü | \ No newline at end of file +| `output` | IMAGE | Dönüştürülmüş RGB görüntü | diff --git a/comfyui_embedded_docs/docs/ImageYUVToRGB/zh-TW.md b/comfyui_embedded_docs/docs/ImageYUVToRGB/zh-TW.md index be18cbc01..ef1459791 100644 --- a/comfyui_embedded_docs/docs/ImageYUVToRGB/zh-TW.md +++ b/comfyui_embedded_docs/docs/ImageYUVToRGB/zh-TW.md @@ -16,4 +16,4 @@ ImageYUVToRGB 節點將 YUV 色彩空間的影像轉換為 RGB 色彩空間。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | IMAGE | 轉換後的 RGB 影像 | \ No newline at end of file +| `output` | IMAGE | 轉換後的 RGB 影像 | diff --git a/comfyui_embedded_docs/docs/InpaintModelConditioning/ar.md b/comfyui_embedded_docs/docs/InpaintModelConditioning/ar.md index a44006a15..e3771c050 100644 --- a/comfyui_embedded_docs/docs/InpaintModelConditioning/ar.md +++ b/comfyui_embedded_docs/docs/InpaintModelConditioning/ar.md @@ -18,4 +18,4 @@ |------------|---------------|-------------| | `سلبي` | `CONDITIONING` | معلومات التكييف الإيجابية المعدلة بعد المعالجة، جاهزة للتطبيق على نموذج التصحيح. تُعد هذه المخرجات أساسية لتوجيه عملية التصحيح وفقًا للشروط الإيجابية المحددة. | | `المتغير الكامن` | `CONDITIONING` | معلومات التكييف السلبية المعدلة بعد المعالجة، جاهزة للتطبيق على نموذج التصحيح. تُعد هذه المخرجات أساسية لتوجيه عملية التصحيح وفقًا للشروط السلبية المحددة. | -| `latent` | `LATENT` | التمثيل الكامن المستمد من عملية التكييف. تُعد هذه المخرجات بالغة الأهمية لفهم السمات والخصائص الأساسية للصورة التي يتم تصحيحها. | \ No newline at end of file +| `latent` | `LATENT` | التمثيل الكامن المستمد من عملية التكييف. تُعد هذه المخرجات بالغة الأهمية لفهم السمات والخصائص الأساسية للصورة التي يتم تصحيحها. | diff --git a/comfyui_embedded_docs/docs/InpaintModelConditioning/pt-BR.md b/comfyui_embedded_docs/docs/InpaintModelConditioning/pt-BR.md index bda177b53..c4b2dad1d 100644 --- a/comfyui_embedded_docs/docs/InpaintModelConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/InpaintModelConditioning/pt-BR.md @@ -18,4 +18,4 @@ O nó InpaintModelConditioning é projetado para facilitar o processo de condici |-----------|--------------|-------------| | `positive`| `CONDITIONING` | As informações de condicionamento positivo modificadas após o processamento, prontas para serem aplicadas ao modelo de inpainting. Esta saída é essencial para guiar o processo de inpainting de acordo com as condições positivas especificadas. | | `negative`| `CONDITIONING` | As informações de condicionamento negativo modificadas após o processamento, prontas para serem aplicadas ao modelo de inpainting. Esta saída é essencial para guiar o processo de inpainting de acordo com as condições negativas especificadas. | -| `latent` | `LATENT` | A representação latente derivada do processo de condicionamento. Esta saída é crucial para compreender as características subjacentes da imagem que está sendo submetida ao inpainting. | \ No newline at end of file +| `latent` | `LATENT` | A representação latente derivada do processo de condicionamento. Esta saída é crucial para compreender as características subjacentes da imagem que está sendo submetida ao inpainting. | diff --git a/comfyui_embedded_docs/docs/InpaintModelConditioning/tr.md b/comfyui_embedded_docs/docs/InpaintModelConditioning/tr.md index e7a997164..799b59034 100644 --- a/comfyui_embedded_docs/docs/InpaintModelConditioning/tr.md +++ b/comfyui_embedded_docs/docs/InpaintModelConditioning/tr.md @@ -18,4 +18,4 @@ InpaintModelConditioning düğümü, inpaint modelleri için koşullandırma sü |-----------|--------------|-------------| | `negatif`| `CONDITIONING` | İşlendikten sonra değiştirilmiş pozitif koşullandırma bilgisi, inpaint modeline uygulanmaya hazırdır. Bu çıktı, belirtilen pozitif koşullara göre inpaint sürecini yönlendirmek için temeldir. | | `gizli`| `CONDITIONING` | İşlendikten sonra değiştirilmiş negatif koşullandırma bilgisi, inpaint modeline uygulanmaya hazırdır. Bu çıktı, belirtilen negatif koşullara göre inpaint sürecini yönlendirmek için temeldir. | -| `latent` | `LATENT` | Koşullandırma sürecinden türetilen gizli temsildir. Bu çıktı, işlenmekte olan görüntünün altında yatan özellikleri ve karakteristikleri anlamak için çok önemlidir. | \ No newline at end of file +| `latent` | `LATENT` | Koşullandırma sürecinden türetilen gizli temsildir. Bu çıktı, işlenmekte olan görüntünün altında yatan özellikleri ve karakteristikleri anlamak için çok önemlidir. | diff --git a/comfyui_embedded_docs/docs/InpaintModelConditioning/zh-TW.md b/comfyui_embedded_docs/docs/InpaintModelConditioning/zh-TW.md index e95ff190b..6c61b46a5 100644 --- a/comfyui_embedded_docs/docs/InpaintModelConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/InpaintModelConditioning/zh-TW.md @@ -18,4 +18,4 @@ InpaintModelConditioning 節點旨在簡化修補模型的調節流程,能夠 |----------|--------------|------| | `負向` | `CONDITIONING` | 經過處理後修改過的正向調節資訊,已準備好應用於修補模型。此輸出對於根據指定的正向條件引導修補流程至關重要。 | | `潛在空間` | `CONDITIONING` | 經過處理後修改過的負向調節資訊,已準備好應用於修補模型。此輸出對於根據指定的負向條件引導修補流程至關重要。 | -| `latent` | `LATENT` | 從調節流程推導出的潛在表示。此輸出對於理解正在修補的圖像的底層特徵和特性至關重要。 | \ No newline at end of file +| `latent` | `LATENT` | 從調節流程推導出的潛在表示。此輸出對於理解正在修補的圖像的底層特徵和特性至關重要。 | diff --git a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/ar.md b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/ar.md index 6a6e9fb9f..4945d30e0 100644 --- a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/ar.md +++ b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/ar.md @@ -19,4 +19,4 @@ |------------|---------------|--------| | `سلبي` | CONDITIONING | بيانات التكييف الإيجابية مع تمثيل الصورة الكامن المرفق | | `المتغير الكامن` | CONDITIONING | بيانات التكييف السلبية مع تمثيل الصورة الكامن المرفق | -| `latent` | LATENT | موتر كامن فارغ بنفس أبعاد الصورة المشفرة | \ No newline at end of file +| `latent` | LATENT | موتر كامن فارغ بنفس أبعاد الصورة المشفرة | diff --git a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/pt-BR.md b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/pt-BR.md index 20cd8e748..78fbffb02 100644 --- a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/pt-BR.md @@ -19,4 +19,4 @@ O nó InstructPixToPixConditioning prepara dados de condicionamento para a ediç |-------------|-----------|-------------| | `positive` | CONDITIONING | Dados de condicionamento positivo com a representação latente da imagem anexada | | `negative` | CONDITIONING | Dados de condicionamento negativo com a representação latente da imagem anexada | -| `latent` | LATENT | Tensor latente vazio com as mesmas dimensões da imagem codificada | \ No newline at end of file +| `latent` | LATENT | Tensor latente vazio com as mesmas dimensões da imagem codificada | diff --git a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/tr.md b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/tr.md index 42a8f67c3..46e3423a8 100644 --- a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/tr.md +++ b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/tr.md @@ -19,4 +19,4 @@ InstructPixToPixConditioning düğümü, pozitif ve negatif metin prompt'ların |-------------|-----------|-------------| | `negatif` | CONDITIONING | Ekli latent görüntü temsili içeren pozitif conditioning verisi | | `gizli` | CONDITIONING | Ekli latent görüntü temsili içeren negatif conditioning verisi | -| `latent` | LATENT | Kodlanmış görüntüyle aynı boyutlara sahip boş latent tensör | \ No newline at end of file +| `latent` | LATENT | Kodlanmış görüntüyle aynı boyutlara sahip boş latent tensör | diff --git a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/zh-TW.md b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/zh-TW.md index 88b826a7c..0fc07eb8f 100644 --- a/comfyui_embedded_docs/docs/InstructPixToPixConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/InstructPixToPixConditioning/zh-TW.md @@ -19,4 +19,4 @@ InstructPixToPixConditioning 節點透過將正向與反向文字提示詞與影 |-------------|-----------|-------------| | `負向` | CONDITIONING | 附帶潛在影像表徵的正向條件資料 | | `潛在空間` | CONDITIONING | 附帶潛在影像表徵的反向條件資料 | -| `latent` | LATENT | 與編碼後影像尺寸相同的空潛在張量 | \ No newline at end of file +| `latent` | LATENT | 與編碼後影像尺寸相同的空潛在張量 | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/ar.md b/comfyui_embedded_docs/docs/InvertBooleanNode/ar.md index e42d09c60..68f092eb2 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/ar.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | BOOLEAN | القيمة المنطقية المعكوسة. | \ No newline at end of file +| `output` | BOOLEAN | القيمة المنطقية المعكوسة. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/en.md b/comfyui_embedded_docs/docs/InvertBooleanNode/en.md index 219527ce0..bdc84967f 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/en.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/en.md @@ -12,4 +12,4 @@ This node takes a single boolean (true/false) input and outputs the opposite val | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | BOOLEAN | The inverted boolean value. | \ No newline at end of file +| `output` | BOOLEAN | The inverted boolean value. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/es.md b/comfyui_embedded_docs/docs/InvertBooleanNode/es.md index a833ac108..545adc07b 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/es.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/es.md @@ -12,4 +12,4 @@ Este nodo toma una entrada booleana (verdadero/falso) y devuelve el valor opuest | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | BOOLEAN | El valor booleano invertido. | \ No newline at end of file +| `output` | BOOLEAN | El valor booleano invertido. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/fr.md b/comfyui_embedded_docs/docs/InvertBooleanNode/fr.md index 318f20694..6f3a054b4 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/fr.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/fr.md @@ -12,4 +12,4 @@ Ce nœud prend une seule entrée booléenne (vrai/faux) et renvoie la valeur opp | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | BOOLEAN | La valeur booléenne inversée. | \ No newline at end of file +| `output` | BOOLEAN | La valeur booléenne inversée. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/ja.md b/comfyui_embedded_docs/docs/InvertBooleanNode/ja.md index 7810c9f8c..fe6eb56a8 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/ja.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 反転されたブール値。 | \ No newline at end of file +| `output` | BOOLEAN | 反転されたブール値。 | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/ko.md b/comfyui_embedded_docs/docs/InvertBooleanNode/ko.md index 935cb4ba9..75ccf93c7 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/ko.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 반전된 불리언 값입니다. | \ No newline at end of file +| `output` | BOOLEAN | 반전된 불리언 값입니다. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/pt-BR.md b/comfyui_embedded_docs/docs/InvertBooleanNode/pt-BR.md index 1e3da42ff..61422ed73 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/pt-BR.md @@ -12,4 +12,4 @@ Este nó recebe uma única entrada booleana (verdadeiro/falso) e retorna o valor | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | BOOLEAN | O valor booleano invertido. | \ No newline at end of file +| `output` | BOOLEAN | O valor booleano invertido. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/ru.md b/comfyui_embedded_docs/docs/InvertBooleanNode/ru.md index 5e01bc4cf..b8a079e63 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/ru.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | BOOLEAN | Инвертированное булево значение. | \ No newline at end of file +| `output` | BOOLEAN | Инвертированное булево значение. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/tr.md b/comfyui_embedded_docs/docs/InvertBooleanNode/tr.md index 1f7bd7ba0..e485c8f37 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/tr.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/tr.md @@ -12,4 +12,4 @@ Bu düğüm, tek bir boolean (doğru/yanlış) girişi alır ve bunun ters değe | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | BOOLEAN | Tersine çevrilmiş boolean değeri. | \ No newline at end of file +| `output` | BOOLEAN | Tersine çevrilmiş boolean değeri. | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/zh-TW.md b/comfyui_embedded_docs/docs/InvertBooleanNode/zh-TW.md index a4c302e9c..4b497a6cd 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 反轉後的布林值。 | \ No newline at end of file +| `output` | BOOLEAN | 反轉後的布林值。 | diff --git a/comfyui_embedded_docs/docs/InvertBooleanNode/zh.md b/comfyui_embedded_docs/docs/InvertBooleanNode/zh.md index 220da8f1f..93e66428c 100644 --- a/comfyui_embedded_docs/docs/InvertBooleanNode/zh.md +++ b/comfyui_embedded_docs/docs/InvertBooleanNode/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 取反后的布尔值。 | \ No newline at end of file +| `output` | BOOLEAN | 取反后的布尔值。 | diff --git a/comfyui_embedded_docs/docs/InvertMask/ar.md b/comfyui_embedded_docs/docs/InvertMask/ar.md index 5657b1898..34055462b 100644 --- a/comfyui_embedded_docs/docs/InvertMask/ar.md +++ b/comfyui_embedded_docs/docs/InvertMask/ar.md @@ -12,4 +12,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|--------------|-------------| -| `قناع` | MASK | المخرجات هي نسخة معكوسة من القناع المدخلي، حيث تصبح المناطق التي كانت مُقنعة سابقًا غير مُقنعة والعكس صحيح. | \ No newline at end of file +| `قناع` | MASK | المخرجات هي نسخة معكوسة من القناع المدخلي، حيث تصبح المناطق التي كانت مُقنعة سابقًا غير مُقنعة والعكس صحيح. | diff --git a/comfyui_embedded_docs/docs/InvertMask/pt-BR.md b/comfyui_embedded_docs/docs/InvertMask/pt-BR.md index 938564bd3..70f30c9ea 100644 --- a/comfyui_embedded_docs/docs/InvertMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/InvertMask/pt-BR.md @@ -12,4 +12,4 @@ O nó InvertMask foi projetado para inverter os valores de uma máscara fornecid | Parâmetro | Tipo de Dados | Descrição | |-----------|--------------|-------------| -| `mask` | MASK | A saída é uma versão invertida da máscara de entrada, onde as áreas anteriormente mascaradas se tornam não mascaradas e vice-versa. | \ No newline at end of file +| `mask` | MASK | A saída é uma versão invertida da máscara de entrada, onde as áreas anteriormente mascaradas se tornam não mascaradas e vice-versa. | diff --git a/comfyui_embedded_docs/docs/InvertMask/tr.md b/comfyui_embedded_docs/docs/InvertMask/tr.md index e0833592f..8124a044b 100644 --- a/comfyui_embedded_docs/docs/InvertMask/tr.md +++ b/comfyui_embedded_docs/docs/InvertMask/tr.md @@ -12,4 +12,4 @@ InvertMask düğümü, belirli bir maskenin değerlerini tersine çevirmek için | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------| -| `maske` | MASK | Çıktı, girdi maskesinin tersine çevrilmiş halidir; önceden maskelenmiş alanlar maskesiz hale gelir ve bunun tersi de geçerlidir. | \ No newline at end of file +| `maske` | MASK | Çıktı, girdi maskesinin tersine çevrilmiş halidir; önceden maskelenmiş alanlar maskesiz hale gelir ve bunun tersi de geçerlidir. | diff --git a/comfyui_embedded_docs/docs/InvertMask/zh-TW.md b/comfyui_embedded_docs/docs/InvertMask/zh-TW.md index d583246fd..530c9b9d1 100644 --- a/comfyui_embedded_docs/docs/InvertMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/InvertMask/zh-TW.md @@ -12,4 +12,4 @@ InvertMask 節點專門用於反轉指定遮罩的數值,有效翻轉遮罩與 | 參數名稱 | 資料類型 | 描述 | |-----------|--------------|-------------| -| `遮罩` | MASK | 輸出為輸入遮罩的反轉版本,原先被遮罩的區域將變成非遮罩區域,反之亦然。 | \ No newline at end of file +| `遮罩` | MASK | 輸出為輸入遮罩的反轉版本,原先被遮罩的區域將變成非遮罩區域,反之亦然。 | diff --git a/comfyui_embedded_docs/docs/JoinImageWithAlpha/ar.md b/comfyui_embedded_docs/docs/JoinImageWithAlpha/ar.md index e6374fb71..1edc1d55a 100644 --- a/comfyui_embedded_docs/docs/JoinImageWithAlpha/ar.md +++ b/comfyui_embedded_docs/docs/JoinImageWithAlpha/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `صورة` | `IMAGE` | المخرجات هي صورة واحدة تجمع بين الصورة المدخلة وقناع ألفا، متضمنةً معلومات الشفافية في المحتوى المرئي. | \ No newline at end of file +| `صورة` | `IMAGE` | المخرجات هي صورة واحدة تجمع بين الصورة المدخلة وقناع ألفا، متضمنةً معلومات الشفافية في المحتوى المرئي. | diff --git a/comfyui_embedded_docs/docs/JoinImageWithAlpha/pt-BR.md b/comfyui_embedded_docs/docs/JoinImageWithAlpha/pt-BR.md index 078650a33..eca490c7f 100644 --- a/comfyui_embedded_docs/docs/JoinImageWithAlpha/pt-BR.md +++ b/comfyui_embedded_docs/docs/JoinImageWithAlpha/pt-BR.md @@ -13,4 +13,4 @@ Este nó é projetado para operações de composição, especificamente para uni | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A saída é uma única imagem que combina a imagem de entrada com a máscara alfa, incorporando as informações de transparência ao conteúdo visual. | \ No newline at end of file +| `image` | `IMAGE` | A saída é uma única imagem que combina a imagem de entrada com a máscara alfa, incorporando as informações de transparência ao conteúdo visual. | diff --git a/comfyui_embedded_docs/docs/JoinImageWithAlpha/tr.md b/comfyui_embedded_docs/docs/JoinImageWithAlpha/tr.md index 3986e75a9..7b54506f3 100644 --- a/comfyui_embedded_docs/docs/JoinImageWithAlpha/tr.md +++ b/comfyui_embedded_docs/docs/JoinImageWithAlpha/tr.md @@ -13,4 +13,4 @@ Bu düğüm, kompozitleme işlemleri için tasarlanmıştır ve özellikle bir g | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `görüntü` | `IMAGE` | Çıktı, girdi görüntüsünü alfa maskesiyle birleştiren ve görsel içeriğe şeffaflık bilgisi katılmış tek bir görüntüdür. | \ No newline at end of file +| `görüntü` | `IMAGE` | Çıktı, girdi görüntüsünü alfa maskesiyle birleştiren ve görsel içeriğe şeffaflık bilgisi katılmış tek bir görüntüdür. | diff --git a/comfyui_embedded_docs/docs/JoinImageWithAlpha/zh-TW.md b/comfyui_embedded_docs/docs/JoinImageWithAlpha/zh-TW.md index 0ddd23212..b3aa68daa 100644 --- a/comfyui_embedded_docs/docs/JoinImageWithAlpha/zh-TW.md +++ b/comfyui_embedded_docs/docs/JoinImageWithAlpha/zh-TW.md @@ -13,4 +13,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `影像` | `IMAGE` | 輸出為單一圖像,結合了輸入圖像與 Alpha 遮罩,將透明度資訊融入視覺內容中。 | \ No newline at end of file +| `影像` | `IMAGE` | 輸出為單一圖像,結合了輸入圖像與 Alpha 遮罩,將透明度資訊融入視覺內容中。 | diff --git a/comfyui_embedded_docs/docs/KSampler/ar.md b/comfyui_embedded_docs/docs/KSampler/ar.md index bbea93724..1882e280c 100644 --- a/comfyui_embedded_docs/docs/KSampler/ar.md +++ b/comfyui_embedded_docs/docs/KSampler/ar.md @@ -81,4 +81,4 @@ class KSampler: def sample(self, model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=1.0): return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise) -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/KSampler/pt-BR.md b/comfyui_embedded_docs/docs/KSampler/pt-BR.md index 06c8141c6..02764da89 100644 --- a/comfyui_embedded_docs/docs/KSampler/pt-BR.md +++ b/comfyui_embedded_docs/docs/KSampler/pt-BR.md @@ -81,4 +81,4 @@ class KSampler: def sample(self, model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=1.0): return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise) -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/KSampler/tr.md b/comfyui_embedded_docs/docs/KSampler/tr.md index da1201e83..ec8204bbb 100644 --- a/comfyui_embedded_docs/docs/KSampler/tr.md +++ b/comfyui_embedded_docs/docs/KSampler/tr.md @@ -81,4 +81,4 @@ class KSampler: def sample(self, model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=1.0): return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise) -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/KSampler/zh-TW.md b/comfyui_embedded_docs/docs/KSampler/zh-TW.md index 76fa408e8..0ac9d9d7c 100644 --- a/comfyui_embedded_docs/docs/KSampler/zh-TW.md +++ b/comfyui_embedded_docs/docs/KSampler/zh-TW.md @@ -83,4 +83,4 @@ class KSampler: def sample(self, model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=1.0): return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise) -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/KSamplerAdvanced/ar.md b/comfyui_embedded_docs/docs/KSamplerAdvanced/ar.md index 2b1a2d7da..13e321889 100644 --- a/comfyui_embedded_docs/docs/KSamplerAdvanced/ar.md +++ b/comfyui_embedded_docs/docs/KSamplerAdvanced/ar.md @@ -24,4 +24,4 @@ | المعامل | نوع البيانات | الوصف | |-------------|-------------|------------------------------------------------------------------------------------------------------------------------------| -| `latent` | LATENT | يمثل المخرج صورة الكمون المُولَّدة من النموذج، معكسةً التكوينات والتقنيات المطبقة. | \ No newline at end of file +| `latent` | LATENT | يمثل المخرج صورة الكمون المُولَّدة من النموذج، معكسةً التكوينات والتقنيات المطبقة. | diff --git a/comfyui_embedded_docs/docs/KSamplerAdvanced/pt-BR.md b/comfyui_embedded_docs/docs/KSamplerAdvanced/pt-BR.md index 7a9234cfb..10a2ee69c 100644 --- a/comfyui_embedded_docs/docs/KSamplerAdvanced/pt-BR.md +++ b/comfyui_embedded_docs/docs/KSamplerAdvanced/pt-BR.md @@ -24,4 +24,4 @@ O nó KSamplerAdvanced foi projetado para aprimorar o processo de amostragem, fo | Parâmetro | Tipo de Dados | Descrição | |---|---|---| -| `latent` | LATENT | A saída representa a imagem latente gerada a partir do modelo, refletindo as configurações e técnicas aplicadas. | \ No newline at end of file +| `latent` | LATENT | A saída representa a imagem latente gerada a partir do modelo, refletindo as configurações e técnicas aplicadas. | diff --git a/comfyui_embedded_docs/docs/KSamplerAdvanced/tr.md b/comfyui_embedded_docs/docs/KSamplerAdvanced/tr.md index 00325c1d1..5242e03e2 100644 --- a/comfyui_embedded_docs/docs/KSamplerAdvanced/tr.md +++ b/comfyui_embedded_docs/docs/KSamplerAdvanced/tr.md @@ -24,4 +24,4 @@ KSamplerAdvanced düğümü, gelişmiş yapılandırmalar ve teknikler sağlayar | Parametre | Veri Türü | Açıklama | |-------------|-------------|------------------------------------------------------------------------------------------------------------------------------| -| `latent` | LATENT | Çıktı, modelden üretilen ve uygulanan yapılandırmaları ve teknikleri yansıtan gizli (latent) görüntüyü temsil eder. | \ No newline at end of file +| `latent` | LATENT | Çıktı, modelden üretilen ve uygulanan yapılandırmaları ve teknikleri yansıtan gizli (latent) görüntüyü temsil eder. | diff --git a/comfyui_embedded_docs/docs/KSamplerAdvanced/zh-TW.md b/comfyui_embedded_docs/docs/KSamplerAdvanced/zh-TW.md index 4920f24a6..90ecf577e 100644 --- a/comfyui_embedded_docs/docs/KSamplerAdvanced/zh-TW.md +++ b/comfyui_embedded_docs/docs/KSamplerAdvanced/zh-TW.md @@ -24,4 +24,4 @@ KSamplerAdvanced 節點旨在透過提供進階配置與技術來增強取樣過 | 參數名稱 | 資料類型 | 描述 | |----------|-----------|--------------------------------------------------------------------------------| -| `latent` | LATENT | 代表從模型生成的潛在圖像,反映了應用的配置與技術。 | \ No newline at end of file +| `latent` | LATENT | 代表從模型生成的潛在圖像,反映了應用的配置與技術。 | diff --git a/comfyui_embedded_docs/docs/KSamplerSelect/ar.md b/comfyui_embedded_docs/docs/KSamplerSelect/ar.md index 35d13102e..9720a2134 100644 --- a/comfyui_embedded_docs/docs/KSamplerSelect/ar.md +++ b/comfyui_embedded_docs/docs/KSamplerSelect/ar.md @@ -12,4 +12,4 @@ | المعامل | نوع البيانات | الوصف | |-------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | يُرجع كائن المُعين المحدد، جاهزًا لاستخدامه في مهام أخذ العينات. | \ No newline at end of file +| `sampler` | `SAMPLER` | يُرجع كائن المُعين المحدد، جاهزًا لاستخدامه في مهام أخذ العينات. | diff --git a/comfyui_embedded_docs/docs/KSamplerSelect/pt-BR.md b/comfyui_embedded_docs/docs/KSamplerSelect/pt-BR.md index d57dfe03d..b4a0d61a1 100644 --- a/comfyui_embedded_docs/docs/KSamplerSelect/pt-BR.md +++ b/comfyui_embedded_docs/docs/KSamplerSelect/pt-BR.md @@ -12,4 +12,4 @@ O nó KSamplerSelect é projetado para selecionar um amostrador específico com | Parâmetro | Tipo de Dados | Descrição | |-------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | Retorna o objeto do amostrador selecionado, pronto para ser usado em tarefas de amostragem. | \ No newline at end of file +| `sampler` | `SAMPLER` | Retorna o objeto do amostrador selecionado, pronto para ser usado em tarefas de amostragem. | diff --git a/comfyui_embedded_docs/docs/KSamplerSelect/tr.md b/comfyui_embedded_docs/docs/KSamplerSelect/tr.md index 0685e9eec..2ea280a3f 100644 --- a/comfyui_embedded_docs/docs/KSamplerSelect/tr.md +++ b/comfyui_embedded_docs/docs/KSamplerSelect/tr.md @@ -12,4 +12,4 @@ KSamplerSelect düğümü, belirtilen örnekleyici adına dayalı olarak belirli | Parametre | Veri Tipi | Açıklama | |-------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | Seçilen örnekleyici nesnesini döndürür, örnekleme görevlerinde kullanılmaya hazırdır. | \ No newline at end of file +| `sampler` | `SAMPLER` | Seçilen örnekleyici nesnesini döndürür, örnekleme görevlerinde kullanılmaya hazırdır. | diff --git a/comfyui_embedded_docs/docs/KSamplerSelect/zh-TW.md b/comfyui_embedded_docs/docs/KSamplerSelect/zh-TW.md index fd6c1a51a..367f2717c 100644 --- a/comfyui_embedded_docs/docs/KSamplerSelect/zh-TW.md +++ b/comfyui_embedded_docs/docs/KSamplerSelect/zh-TW.md @@ -14,4 +14,4 @@ KSamplerSelect 節點旨在根據提供的取樣器名稱選擇特定的取樣 | 參數名稱 | 資料類型 | 描述說明 | |-------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | 返回所選的取樣器物件,已準備好用於取樣任務。 | \ No newline at end of file +| `sampler` | `SAMPLER` | 返回所選的取樣器物件,已準備好用於取樣任務。 | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ar.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ar.md index e989760e9..c72ab3b8e 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ar.md @@ -24,4 +24,4 @@ | `positive` | CONDITIONING | التكييف الإيجابي المعدل، والذي تم تحديثه محتملاً ببيانات صورة البداية المُرمّزة. | | `negative` | CONDITIONING | التكييف السلبي المعدل، والذي تم تحديثه محتملاً ببيانات صورة البداية المُرمّزة. | | `latent` | LATENT | موتر كامن للفيديو فارغ بقيم صفرية، مشكّل للأبعاد المحددة. | -| `cond_latent` | LATENT | التمثيل الكامن النظيف المُرمّز لصور البداية المقدمة. يُستخدم داخليًا لاستبدال البداية المضطربة للكامنات المُنشأة للفيديو. | \ No newline at end of file +| `cond_latent` | LATENT | التمثيل الكامن النظيف المُرمّز لصور البداية المقدمة. يُستخدم داخليًا لاستبدال البداية المضطربة للكامنات المُنشأة للفيديو. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/en.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/en.md index 5d90978cc..d528c197d 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/en.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/en.md @@ -24,4 +24,4 @@ The Kandinsky5ImageToVideo node prepares conditioning and latent space data for | `positive` | CONDITIONING | The modified positive conditioning, potentially updated with encoded start image data. | | `negative` | CONDITIONING | The modified negative conditioning, potentially updated with encoded start image data. | | `latent` | LATENT | An empty video latent tensor with zeros, shaped for the specified dimensions. | -| `cond_latent` | LATENT | The clean, encoded latent representation of the provided start images. This is used internally to replace the noisy beginning of the generated video latents. | \ No newline at end of file +| `cond_latent` | LATENT | The clean, encoded latent representation of the provided start images. This is used internally to replace the noisy beginning of the generated video latents. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/es.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/es.md index c8874ccf3..2317b9f14 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/es.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/es.md @@ -24,4 +24,4 @@ El nodo Kandinsky5ImageToVideo prepara los datos de condicionamiento y del espac | `positive` | CONDITIONING | El condicionamiento positivo modificado, potencialmente actualizado con los datos de la imagen inicial codificada. | | `negative` | CONDITIONING | El condicionamiento negativo modificado, potencialmente actualizado con los datos de la imagen inicial codificada. | | `latent` | LATENT | Un tensor latente de vídeo vacío con ceros, configurado para las dimensiones especificadas. | -| `cond_latent` | LATENT | La representación latente limpia y codificada de las imágenes iniciales proporcionadas. Se utiliza internamente para reemplazar el inicio ruidoso de los latentes de vídeo generados. | \ No newline at end of file +| `cond_latent` | LATENT | La representación latente limpia y codificada de las imágenes iniciales proporcionadas. Se utiliza internamente para reemplazar el inicio ruidoso de los latentes de vídeo generados. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/fr.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/fr.md index 9c3204ddc..304dc1006 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/fr.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/fr.md @@ -24,4 +24,4 @@ Le nœud Kandinsky5ImageToVideo prépare les données de conditionnement et d'es | `positive` | CONDITIONING | Le conditionnement positif modifié, potentiellement mis à jour avec les données de l'image de départ encodée. | | `negative` | CONDITIONING | Le conditionnement négatif modifié, potentiellement mis à jour avec les données de l'image de départ encodée. | | `latent` | LATENT | Un tenseur latent vidéo vide rempli de zéros, mis en forme pour les dimensions spécifiées. | -| `cond_latent` | LATENT | La représentation latente propre et encodée des images de départ fournies. Celle-ci est utilisée en interne pour remplacer le début bruité des latents de la vidéo générée. | \ No newline at end of file +| `cond_latent` | LATENT | La représentation latente propre et encodée des images de départ fournies. Celle-ci est utilisée en interne pour remplacer le début bruité des latents de la vidéo générée. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ja.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ja.md index 8a1149a79..5c8ee3124 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ja.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ja.md @@ -24,4 +24,4 @@ Kandinsky5ImageToVideoノードは、Kandinskyモデルを使用した動画生 | `positive` | CONDITIONING | 変更されたポジティブな条件付け。エンコードされた開始画像データで更新されている可能性があります。 | | `negative` | CONDITIONING | 変更されたネガティブな条件付け。エンコードされた開始画像データで更新されている可能性があります。 | | `latent` | LATENT | ゼロで埋められた空の動画潜在テンソルで、指定された次元に合わせて形状が設定されています。 | -| `cond_latent` | LATENT | 提供された開始画像のクリーンな、エンコードされた潜在表現。これは、生成された動画潜在のノイズの多い開始部分を置き換えるために内部的に使用されます。 | \ No newline at end of file +| `cond_latent` | LATENT | 提供された開始画像のクリーンな、エンコードされた潜在表現。これは、生成された動画潜在のノイズの多い開始部分を置き換えるために内部的に使用されます。 | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ko.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ko.md index 71f36a119..6c918ba0c 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ko.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ko.md @@ -24,4 +24,4 @@ Kandinsky5ImageToVideo 노드는 Kandinsky 모델을 사용한 비디오 생성 | `positive` | CONDITIONING | 수정된 긍정적 조건화로, 인코딩된 시작 이미지 데이터로 업데이트되었을 수 있습니다. | | `negative` | CONDITIONING | 수정된 부정적 조건화로, 인코딩된 시작 이미지 데이터로 업데이트되었을 수 있습니다. | | `latent` | LATENT | 지정된 차원에 맞춰 0으로 채워진 빈 비디오 잠재 텐서입니다. | -| `cond_latent` | LATENT | 제공된 시작 이미지의 깨끗한, 인코딩된 잠재 표현입니다. 이는 생성된 비디오 잠재 변수의 노이즈 시작 부분을 대체하기 위해 내부적으로 사용됩니다. | \ No newline at end of file +| `cond_latent` | LATENT | 제공된 시작 이미지의 깨끗한, 인코딩된 잠재 표현입니다. 이는 생성된 비디오 잠재 변수의 노이즈 시작 부분을 대체하기 위해 내부적으로 사용됩니다. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/pt-BR.md index a7b3d4ebd..9085dca5f 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó Kandinsky5ImageToVideo prepara dados de condicionamento e espaço latente | `positive` | CONDITIONING | O condicionamento positivo modificado, potencialmente atualizado com os dados da imagem inicial codificada. | | `negative` | CONDITIONING | O condicionamento negativo modificado, potencialmente atualizado com os dados da imagem inicial codificada. | | `latent` | LATENT | Um tensor latente de vídeo vazio com zeros, formatado para as dimensões especificadas. | -| `cond_latent` | LATENT | A representação latente limpa e codificada das imagens iniciais fornecidas. Isso é usado internamente para substituir o início ruidoso dos latentes de vídeo gerados. | \ No newline at end of file +| `cond_latent` | LATENT | A representação latente limpa e codificada das imagens iniciais fornecidas. Isso é usado internamente para substituir o início ruidoso dos latentes de vídeo gerados. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ru.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ru.md index 64bdd8883..f8fb5a49e 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ru.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/ru.md @@ -24,4 +24,4 @@ | `positive` | CONDITIONING | Модифицированное позитивное кондиционирование, потенциально обновленное данными закодированного стартового изображения. | | `negative` | CONDITIONING | Модифицированное негативное кондиционирование, потенциально обновленное данными закодированного стартового изображения. | | `latent` | LATENT | Пустой латентный тензор для видео, заполненный нулями, сформированный для указанных размеров. | -| `cond_latent` | LATENT | Чистое, закодированное латентное представление предоставленных стартовых изображений. Используется внутренне для замены зашумленного начала сгенерированных видео-латентов. | \ No newline at end of file +| `cond_latent` | LATENT | Чистое, закодированное латентное представление предоставленных стартовых изображений. Используется внутренне для замены зашумленного начала сгенерированных видео-латентов. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/tr.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/tr.md index 24f58a2d6..09b5d24e5 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/tr.md @@ -24,4 +24,4 @@ Kandinsky5ImageToVideo düğümü, Kandinsky modelini kullanarak video üretimi | `positive` | CONDITIONING | Kodlanmış başlangıç görüntüsü verileriyle potansiyel olarak güncellenmiş, değiştirilmiş pozitif koşullandırma. | | `negative` | CONDITIONING | Kodlanmış başlangıç görüntüsü verileriyle potansiyel olarak güncellenmiş, değiştirilmiş negatif koşullandırma. | | `latent` | LATENT | Belirtilen boyutlar için şekillendirilmiş, sıfırlarla dolu boş bir video gizli tensörü. | -| `cond_latent` | LATENT | Sağlanan başlangıç görüntülerinin temiz, kodlanmış gizli temsili. Bu, üretilen video gizli değerlerinin gürültülü başlangıcını değiştirmek için dahili olarak kullanılır. | \ No newline at end of file +| `cond_latent` | LATENT | Sağlanan başlangıç görüntülerinin temiz, kodlanmış gizli temsili. Bu, üretilen video gizli değerlerinin gürültülü başlangıcını değiştirmek için dahili olarak kullanılır. | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh-TW.md index 40eacd069..17f98a3d8 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh-TW.md @@ -24,4 +24,4 @@ Kandinsky5ImageToVideo 節點為使用 Kandinsky 模型進行影片生成準備 | `positive` | CONDITIONING | 修改後的正向條件設定,可能已更新為編碼後的起始圖像資料。 | | `negative` | CONDITIONING | 修改後的負向條件設定,可能已更新為編碼後的起始圖像資料。 | | `latent` | LATENT | 一個由零值組成的空影片潛在張量,其形狀符合指定的維度。 | -| `cond_latent` | LATENT | 所提供起始圖像的乾淨、編碼後的潛在表示。這在內部用於替換生成影片潛在張量的噪聲起始部分。 | \ No newline at end of file +| `cond_latent` | LATENT | 所提供起始圖像的乾淨、編碼後的潛在表示。這在內部用於替換生成影片潛在張量的噪聲起始部分。 | diff --git a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh.md b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh.md index 7b3a838ce..1c7c131ef 100644 --- a/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh.md +++ b/comfyui_embedded_docs/docs/Kandinsky5ImageToVideo/zh.md @@ -24,4 +24,4 @@ Kandinsky5ImageToVideo 节点为使用 Kandinsky 模型生成视频准备条件 | `positive` | CONDITIONING | 修改后的正向条件数据,可能已更新为编码后的起始图像数据。 | | `negative` | CONDITIONING | 修改后的负向条件数据,可能已更新为编码后的起始图像数据。 | | `latent` | LATENT | 一个由零填充的空视频潜在张量,其形状符合指定的维度。 | -| `cond_latent` | LATENT | 所提供起始图像的干净、编码后的潜在表示。这在内部用于替换生成的视频潜在张量的噪声起始部分。 | \ No newline at end of file +| `cond_latent` | LATENT | 所提供起始图像的干净、编码后的潜在表示。这在内部用于替换生成的视频潜在张量的噪声起始部分。 | diff --git a/comfyui_embedded_docs/docs/KarrasScheduler/ar.md b/comfyui_embedded_docs/docs/KarrasScheduler/ar.md index 2e019f80a..82163f813 100644 --- a/comfyui_embedded_docs/docs/KarrasScheduler/ar.md +++ b/comfyui_embedded_docs/docs/KarrasScheduler/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-----------------------------------------------------------------------------| -| `sigmas` | SIGMAS | التسلسل المُولد لمستويات الضوضاء (sigmas) وفقاً لجدولة الضوضاء من Karras وآخرون (2022). | \ No newline at end of file +| `sigmas` | SIGMAS | التسلسل المُولد لمستويات الضوضاء (sigmas) وفقاً لجدولة الضوضاء من Karras وآخرون (2022). | diff --git a/comfyui_embedded_docs/docs/KarrasScheduler/pt-BR.md b/comfyui_embedded_docs/docs/KarrasScheduler/pt-BR.md index c568f5089..a8a921000 100644 --- a/comfyui_embedded_docs/docs/KarrasScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/KarrasScheduler/pt-BR.md @@ -15,4 +15,4 @@ O nó KarrasScheduler é projetado para gerar uma sequência de níveis de ruíd | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-----------------------------------------------------------------------------| -| `sigmas` | SIGMAS | A sequência gerada de níveis de ruído (sigmas) seguindo o agendamento de ruído de Karras et al. (2022). | \ No newline at end of file +| `sigmas` | SIGMAS | A sequência gerada de níveis de ruído (sigmas) seguindo o agendamento de ruído de Karras et al. (2022). | diff --git a/comfyui_embedded_docs/docs/KarrasScheduler/tr.md b/comfyui_embedded_docs/docs/KarrasScheduler/tr.md index 767a79608..b7692155d 100644 --- a/comfyui_embedded_docs/docs/KarrasScheduler/tr.md +++ b/comfyui_embedded_docs/docs/KarrasScheduler/tr.md @@ -15,4 +15,4 @@ KarrasScheduler düğümü, Karras ve diğerlerinin (2022) gürültü zamanlamas | Parametre | Veri Türü | Açıklama | |-----------|-------------|-----------------------------------------------------------------------------| -| `sigmas` | SIGMAS | Karras ve diğerlerinin (2022) gürültü zamanlamasını izleyen oluşturulmuş gürültü seviyeleri (sigmas) dizisi. | \ No newline at end of file +| `sigmas` | SIGMAS | Karras ve diğerlerinin (2022) gürültü zamanlamasını izleyen oluşturulmuş gürültü seviyeleri (sigmas) dizisi. | diff --git a/comfyui_embedded_docs/docs/KarrasScheduler/zh-TW.md b/comfyui_embedded_docs/docs/KarrasScheduler/zh-TW.md index 3e55695ad..311ecf039 100644 --- a/comfyui_embedded_docs/docs/KarrasScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/KarrasScheduler/zh-TW.md @@ -15,4 +15,4 @@ KarrasScheduler 節點旨在根據 Karras 等人(2022 年)的噪聲調度生 | 參數名稱 | 資料類型 | 描述說明 | |----------|-------------|--------------------------------------------------------------------------| -| `sigmas` | SIGMAS | 根據 Karras 等人(2022 年)噪聲調度生成的噪聲水平(sigmas)序列。 | \ No newline at end of file +| `sigmas` | SIGMAS | 根據 Karras 等人(2022 年)噪聲調度生成的噪聲水平(sigmas)序列。 | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/ar.md b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/ar.md index 8352a65ea..19b43dacf 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/ar.md @@ -19,4 +19,4 @@ | `المدة` | STRING | المعرف الفريد للفيديو المُنشأ | | `duration` | STRING | مدة الفيديو المُنشأ | -عقدة Kling للتحكم في الكاميرا من صورة إلى فيديو تقوم بتحويل الصور الثابتة إلى مقاطع فيديو سينمائية مع حركات كاميرا احترافية. تتيح لك هذه العقدة المتخصصة للتحويل من صورة إلى فيديو التحكم في إجراءات الكاميرا الافتراضية بما في ذلك التكبير/التصغير، والدوران، والتحريك الأفقي، والتحريك العمودي، ووجهة النظر من العين الأولى مع الحفاظ على التركيز على صورتك الأصلية. التحكم في الكاميرا مدعوم حاليًا فقط في الوضع الاحترافي مع نموذج kling-v1-5 ومدة 5 ثوانٍ. \ No newline at end of file +عقدة Kling للتحكم في الكاميرا من صورة إلى فيديو تقوم بتحويل الصور الثابتة إلى مقاطع فيديو سينمائية مع حركات كاميرا احترافية. تتيح لك هذه العقدة المتخصصة للتحويل من صورة إلى فيديو التحكم في إجراءات الكاميرا الافتراضية بما في ذلك التكبير/التصغير، والدوران، والتحريك الأفقي، والتحريك العمودي، ووجهة النظر من العين الأولى مع الحفاظ على التركيز على صورتك الأصلية. التحكم في الكاميرا مدعوم حاليًا فقط في الوضع الاحترافي مع نموذج kling-v1-5 ومدة 5 ثوانٍ. diff --git a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/pt-BR.md index 433fac203..754101bbe 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/pt-BR.md @@ -19,4 +19,4 @@ O nó Kling Image to Video Camera Control transforma imagens estáticas em víde |-------------|-----------|-------------| | `output` | VIDEO | A saída de vídeo gerada | | `video_id` | STRING | Identificador único para o vídeo gerado | -| `duration` | STRING | Duração do vídeo gerado | \ No newline at end of file +| `duration` | STRING | Duração do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/tr.md b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/tr.md index 1d60c5a55..cbe466123 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/tr.md @@ -19,4 +19,4 @@ Kling Görüntüden Videoya Kamera Kontrol Düğümü, sabit görüntüleri prof |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Oluşturulan video çıktısı | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `duration` | STRING | Oluşturulan videonun süresi | \ No newline at end of file +| `duration` | STRING | Oluşturulan videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/zh-TW.md index a4c172759..b2e03d930 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlI2VNode/zh-TW.md @@ -21,4 +21,4 @@ Kling 圖像轉影片攝影機控制節點可將靜態圖像轉換為具有專 |-------------|-----------|-------------| | `output` | VIDEO | 生成的影片輸出 | | `video_id` | STRING | 生成影片的唯一識別碼 | -| `duration` | STRING | 生成影片的時長 | \ No newline at end of file +| `duration` | STRING | 生成影片的時長 | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/ar.md b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/ar.md index f02f583db..7dba62958 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/ar.md @@ -18,4 +18,4 @@ |-------------|-----------|-------------| | `معرّف الفيديو` | VIDEO | الفيديو المُنشأ مع تأثيرات التحكم في الكاميرا | | `المدة` | STRING | المُعرّف الفريد للفيديو المُنشأ | -| `duration` | STRING | مدة الفيديو المُنشأ | \ No newline at end of file +| `duration` | STRING | مدة الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/pt-BR.md index 0cced047b..bf82a1421 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/pt-BR.md @@ -18,4 +18,4 @@ O nó Kling Text to Video Camera Control transforma texto em vídeos cinematogr |-------------|-----------|-------------| | `output` | VIDEO | O vídeo gerado com efeitos de controle de câmera | | `video_id` | STRING | O identificador único para o vídeo gerado | -| `duration` | STRING | A duração do vídeo gerado | \ No newline at end of file +| `duration` | STRING | A duração do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/tr.md b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/tr.md index e1604e652..4538e3caf 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/tr.md @@ -18,4 +18,4 @@ Kling Text to Video Camera Control Node, metni gerçek dünya sinematografisini |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Kamera kontrol efektleriyle oluşturulan video | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `duration` | STRING | Oluşturulan videonun süresi | \ No newline at end of file +| `duration` | STRING | Oluşturulan videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/zh-TW.md index 770e3bfeb..3236070bf 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingCameraControlT2VNode/zh-TW.md @@ -20,4 +20,4 @@ Kling Text to Video Camera Control 節點能將文字轉換為具有專業攝影 |-------------|-----------|-------------| | `output` | VIDEO | 帶有攝影機控制效果的生成影片 | | `video_id` | STRING | 生成影片的唯一識別碼 | -| `duration` | STRING | 生成影片的持續時間 | \ No newline at end of file +| `duration` | STRING | 生成影片的持續時間 | diff --git a/comfyui_embedded_docs/docs/KlingCameraControls/ar.md b/comfyui_embedded_docs/docs/KlingCameraControls/ar.md index ef3e2e47c..ad008ddc9 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControls/ar.md +++ b/comfyui_embedded_docs/docs/KlingCameraControls/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `camera_control` | CAMERA_CONTROL | يُرجع إعدادات تحكم الكاميرا المُكونة لاستخدامها في توليد الفيديو | \ No newline at end of file +| `camera_control` | CAMERA_CONTROL | يُرجع إعدادات تحكم الكاميرا المُكونة لاستخدامها في توليد الفيديو | diff --git a/comfyui_embedded_docs/docs/KlingCameraControls/pt-BR.md b/comfyui_embedded_docs/docs/KlingCameraControls/pt-BR.md index 606f6e78a..9657a18c6 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControls/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingCameraControls/pt-BR.md @@ -20,4 +20,4 @@ O nó Kling Camera Controls permite configurar vários parâmetros de movimento | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `camera_control` | CAMERA_CONTROL | Retorna as configurações de controle de câmera configuradas para uso na geração de vídeo | \ No newline at end of file +| `camera_control` | CAMERA_CONTROL | Retorna as configurações de controle de câmera configuradas para uso na geração de vídeo | diff --git a/comfyui_embedded_docs/docs/KlingCameraControls/tr.md b/comfyui_embedded_docs/docs/KlingCameraControls/tr.md index 46a413ccf..2bc86e572 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControls/tr.md +++ b/comfyui_embedded_docs/docs/KlingCameraControls/tr.md @@ -20,4 +20,4 @@ Kling Kamera Kontrolleri düğümü, video oluşturmada hareket kontrol efektler | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `camera_control` | CAMERA_CONTROL | Video oluşturmada kullanılmak üzere yapılandırılmış kamera kontrol ayarlarını döndürür | \ No newline at end of file +| `camera_control` | CAMERA_CONTROL | Video oluşturmada kullanılmak üzere yapılandırılmış kamera kontrol ayarlarını döndürür | diff --git a/comfyui_embedded_docs/docs/KlingCameraControls/zh-TW.md b/comfyui_embedded_docs/docs/KlingCameraControls/zh-TW.md index 8d1a5c416..f9b8423a6 100644 --- a/comfyui_embedded_docs/docs/KlingCameraControls/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingCameraControls/zh-TW.md @@ -20,4 +20,4 @@ Kling Camera Controls 節點允許您配置各種攝影機移動和旋轉參數 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `camera_control` | CAMERA_CONTROL | 返回配置好的攝影機控制設定,供影片生成使用 | \ No newline at end of file +| `camera_control` | CAMERA_CONTROL | 返回配置好的攝影機控制設定,供影片生成使用 | diff --git a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/ar.md b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/ar.md index e6691c3f5..353d1908a 100644 --- a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `المدة` | VIDEO | الفيديو المُنشأ مع تأثيرات الشخصيات المزدوجة | -| `المدة` | STRING | معلومات مدة الفيديو المُنشأ | \ No newline at end of file +| `المدة` | STRING | معلومات مدة الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/pt-BR.md index 7850471f6..4bde751a1 100644 --- a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/pt-BR.md @@ -18,4 +18,4 @@ O nó Kling Dual Character Video Effect cria vídeos com efeitos especiais basea | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `output` | VIDEO | O vídeo gerado com efeitos de duplo personagem | -| `duration` | STRING | A informação de duração do vídeo gerado | \ No newline at end of file +| `duration` | STRING | A informação de duração do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/tr.md b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/tr.md index bc3b2433b..02dfb1361 100644 --- a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/tr.md @@ -18,4 +18,4 @@ Kling Dual Character Video Effect Node, seçilen sahneye dayalı özel efektler | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `output` | VIDEO | Çift karakter efektli oluşturulan video | -| `süre` | STRING | Oluşturulan videonun süre bilgisi | \ No newline at end of file +| `süre` | STRING | Oluşturulan videonun süre bilgisi | diff --git a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/zh-TW.md index 408918c3d..7df4db2b9 100644 --- a/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingDualCharacterVideoEffectNode/zh-TW.md @@ -18,4 +18,4 @@ Kling 雙角色影片特效節點根據選取的場景建立帶有特效的影 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `時長` | VIDEO | 帶有雙角色特效的生成影片 | -| `時長` | STRING | 生成影片的時長資訊 | \ No newline at end of file +| `時長` | STRING | 生成影片的時長資訊 | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ar.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ar.md new file mode 100644 index 000000000..b798eb76a --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ar.md @@ -0,0 +1,24 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ar.md) + +يستخدم هذا العقد نموذج Kling 3.0 لإنشاء مقطع فيديو. يقوم بإنشاء الفيديو بناءً على وصف نصي، ومدة محددة، وصورتين مُدخلتين: إطار بداية وإطار نهاية. يمكن للعقد أيضًا إنشاء صوت مصاحب للفيديو. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | نعم | غير متاح | الوصف النصي الذي يوجه عملية إنشاء الفيديو. يجب أن يكون طوله بين 1 و 2500 حرفًا. | +| `duration` | INT | لا | 3 إلى 15 | طول الفيديو بالثواني (القيمة الافتراضية: 5). | +| `first_frame` | IMAGE | نعم | غير متاح | صورة البداية للفيديو. يجب أن تكون أبعادها على الأقل 300x300 بكسل وأن تكون نسبة العرض إلى الارتفاع بين 1:2.5 و 2.5:1. | +| `end_frame` | IMAGE | نعم | غير متاح | صورة النهاية للفيديو. يجب أن تكون أبعادها على الأقل 300x300 بكسل وأن تكون نسبة العرض إلى الارتفاع بين 1:2.5 و 2.5:1. | +| `generate_audio` | BOOLEAN | لا | غير متاح | يتحكم فيما إذا كان سيتم إنشاء صوت للفيديو أم لا (القيمة الافتراضية: True). | +| `model` | COMBO | لا | `"kling-v3"` | النموذج وإعدادات التوليد. يؤدي اختيار هذا الخيار إلى إظهار معامل فرعي `resolution`. | +| `model.resolution` | COMBO | لا | `"1080p"`
`"720p"` | دقة الفيديو المُنشأ. هذا المعامل متاح فقط عندما تكون قيمة `model` مضبوطة على `"kling-v3"`. | +| `seed` | INT | لا | 0 إلى 2147483647 | رقم يُستخدم للتحكم فيما إذا كان يجب على العقد إعادة التشغيل أم لا. النتائج غير حتمية بغض النظر عن قيمة البذرة (القيمة الافتراضية: 0). | + +**ملاحظة:** يجب أن تفي صور `first_frame` و `end_frame` بمتطلبات الحجم الأدنى ونسبة العرض إلى الارتفاع المحددة لكي يعمل العقد بشكل صحيح. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/en.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/en.md new file mode 100644 index 000000000..18b9396e0 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/en.md @@ -0,0 +1,24 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/en.md) + +This node uses the Kling 3.0 model to generate a video. It creates the video based on a text prompt, a specified duration, and two provided images: a starting frame and an ending frame. The node can also generate accompanying audio for the video. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Yes | N/A | The text description that guides the video generation. Must be between 1 and 2500 characters long. | +| `duration` | INT | No | 3 to 15 | The length of the video in seconds (default: 5). | +| `first_frame` | IMAGE | Yes | N/A | The starting image for the video. Must be at least 300x300 pixels and have an aspect ratio between 1:2.5 and 2.5:1. | +| `end_frame` | IMAGE | Yes | N/A | The ending image for the video. Must be at least 300x300 pixels and have an aspect ratio between 1:2.5 and 2.5:1. | +| `generate_audio` | BOOLEAN | No | N/A | Controls whether to generate audio for the video (default: True). | +| `model` | COMBO | No | `"kling-v3"` | Model and generation settings. Selecting this option reveals a nested `resolution` parameter. | +| `model.resolution` | COMBO | No | `"1080p"`
`"720p"` | The resolution for the generated video. This parameter is only available when the `model` is set to `"kling-v3"`. | +| `seed` | INT | No | 0 to 2147483647 | A number used to control whether the node should re-run. The results are non-deterministic regardless of the seed value (default: 0). | + +**Note:** The `first_frame` and `end_frame` images must meet the specified minimum size and aspect ratio requirements for the node to function correctly. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/es.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/es.md new file mode 100644 index 000000000..948fadd26 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/es.md @@ -0,0 +1,24 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/es.md) + +Este nodo utiliza el modelo Kling 3.0 para generar un vídeo. Crea el vídeo basándose en un texto descriptivo, una duración especificada y dos imágenes proporcionadas: un fotograma inicial y un fotograma final. El nodo también puede generar audio para acompañar al vídeo. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sí | N/A | La descripción textual que guía la generación del vídeo. Debe tener entre 1 y 2500 caracteres. | +| `duration` | INT | No | 3 a 15 | La duración del vídeo en segundos (valor por defecto: 5). | +| `first_frame` | IMAGE | Sí | N/A | La imagen inicial para el vídeo. Debe tener al menos 300x300 píxeles y una relación de aspecto entre 1:2.5 y 2.5:1. | +| `end_frame` | IMAGE | Sí | N/A | La imagen final para el vídeo. Debe tener al menos 300x300 píxeles y una relación de aspecto entre 1:2.5 y 2.5:1. | +| `generate_audio` | BOOLEAN | No | N/A | Controla si se debe generar audio para el vídeo (valor por defecto: True). | +| `model` | COMBO | No | `"kling-v3"` | Modelo y ajustes de generación. Seleccionar esta opción revela un parámetro anidado `resolution`. | +| `model.resolution` | COMBO | No | `"1080p"`
`"720p"` | La resolución para el vídeo generado. Este parámetro solo está disponible cuando `model` está configurado como `"kling-v3"`. | +| `seed` | INT | No | 0 a 2147483647 | Un número utilizado para controlar si el nodo debe volver a ejecutarse. Los resultados son no determinísticos independientemente del valor de `seed` (valor por defecto: 0). | + +**Nota:** Las imágenes `first_frame` y `end_frame` deben cumplir con los requisitos de tamaño mínimo y relación de aspecto especificados para que el nodo funcione correctamente. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `output` | VIDEO | El archivo de vídeo generado. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/fr.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/fr.md new file mode 100644 index 000000000..c314c5efe --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/fr.md @@ -0,0 +1,24 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/fr.md) + +Ce nœud utilise le modèle Kling 3.0 pour générer une vidéo. Il crée la vidéo à partir d'une description textuelle, d'une durée spécifiée et de deux images fournies : une image de départ et une image de fin. Le nœud peut également générer une bande-son accompagnant la vidéo. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Oui | N/A | La description textuelle qui guide la génération de la vidéo. Doit contenir entre 1 et 2500 caractères. | +| `duration` | INT | Non | 3 à 15 | La durée de la vidéo en secondes (par défaut : 5). | +| `first_frame` | IMAGE | Oui | N/A | L'image de départ pour la vidéo. Doit mesurer au moins 300x300 pixels et avoir un rapport d'aspect compris entre 1:2,5 et 2,5:1. | +| `end_frame` | IMAGE | Oui | N/A | L'image de fin pour la vidéo. Doit mesurer au moins 300x300 pixels et avoir un rapport d'aspect compris entre 1:2,5 et 2,5:1. | +| `generate_audio` | BOOLEAN | Non | N/A | Contrôle si une bande-son doit être générée pour la vidéo (par défaut : True). | +| `model` | COMBO | Non | `"kling-v3"` | Modèle et paramètres de génération. La sélection de cette option révèle un paramètre imbriqué `resolution`. | +| `model.resolution` | COMBO | Non | `"1080p"`
`"720p"` | La résolution de la vidéo générée. Ce paramètre n'est disponible que lorsque `model` est défini sur `"kling-v3"`. | +| `seed` | INT | Non | 0 à 2147483647 | Un nombre utilisé pour contrôler si le nœud doit être réexécuté. Les résultats sont non déterministes quelle que soit la valeur du `seed` (par défaut : 0). | + +**Note :** Les images `first_frame` et `end_frame` doivent respecter les exigences de taille minimale et de rapport d'aspect spécifiées pour que le nœud fonctionne correctement. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ja.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ja.md new file mode 100644 index 000000000..648bcdd9b --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ja.md @@ -0,0 +1,24 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ja.md) + +このノードはKling 3.0モデルを使用して動画を生成します。テキストプロンプト、指定された長さ、および提供された2枚の画像(開始フレームと終了フレーム)に基づいて動画を作成します。また、動画に付随する音声を生成することもできます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | はい | N/A | 動画生成を導くテキスト記述です。1文字から2500文字の間である必要があります。 | +| `duration` | INT | いいえ | 3 から 15 | 動画の長さ(秒単位)です(デフォルト: 5)。 | +| `first_frame` | IMAGE | はい | N/A | 動画の開始画像です。少なくとも300x300ピクセル以上で、アスペクト比が1:2.5から2.5:1の間である必要があります。 | +| `end_frame` | IMAGE | はい | N/A | 動画の終了画像です。少なくとも300x300ピクセル以上で、アスペクト比が1:2.5から2.5:1の間である必要があります。 | +| `generate_audio` | BOOLEAN | いいえ | N/A | 動画の音声を生成するかどうかを制御します(デフォルト: True)。 | +| `model` | COMBO | いいえ | `"kling-v3"` | モデルと生成設定です。このオプションを選択すると、ネストされた`resolution`パラメータが表示されます。 | +| `model.resolution` | COMBO | いいえ | `"1080p"`
`"720p"` | 生成される動画の解像度です。このパラメータは`model`が`"kling-v3"`に設定されている場合にのみ利用可能です。 | +| `seed` | INT | いいえ | 0 から 2147483647 | ノードを再実行するかどうかを制御するために使用される数値です。シード値に関係なく結果は非決定的です(デフォルト: 0)。 | + +**注意:** `first_frame`と`end_frame`の画像は、ノードが正しく機能するために、指定された最小サイズとアスペクト比の要件を満たしている必要があります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `output` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ko.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ko.md new file mode 100644 index 000000000..8e5d25498 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ko.md @@ -0,0 +1,24 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ko.md) + +이 노드는 Kling 3.0 모델을 사용하여 비디오를 생성합니다. 텍스트 프롬프트, 지정된 지속 시간, 그리고 제공된 시작 프레임 이미지와 끝 프레임 이미지를 기반으로 비디오를 만듭니다. 또한 비디오에 대한 오디오도 생성할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 예 | N/A | 비디오 생성을 안내하는 텍스트 설명입니다. 길이는 1자에서 2500자 사이여야 합니다. | +| `duration` | INT | 아니요 | 3 ~ 15 | 비디오의 길이(초 단위)입니다 (기본값: 5). | +| `first_frame` | IMAGE | 예 | N/A | 비디오의 시작 이미지입니다. 최소 300x300 픽셀이어야 하며, 가로세로 비율은 1:2.5에서 2.5:1 사이여야 합니다. | +| `end_frame` | IMAGE | 예 | N/A | 비디오의 끝 이미지입니다. 최소 300x300 픽셀이어야 하며, 가로세로 비율은 1:2.5에서 2.5:1 사이여야 합니다. | +| `generate_audio` | BOOLEAN | 아니요 | N/A | 비디오에 대한 오디오를 생성할지 여부를 제어합니다 (기본값: True). | +| `model` | COMBO | 아니요 | `"kling-v3"` | 모델 및 생성 설정입니다. 이 옵션을 선택하면 중첩된 `resolution` 매개변수가 표시됩니다. | +| `model.resolution` | COMBO | 아니요 | `"1080p"`
`"720p"` | 생성된 비디오의 해상도입니다. 이 매개변수는 `model`이 `"kling-v3"`로 설정된 경우에만 사용할 수 있습니다. | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 노드가 다시 실행되어야 하는지 제어하는 데 사용되는 숫자입니다. 시드 값과 관계없이 결과는 비결정적입니다 (기본값: 0). | + +**참고:** `first_frame` 및 `end_frame` 이미지는 노드가 올바르게 작동하려면 지정된 최소 크기 및 가로세로 비율 요구 사항을 충족해야 합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `output` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/pt-BR.md new file mode 100644 index 000000000..9b6dc5da9 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/pt-BR.md @@ -0,0 +1,24 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/pt-BR.md) + +Este nó utiliza o modelo Kling 3.0 para gerar um vídeo. Ele cria o vídeo com base em um prompt de texto, uma duração especificada e duas imagens fornecidas: um quadro inicial e um quadro final. O nó também pode gerar áudio de acompanhamento para o vídeo. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sim | N/A | A descrição textual que orienta a geração do vídeo. Deve ter entre 1 e 2500 caracteres. | +| `duration` | INT | Não | 3 a 15 | A duração do vídeo em segundos (padrão: 5). | +| `first_frame` | IMAGE | Sim | N/A | A imagem inicial para o vídeo. Deve ter pelo menos 300x300 pixels e uma proporção de aspecto entre 1:2,5 e 2,5:1. | +| `end_frame` | IMAGE | Sim | N/A | A imagem final para o vídeo. Deve ter pelo menos 300x300 pixels e uma proporção de aspecto entre 1:2,5 e 2,5:1. | +| `generate_audio` | BOOLEAN | Não | N/A | Controla se o áudio deve ser gerado para o vídeo (padrão: Verdadeiro). | +| `model` | COMBO | Não | `"kling-v3"` | Modelo e configurações de geração. Selecionar esta opção revela um parâmetro aninhado `resolution`. | +| `model.resolution` | COMBO | Não | `"1080p"`
`"720p"` | A resolução para o vídeo gerado. Este parâmetro está disponível apenas quando `model` está definido como `"kling-v3"`. | +| `seed` | INT | Não | 0 a 2147483647 | Um número usado para controlar se o nó deve ser executado novamente. Os resultados são não determinísticos, independentemente do valor da semente (padrão: 0). | + +**Observação:** As imagens `first_frame` e `end_frame` devem atender aos requisitos mínimos de tamanho e proporção de aspecto especificados para que o nó funcione corretamente. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ru.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ru.md new file mode 100644 index 000000000..279de95f2 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ru.md @@ -0,0 +1,24 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/ru.md) + +Этот узел использует модель Kling 3.0 для генерации видео. Он создаёт видео на основе текстового описания, заданной длительности и двух предоставленных изображений: начального и конечного кадров. Узел также может генерировать сопровождающее видео аудио. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Да | Н/Д | Текстовое описание, которое направляет генерацию видео. Должно содержать от 1 до 2500 символов. | +| `duration` | INT | Нет | от 3 до 15 | Длительность видео в секундах (по умолчанию: 5). | +| `first_frame` | IMAGE | Да | Н/Д | Начальное изображение для видео. Должно быть не менее 300x300 пикселей и иметь соотношение сторон от 1:2.5 до 2.5:1. | +| `end_frame` | IMAGE | Да | Н/Д | Конечное изображение для видео. Должно быть не менее 300x300 пикселей и иметь соотношение сторон от 1:2.5 до 2.5:1. | +| `generate_audio` | BOOLEAN | Нет | Н/Д | Определяет, следует ли генерировать аудио для видео (по умолчанию: True). | +| `model` | COMBO | Нет | `"kling-v3"` | Модель и настройки генерации. Выбор этой опции открывает вложенный параметр `resolution`. | +| `model.resolution` | COMBO | Нет | `"1080p"`
`"720p"` | Разрешение для генерируемого видео. Этот параметр доступен только когда `model` установлен в `"kling-v3"`. | +| `seed` | INT | Нет | от 0 до 2147483647 | Число, используемое для управления тем, должен ли узел повторно запускаться. Результаты не являются детерминированными независимо от значения `seed` (по умолчанию: 0). | + +**Примечание:** Изображения `first_frame` и `end_frame` должны соответствовать указанным минимальным требованиям к размеру и соотношению сторон для корректной работы узла. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `output` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/tr.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/tr.md new file mode 100644 index 000000000..d6d904275 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/tr.md @@ -0,0 +1,24 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/tr.md) + +Bu düğüm, Kling 3.0 modelini kullanarak bir video oluşturur. Videoyu bir metin istemi, belirtilen bir süre ve sağlanan iki görüntü (başlangıç karesi ve bitiş karesi) temelinde üretir. Düğüm ayrıca video için eşlik eden ses de oluşturabilir. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Evet | Yok | Video oluşturmayı yönlendiren metin açıklaması. 1 ile 2500 karakter arasında olmalıdır. | +| `duration` | INT | Hayır | 3 ila 15 | Video uzunluğu saniye cinsinden (varsayılan: 5). | +| `first_frame` | IMAGE | Evet | Yok | Video için başlangıç görüntüsü. En az 300x300 piksel olmalı ve en boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. | +| `end_frame` | IMAGE | Evet | Yok | Video için bitiş görüntüsü. En az 300x300 piksel olmalı ve en boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. | +| `generate_audio` | BOOLEAN | Hayır | Yok | Video için ses oluşturulup oluşturulmayacağını kontrol eder (varsayılan: True). | +| `model` | COMBO | Hayır | `"kling-v3"` | Model ve oluşturma ayarları. Bu seçeneği belirlemek, iç içe bir `resolution` parametresini görünür kılar. | +| `model.resolution` | COMBO | Hayır | `"1080p"`
`"720p"` | Oluşturulan video için çözünürlük. Bu parametre yalnızca `model` `"kling-v3"` olarak ayarlandığında kullanılabilir. | +| `seed` | INT | Hayır | 0 ila 2147483647 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol etmek için kullanılan bir sayı. Sonuçlar, seed değerinden bağımsız olarak deterministik değildir (varsayılan: 0). | + +**Not:** `first_frame` ve `end_frame` görüntülerinin, düğümün doğru çalışması için belirtilen minimum boyut ve en boy oranı gereksinimlerini karşılaması gerekir. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh-TW.md new file mode 100644 index 000000000..7bc737cb2 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh-TW.md @@ -0,0 +1,24 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh-TW.md) + +此節點使用 Kling 3.0 模型來生成影片。它根據文字提示、指定的持續時間以及提供的兩張圖片(起始幀和結束幀)來創建影片。此節點還可以為影片生成伴隨的音訊。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | N/A | 引導影片生成的文字描述。長度必須介於 1 到 2500 個字元之間。 | +| `duration` | INT | 否 | 3 到 15 | 影片的長度,單位為秒(預設值:5)。 | +| `first_frame` | IMAGE | 是 | N/A | 影片的起始圖片。必須至少為 300x300 像素,且長寬比需介於 1:2.5 到 2.5:1 之間。 | +| `end_frame` | IMAGE | 是 | N/A | 影片的結束圖片。必須至少為 300x300 像素,且長寬比需介於 1:2.5 到 2.5:1 之間。 | +| `generate_audio` | BOOLEAN | 否 | N/A | 控制是否為影片生成音訊(預設值:True)。 | +| `model` | COMBO | 否 | `"kling-v3"` | 模型與生成設定。選擇此選項會顯示一個巢狀的 `resolution` 參數。 | +| `model.resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成影片的解析度。此參數僅在 `model` 設定為 `"kling-v3"` 時可用。 | +| `seed` | INT | 否 | 0 到 2147483647 | 用於控制節點是否應重新執行的數字。無論種子值為何,結果都是非確定性的(預設值:0)。 | + +**注意:** `first_frame` 和 `end_frame` 圖片必須符合指定的最小尺寸和長寬比要求,節點才能正常運作。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh.md b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh.md new file mode 100644 index 000000000..06cd3f2f0 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh.md @@ -0,0 +1,24 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingFirstLastFrameNode/zh.md) + +此节点使用 Kling 3.0 模型生成视频。它基于文本提示、指定时长以及提供的起始帧和结束帧两张图像来创建视频。该节点还可以为视频生成伴随音频。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | N/A | 指导视频生成的文本描述。长度必须在 1 到 2500 个字符之间。 | +| `duration` | INT | 否 | 3 到 15 | 视频的时长,单位为秒(默认值:5)。 | +| `first_frame` | IMAGE | 是 | N/A | 视频的起始图像。必须至少为 300x300 像素,且宽高比在 1:2.5 到 2.5:1 之间。 | +| `end_frame` | IMAGE | 是 | N/A | 视频的结束图像。必须至少为 300x300 像素,且宽高比在 1:2.5 到 2.5:1 之间。 | +| `generate_audio` | BOOLEAN | 否 | N/A | 控制是否为视频生成音频(默认值:True)。 | +| `model` | COMBO | 否 | `"kling-v3"` | 模型和生成设置。选择此选项会显示一个嵌套的 `resolution` 参数。 | +| `model.resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成视频的分辨率。此参数仅在 `model` 设置为 `"kling-v3"` 时可用。 | +| `seed` | INT | 否 | 0 到 2147483647 | 用于控制节点是否应重新运行的数字。无论种子值如何,结果都是非确定性的(默认值:0)。 | + +**注意:** `first_frame` 和 `end_frame` 图像必须满足指定的最小尺寸和宽高比要求,节点才能正常工作。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/KlingImage2VideoNode/ar.md b/comfyui_embedded_docs/docs/KlingImage2VideoNode/ar.md index 324eb87be..2bbf467f0 100644 --- a/comfyui_embedded_docs/docs/KlingImage2VideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingImage2VideoNode/ar.md @@ -21,4 +21,4 @@ |-------------|-----------|-------------| | `معرّف الفيديو` | VIDEO | مخرجات الفيديو المُنتَج. | | `المدة` | STRING | المُعرِّف الفريد للفيديو المُنتَج. | -| `المدة` | STRING | معلومات المدة للفيديو المُنتَج. | \ No newline at end of file +| `المدة` | STRING | معلومات المدة للفيديو المُنتَج. | diff --git a/comfyui_embedded_docs/docs/KlingImage2VideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingImage2VideoNode/pt-BR.md index c2e5ceed0..d7fe18e1f 100644 --- a/comfyui_embedded_docs/docs/KlingImage2VideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingImage2VideoNode/pt-BR.md @@ -21,4 +21,4 @@ O nó Kling Image to Video gera conteúdo de vídeo a partir de uma imagem inici |-------------|-----------|-------------| | `output` | VIDEO | A saída do vídeo gerado. | | `video_id` | STRING | Identificador único para o vídeo gerado. | -| `duration` | STRING | Informação de duração para o vídeo gerado. | \ No newline at end of file +| `duration` | STRING | Informação de duração para o vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingImage2VideoNode/tr.md b/comfyui_embedded_docs/docs/KlingImage2VideoNode/tr.md index a1310fe0b..277b920a5 100644 --- a/comfyui_embedded_docs/docs/KlingImage2VideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingImage2VideoNode/tr.md @@ -21,4 +21,4 @@ Kling Görüntüden Videoya Düğümü, başlangıç görüntüsünden metin ist |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Oluşturulan video çıktısı. | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı. | -| `süre` | STRING | Oluşturulan video için süre bilgisi. | \ No newline at end of file +| `süre` | STRING | Oluşturulan video için süre bilgisi. | diff --git a/comfyui_embedded_docs/docs/KlingImage2VideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingImage2VideoNode/zh-TW.md index bffaf3309..5b7457e62 100644 --- a/comfyui_embedded_docs/docs/KlingImage2VideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingImage2VideoNode/zh-TW.md @@ -21,4 +21,4 @@ Kling Image to Video 節點使用文字提示從起始影像生成影片內容 |-------------|-----------|-------------| | `video_id` | VIDEO | 生成的影片輸出。 | | `時長` | STRING | 生成影片的唯一識別碼。 | -| `時長` | STRING | 生成影片的持續時間資訊。 | \ No newline at end of file +| `時長` | STRING | 生成影片的持續時間資訊。 | diff --git a/comfyui_embedded_docs/docs/KlingImageGenerationNode/ar.md b/comfyui_embedded_docs/docs/KlingImageGenerationNode/ar.md index 40d0dd67e..ff4201759 100644 --- a/comfyui_embedded_docs/docs/KlingImageGenerationNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingImageGenerationNode/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | الصورة/الصور المُنشأة استنادًا إلى المعاملات المدخلة | \ No newline at end of file +| `output` | IMAGE | الصورة/الصور المُنشأة استنادًا إلى المعاملات المدخلة | diff --git a/comfyui_embedded_docs/docs/KlingImageGenerationNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingImageGenerationNode/pt-BR.md index 78e026846..3775adf2a 100644 --- a/comfyui_embedded_docs/docs/KlingImageGenerationNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingImageGenerationNode/pt-BR.md @@ -26,4 +26,4 @@ O nó Kling Image Generation gera imagens a partir de prompts de texto com a op | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | Imagem(ns) gerada(s) com base nos parâmetros de entrada | \ No newline at end of file +| `output` | IMAGE | Imagem(ns) gerada(s) com base nos parâmetros de entrada | diff --git a/comfyui_embedded_docs/docs/KlingImageGenerationNode/tr.md b/comfyui_embedded_docs/docs/KlingImageGenerationNode/tr.md index 13adac6b6..e140305f4 100644 --- a/comfyui_embedded_docs/docs/KlingImageGenerationNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingImageGenerationNode/tr.md @@ -26,4 +26,4 @@ Kling Image Generation Node, metin prompt'larından görüntüler oluşturur ve | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görsel(ler) | \ No newline at end of file +| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görsel(ler) | diff --git a/comfyui_embedded_docs/docs/KlingImageGenerationNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingImageGenerationNode/zh-TW.md index 4923eb9df..1ae814280 100644 --- a/comfyui_embedded_docs/docs/KlingImageGenerationNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingImageGenerationNode/zh-TW.md @@ -26,4 +26,4 @@ Kling 圖像生成節點能根據文字提示生成圖像,並可選擇使用 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | IMAGE | 根據輸入參數生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 根據輸入參數生成的圖像 | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ar.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ar.md index c545af9e1..c00df98d0 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ar.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | ملف الفيديو المُنشأ، والذي قد يتضمن صوتًا اعتمادًا على مدخل `generate_audio`. | \ No newline at end of file +| `video` | VIDEO | ملف الفيديو المُنشأ، والذي قد يتضمن صوتًا اعتمادًا على مدخل `generate_audio`. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/en.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/en.md index 8bb8b821d..7a25b23a8 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/en.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/en.md @@ -17,4 +17,4 @@ The Kling Image(First Frame) to Video with Audio node uses the Kling AI model to | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `video` | VIDEO | The generated video file, which may include audio depending on the `generate_audio` input. | \ No newline at end of file +| `video` | VIDEO | The generated video file, which may include audio depending on the `generate_audio` input. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/es.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/es.md index 02406200d..67a49bebf 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/es.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/es.md @@ -17,4 +17,4 @@ El nodo Kling Image(First Frame) to Video with Audio utiliza el modelo Kling AI | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `video` | VIDEO | El archivo de video generado, que puede incluir audio dependiendo de la entrada `generate_audio`. | \ No newline at end of file +| `video` | VIDEO | El archivo de video generado, que puede incluir audio dependiendo de la entrada `generate_audio`. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/fr.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/fr.md index e8c106e6f..342b7a3b8 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/fr.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/fr.md @@ -15,4 +15,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `video` | VIDEO | Le fichier vidéo généré, qui peut inclure de l'audio selon l'entrée `generate_audio`. | \ No newline at end of file +| `video` | VIDEO | Le fichier vidéo généré, qui peut inclure de l'audio selon l'entrée `generate_audio`. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ja.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ja.md index 0516e6f9f..08b680d55 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ja.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ja.md @@ -17,4 +17,4 @@ Kling Image(First Frame) to Video with Audio ノードは、Kling AI モデル | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成された動画ファイル。`generate_audio`入力に応じて音声が含まれる場合があります。 | \ No newline at end of file +| `video` | VIDEO | 生成された動画ファイル。`generate_audio`入力に応じて音声が含まれる場合があります。 | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ko.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ko.md index a583bc541..c7d267674 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ko.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ko.md @@ -17,4 +17,4 @@ Kling Image(First Frame) to Video with Audio 노드는 Kling AI 모델을 사용 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `video` | VIDEO | 생성된 동영상 파일입니다. `generate_audio` 입력에 따라 오디오가 포함될 수 있습니다. | \ No newline at end of file +| `video` | VIDEO | 생성된 동영상 파일입니다. `generate_audio` 입력에 따라 오디오가 포함될 수 있습니다. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/pt-BR.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/pt-BR.md index 2509f7083..e708412f4 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/pt-BR.md @@ -17,4 +17,4 @@ O nó Kling Image(First Frame) to Video with Audio utiliza o modelo Kling AI par | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | O arquivo de vídeo gerado, que pode incluir áudio dependendo da entrada `generate_audio`. | \ No newline at end of file +| `video` | VIDEO | O arquivo de vídeo gerado, que pode incluir áudio dependendo da entrada `generate_audio`. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ru.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ru.md index 63ade69e9..31ed79114 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ru.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/ru.md @@ -17,4 +17,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `video` | VIDEO | Сгенерированный видеофайл, который может содержать аудио в зависимости от входного параметра `generate_audio`. | \ No newline at end of file +| `video` | VIDEO | Сгенерированный видеофайл, который может содержать аудио в зависимости от входного параметра `generate_audio`. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/tr.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/tr.md index f49b3ef7e..172e49943 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/tr.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/tr.md @@ -17,4 +17,4 @@ Kling Image(First Frame) to Video with Audio düğümü, Kling AI modelini kulla | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | Oluşturulan video dosyası. `generate_audio` girişine bağlı olarak ses içerebilir. | \ No newline at end of file +| `video` | VIDEO | Oluşturulan video dosyası. `generate_audio` girişine bağlı olarak ses içerebilir. | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh-TW.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh-TW.md index 6a2ea65f7..3631cd973 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh-TW.md @@ -17,4 +17,4 @@ Kling Image(First Frame) to Video with Audio 節點使用 Kling AI 模型,從 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成的影片檔案,根據 `generate_audio` 輸入的設定,可能包含音訊。 | \ No newline at end of file +| `video` | VIDEO | 生成的影片檔案,根據 `generate_audio` 輸入的設定,可能包含音訊。 | diff --git a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh.md b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh.md index faa62bb47..63752f814 100644 --- a/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh.md +++ b/comfyui_embedded_docs/docs/KlingImageToVideoWithAudio/zh.md @@ -17,4 +17,4 @@ Kling Image(First Frame) to Video with Audio 节点使用 Kling AI 模型,从 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成的视频文件,根据 `generate_audio` 输入参数,可能包含音频。 | \ No newline at end of file +| `video` | VIDEO | 生成的视频文件,根据 `generate_audio` 输入参数,可能包含音频。 | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/ar.md index 51c05bfa9..a248a3cc5 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/ar.md @@ -27,4 +27,4 @@ | `معرّف الفيديو` | VIDEO | الفيديو المعالج مع حركات الشفاه المتزامنة | | `المدة` | STRING | المعرف الفريد للفيديو المعالج | | `duration` | STRING | مدة الفيديو المعالج | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/pt-BR.md index 4a9a2c002..7cbd26d0d 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/pt-BR.md @@ -25,4 +25,4 @@ O nó Kling Lip Sync Audio to Video sincroniza os movimentos da boca em um arqui |-------------|-----------|-------------| | `output` | VIDEO | O vídeo processado com movimentos de boca sincronizados | | `video_id` | STRING | O identificador único para o vídeo processado | -| `duration` | STRING | A duração do vídeo processado | \ No newline at end of file +| `duration` | STRING | A duração do vídeo processado | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/tr.md index b2f6ce9d4..5d3d5f9bf 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/tr.md @@ -25,4 +25,4 @@ Kling Lip Sync Audio to Video Node, bir video dosyasındaki ağız hareketlerini |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Dudak senkronizasyonu uygulanmış ağız hareketlerine sahip işlenmiş video | | `süre` | STRING | İşlenmiş video için benzersiz tanımlayıcı | -| `duration` | STRING | İşlenmiş videonun süresi | \ No newline at end of file +| `duration` | STRING | İşlenmiş videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/zh-TW.md index c4145ada2..d43c52d66 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncAudioToVideoNode/zh-TW.md @@ -25,4 +25,4 @@ Kling Lip Sync Audio to Video Node 可將影片檔案中的嘴部動作與音訊 |-------------|-----------|-------------| | `影片 ID` | VIDEO | 經過處理並具有唇形同步嘴部動作的影片 | | `時長` | STRING | 已處理影片的唯一識別碼 | -| `duration` | STRING | 已處理影片的持續時間 | \ No newline at end of file +| `duration` | STRING | 已處理影片的持續時間 | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/ar.md index b92c69516..fd3b42bfc 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/ar.md @@ -23,4 +23,4 @@ |-------------|-----------|-------------| | `معرّف الفيديو` | VIDEO | الفيديو المُنشء مع الصوت المتزامن مع حركة الشفاه | | `المدة` | STRING | المعرف الفريد للفيديو المُنشأ | -| `duration` | STRING | معلومات مدة الفيديو المُنشأ | \ No newline at end of file +| `duration` | STRING | معلومات مدة الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/pt-BR.md index 3902fcd5c..b51f0f97a 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/pt-BR.md @@ -23,4 +23,4 @@ O nó Kling Lip Sync Text to Video sincroniza os movimentos da boca em um arquiv |-------------|-----------|-------------| | `output` | VIDEO | Vídeo gerado com áudio sincronizado labialmente | | `video_id` | STRING | Identificador único para o vídeo gerado | -| `duration` | STRING | Informação de duração para o vídeo gerado | \ No newline at end of file +| `duration` | STRING | Informação de duração para o vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/tr.md index 7c167929a..03d70d5f0 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/tr.md @@ -23,4 +23,4 @@ Kling Lip Sync Text to Video Node, bir video dosyasındaki ağız hareketlerini |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Dudak senkronizasyonlu ses ile oluşturulan video | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `duration` | STRING | Oluşturulan video için süre bilgisi | \ No newline at end of file +| `duration` | STRING | Oluşturulan video için süre bilgisi | diff --git a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/zh-TW.md index b6a5d2d04..20891b21a 100644 --- a/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingLipSyncTextToVideoNode/zh-TW.md @@ -23,4 +23,4 @@ Kling Lip Sync Text to Video 節點可將影片檔案中的嘴部動作與文字 |-------------|-----------|-------------| | `影片 ID` | VIDEO | 帶有唇語同步音訊的生成影片 | | `時長` | STRING | 生成影片的唯一識別碼 | -| `duration` | STRING | 生成影片的持續時間資訊 | \ No newline at end of file +| `duration` | STRING | 生成影片的持續時間資訊 | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/ar.md b/comfyui_embedded_docs/docs/KlingMotionControl/ar.md index 73b3c18f7..25e738bed 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/ar.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/ar.md @@ -12,11 +12,12 @@ | `mode` | COMBO | لا | `"pro"`
`"std"` | وضع التوليد المراد استخدامه. | **القيود:** -* يجب أن تكون مدة `reference_video` بين 3 و 30 ثانية عندما يكون `character_orientation` مضبوطًا على `"video"`. -* يجب أن تكون مدة `reference_video` بين 3 و 10 ثوانٍ عندما يكون `character_orientation` مضبوطًا على `"image"`. + +* يجب أن تكون مدة `reference_video` بين 3 و 30 ثانية عندما يكون `character_orientation` مضبوطًا على `"video"`. +* يجب أن تكون مدة `reference_video` بين 3 و 10 ثوانٍ عندما يكون `character_orientation` مضبوطًا على `"image"`. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ مع الشخصية التي تؤدي الحركة من الفيديو المرجعي. | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ مع الشخصية التي تؤدي الحركة من الفيديو المرجعي. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/en.md b/comfyui_embedded_docs/docs/KlingMotionControl/en.md index 9899e1530..40dc644ae 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/en.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/en.md @@ -14,11 +14,12 @@ The Kling Motion Control node generates a video by applying the motion, expressi | `mode` | COMBO | No | `"pro"`
`"std"` | The generation mode to use. | **Constraints:** -* The `reference_video` duration must be between 3 and 30 seconds when `character_orientation` is set to `"video"`. -* The `reference_video` duration must be between 3 and 10 seconds when `character_orientation` is set to `"image"`. + +* The `reference_video` duration must be between 3 and 30 seconds when `character_orientation` is set to `"video"`. +* The `reference_video` duration must be between 3 and 10 seconds when `character_orientation` is set to `"image"`. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video with the character performing the motion from the reference video. | \ No newline at end of file +| `output` | VIDEO | The generated video with the character performing the motion from the reference video. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/es.md b/comfyui_embedded_docs/docs/KlingMotionControl/es.md index ffe2ab024..65f5c2410 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/es.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/es.md @@ -14,11 +14,12 @@ El nodo Kling Motion Control genera un vídeo aplicando el movimiento, las expre | `mode` | COMBO | No | `"pro"`
`"std"` | El modo de generación a utilizar. | **Restricciones:** -* La duración del `reference_video` debe estar entre 3 y 30 segundos cuando `character_orientation` está configurado en `"video"`. -* La duración del `reference_video` debe estar entre 3 y 10 segundos cuando `character_orientation` está configurado en `"image"`. + +* La duración del `reference_video` debe estar entre 3 y 30 segundos cuando `character_orientation` está configurado en `"video"`. +* La duración del `reference_video` debe estar entre 3 y 10 segundos cuando `character_orientation` está configurado en `"image"`. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El vídeo generado con el personaje realizando el movimiento del vídeo de referencia. | \ No newline at end of file +| `output` | VIDEO | El vídeo generado con el personaje realizando el movimiento del vídeo de referencia. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/fr.md b/comfyui_embedded_docs/docs/KlingMotionControl/fr.md index 19d199c4e..0d6247a1e 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/fr.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/fr.md @@ -12,11 +12,12 @@ | `mode` | COMBO | Non | `"pro"`
`"std"` | Le mode de génération à utiliser. | **Contraintes :** -* La durée de la `reference_video` doit être comprise entre 3 et 30 secondes lorsque `character_orientation` est défini sur `"video"`. -* La durée de la `reference_video` doit être comprise entre 3 et 10 secondes lorsque `character_orientation` est défini sur `"image"`. + +* La durée de la `reference_video` doit être comprise entre 3 et 30 secondes lorsque `character_orientation` est défini sur `"video"`. +* La durée de la `reference_video` doit être comprise entre 3 et 10 secondes lorsque `character_orientation` est défini sur `"image"`. ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | La vidéo générée avec le personnage exécutant le mouvement de la vidéo de référence. | \ No newline at end of file +| `output` | VIDEO | La vidéo générée avec le personnage exécutant le mouvement de la vidéo de référence. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/ja.md b/comfyui_embedded_docs/docs/KlingMotionControl/ja.md index 0da968537..b0e6cbc6c 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/ja.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/ja.md @@ -14,11 +14,12 @@ Kling Motion Control ノードは、参照動画から抽出した動き、表 | `mode` | COMBO | いいえ | `"pro"`
`"std"` | 使用する生成モードです。 | **制約事項:** -* `character_orientation` が `"video"` に設定されている場合、`reference_video` の長さは3秒から30秒の間である必要があります。 -* `character_orientation` が `"image"` に設定されている場合、`reference_video` の長さは3秒から10秒の間である必要があります。 + +* `character_orientation` が `"video"` に設定されている場合、`reference_video` の長さは3秒から30秒の間である必要があります。 +* `character_orientation` が `"image"` に設定されている場合、`reference_video` の長さは3秒から10秒の間である必要があります。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 参照動画の動きをキャラクターが行っている生成された動画です。 | \ No newline at end of file +| `output` | VIDEO | 参照動画の動きをキャラクターが行っている生成された動画です。 | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/ko.md b/comfyui_embedded_docs/docs/KlingMotionControl/ko.md index 59cd1c4bf..e0e6cc9bd 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/ko.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/ko.md @@ -14,11 +14,12 @@ Kling Motion Control 노드는 참조 비디오의 동작, 표정, 카메라 움 | `mode` | COMBO | 아니요 | `"pro"`
`"std"` | 사용할 생성 모드입니다. | **제약 조건:** -* `character_orientation`이 `"video"`로 설정된 경우, `reference_video`의 지속 시간은 3초에서 30초 사이여야 합니다. -* `character_orientation`이 `"image"`로 설정된 경우, `reference_video`의 지속 시간은 3초에서 10초 사이여야 합니다. + +* `character_orientation`이 `"video"`로 설정된 경우, `reference_video`의 지속 시간은 3초에서 30초 사이여야 합니다. +* `character_orientation`이 `"image"`로 설정된 경우, `reference_video`의 지속 시간은 3초에서 10초 사이여야 합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 참조 비디오의 동작을 수행하는 캐릭터가 포함된 생성된 비디오입니다. | \ No newline at end of file +| `output` | VIDEO | 참조 비디오의 동작을 수행하는 캐릭터가 포함된 생성된 비디오입니다. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/pt-BR.md b/comfyui_embedded_docs/docs/KlingMotionControl/pt-BR.md index 8707daf05..d6f4f2b9e 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/pt-BR.md @@ -14,11 +14,12 @@ O nó Kling Motion Control gera um vídeo aplicando o movimento, as expressões | `mode` | COMBO | Não | `"pro"`
`"std"` | O modo de geração a ser usado. | **Restrições:** -* A duração do `reference_video` deve estar entre 3 e 30 segundos quando `character_orientation` estiver definido como `"video"`. -* A duração do `reference_video` deve estar entre 3 e 10 segundos quando `character_orientation` estiver definido como `"image"`. + +* A duração do `reference_video` deve estar entre 3 e 30 segundos quando `character_orientation` estiver definido como `"video"`. +* A duração do `reference_video` deve estar entre 3 e 10 segundos quando `character_orientation` estiver definido como `"image"`. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com o personagem executando o movimento do vídeo de referência. | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com o personagem executando o movimento do vídeo de referência. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/ru.md b/comfyui_embedded_docs/docs/KlingMotionControl/ru.md index 013ce165d..75e67adc6 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/ru.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/ru.md @@ -14,11 +14,12 @@ | `mode` | COMBO | Нет | `"pro"`
`"std"` | Режим генерации для использования. | **Ограничения:** -* Длительность `reference_video` должна составлять от 3 до 30 секунд, когда `character_orientation` установлен в `"video"`. -* Длительность `reference_video` должна составлять от 3 до 10 секунд, когда `character_orientation` установлен в `"image"`. + +* Длительность `reference_video` должна составлять от 3 до 30 секунд, когда `character_orientation` установлен в `"video"`. +* Длительность `reference_video` должна составлять от 3 до 10 секунд, когда `character_orientation` установлен в `"image"`. ## Выходы | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированное видео, в котором персонаж выполняет движение из референсного видео. | \ No newline at end of file +| `output` | VIDEO | Сгенерированное видео, в котором персонаж выполняет движение из референсного видео. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/tr.md b/comfyui_embedded_docs/docs/KlingMotionControl/tr.md index d12db7fbc..5f858eeb9 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/tr.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/tr.md @@ -14,11 +14,12 @@ Kling Motion Control düğümü, bir referans videodaki hareketi, ifadeleri ve k | `mode` | COMBO | Hayır | `"pro"`
`"std"` | Kullanılacak oluşturma modu. | **Kısıtlamalar:** -* `character_orientation` `"video"` olarak ayarlandığında, `reference_video` süresi 3 ile 30 saniye arasında olmalıdır. -* `character_orientation` `"image"` olarak ayarlandığında, `reference_video` süresi 3 ile 10 saniye arasında olmalıdır. + +* `character_orientation` `"video"` olarak ayarlandığında, `reference_video` süresi 3 ile 30 saniye arasında olmalıdır. +* `character_orientation` `"image"` olarak ayarlandığında, `reference_video` süresi 3 ile 10 saniye arasında olmalıdır. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Referans videodaki hareketi gerçekleştiren karakterin bulunduğu oluşturulmuş video. | \ No newline at end of file +| `output` | VIDEO | Referans videodaki hareketi gerçekleştiren karakterin bulunduğu oluşturulmuş video. | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/zh-TW.md b/comfyui_embedded_docs/docs/KlingMotionControl/zh-TW.md index 11a78dc24..465ef78ba 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/zh-TW.md @@ -14,11 +14,12 @@ Kling Motion Control 節點透過將參考影片中的動作、表情和攝影 | `mode` | COMBO | 否 | `"pro"`
`"std"` | 要使用的生成模式。 | **限制條件:** -* 當 `character_orientation` 設定為 `"video"` 時,`reference_video` 的持續時間必須介於 3 到 30 秒之間。 -* 當 `character_orientation` 設定為 `"image"` 時,`reference_video` 的持續時間必須介於 3 到 10 秒之間。 + +* 當 `character_orientation` 設定為 `"video"` 時,`reference_video` 的持續時間必須介於 3 到 30 秒之間。 +* 當 `character_orientation` 設定為 `"image"` 時,`reference_video` 的持續時間必須介於 3 到 10 秒之間。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片,其中角色執行了來自參考影片的動作。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片,其中角色執行了來自參考影片的動作。 | diff --git a/comfyui_embedded_docs/docs/KlingMotionControl/zh.md b/comfyui_embedded_docs/docs/KlingMotionControl/zh.md index 87fa8169d..a5325ea67 100644 --- a/comfyui_embedded_docs/docs/KlingMotionControl/zh.md +++ b/comfyui_embedded_docs/docs/KlingMotionControl/zh.md @@ -14,11 +14,12 @@ Kling Motion Control 节点通过将参考视频中的动作、表情和摄像 | `mode` | COMBO | 否 | `"pro"`
`"std"` | 要使用的生成模式。 | **约束条件:** -* 当 `character_orientation` 设置为 `"video"` 时,`reference_video` 的时长必须在 3 到 30 秒之间。 -* 当 `character_orientation` 设置为 `"image"` 时,`reference_video` 的时长必须在 3 到 10 秒之间。 + +* 当 `character_orientation` 设置为 `"video"` 时,`reference_video` 的时长必须在 3 到 30 秒之间。 +* 当 `character_orientation` 设置为 `"image"` 时,`reference_video` 的时长必须在 3 到 10 秒之间。 ## 输出结果 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频,其中角色执行参考视频中的动作。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频,其中角色执行参考视频中的动作。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ar.md index a7d8e6309..ca09c0ee1 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ar.md @@ -14,15 +14,16 @@ | `resolution` | COMBO | لا | `"1080p"`
`"720p"` | دقة الفيديو الناتج (الافتراضي: "1080p"). | **القيود والمحددات:** -* يجب أن يكون طول `prompt` بين 1 و 2500 حرفًا. -* يجب أن تكون مدة الفيديو المدخل `video` بين 3.0 و 10.05 ثانية. -* يجب أن تكون أبعاد الفيديو المدخل `video` بين 720x720 و 2160x2160 بكسل. -* يمكن تقديم حد أقصى 4 صور `reference_images` عند استخدام فيديو. -* يجب أن تكون كل صورة `reference_image` بمساحة لا تقل عن 300x300 بكسل. -* يجب أن تكون نسبة العرض إلى الارتفاع لكل صورة `reference_image` بين 1:2.5 و 2.5:1. + +* يجب أن يكون طول `prompt` بين 1 و 2500 حرفًا. +* يجب أن تكون مدة الفيديو المدخل `video` بين 3.0 و 10.05 ثانية. +* يجب أن تكون أبعاد الفيديو المدخل `video` بين 720x720 و 2160x2160 بكسل. +* يمكن تقديم حد أقصى 4 صور `reference_images` عند استخدام فيديو. +* يجب أن تكون كل صورة `reference_image` بمساحة لا تقل عن 300x300 بكسل. +* يجب أن تكون نسبة العرض إلى الارتفاع لكل صورة `reference_image` بين 1:2.5 و 2.5:1. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | الفيديو المُعدل الذي تم إنشاؤه بواسطة نموذج الذكاء الاصطناعي. | \ No newline at end of file +| `video` | VIDEO | الفيديو المُعدل الذي تم إنشاؤه بواسطة نموذج الذكاء الاصطناعي. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/en.md index 09e9224f9..66175c872 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/en.md @@ -14,15 +14,16 @@ The Kling Omni Edit Video (Pro) node uses an AI model to edit an existing video | `resolution` | COMBO | No | `"1080p"`
`"720p"` | The resolution for the output video (default: "1080p"). | **Constraints and Limitations:** -* The `prompt` must be between 1 and 2500 characters long. -* The input `video` must be between 3.0 and 10.05 seconds in duration. -* The input `video` dimensions must be between 720x720 and 2160x2160 pixels. -* A maximum of 4 `reference_images` can be provided when a video is used. -* Each `reference_image` must be at least 300x300 pixels. -* Each `reference_image` must have an aspect ratio between 1:2.5 and 2.5:1. + +* The `prompt` must be between 1 and 2500 characters long. +* The input `video` must be between 3.0 and 10.05 seconds in duration. +* The input `video` dimensions must be between 720x720 and 2160x2160 pixels. +* A maximum of 4 `reference_images` can be provided when a video is used. +* Each `reference_image` must be at least 300x300 pixels. +* Each `reference_image` must have an aspect ratio between 1:2.5 and 2.5:1. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `video` | VIDEO | The edited video generated by the AI model. | \ No newline at end of file +| `video` | VIDEO | The edited video generated by the AI model. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/es.md index 5729ca0fa..3112ce092 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/es.md @@ -14,15 +14,16 @@ El nodo Kling Omni Edit Video (Pro) utiliza un modelo de IA para editar un video | `resolution` | COMBO | No | `"1080p"`
`"720p"` | La resolución para el video de salida (por defecto: "1080p"). | **Restricciones y Limitaciones:** -* El `prompt` debe tener entre 1 y 2500 caracteres de longitud. -* El `video` de entrada debe tener una duración entre 3.0 y 10.05 segundos. -* Las dimensiones del `video` de entrada deben estar entre 720x720 y 2160x2160 píxeles. -* Se pueden proporcionar un máximo de 4 `reference_images` cuando se usa un video. -* Cada `reference_image` debe tener al menos 300x300 píxeles. -* Cada `reference_image` debe tener una relación de aspecto entre 1:2.5 y 2.5:1. + +* El `prompt` debe tener entre 1 y 2500 caracteres de longitud. +* El `video` de entrada debe tener una duración entre 3.0 y 10.05 segundos. +* Las dimensiones del `video` de entrada deben estar entre 720x720 y 2160x2160 píxeles. +* Se pueden proporcionar un máximo de 4 `reference_images` cuando se usa un video. +* Cada `reference_image` debe tener al menos 300x300 píxeles. +* Cada `reference_image` debe tener una relación de aspecto entre 1:2.5 y 2.5:1. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `video` | VIDEO | El video editado generado por el modelo de IA. | \ No newline at end of file +| `video` | VIDEO | El video editado generado por el modelo de IA. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/fr.md index c9a542950..7cf9389a1 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/fr.md @@ -14,15 +14,16 @@ Le nœud Kling Omni Edit Video (Pro) utilise un modèle d'IA pour modifier une v | `resolution` | COMBO | Non | `"1080p"`
`"720p"` | La résolution pour la vidéo de sortie (par défaut : "1080p"). | **Contraintes et limitations :** -* Le `prompt` doit compter entre 1 et 2500 caractères. -* La `video` d'entrée doit avoir une durée comprise entre 3,0 et 10,05 secondes. -* Les dimensions de la `video` d'entrée doivent être comprises entre 720x720 et 2160x2160 pixels. -* Un maximum de 4 `reference_images` peut être fourni lorsqu'une vidéo est utilisée. -* Chaque `reference_image` doit mesurer au moins 300x300 pixels. -* Chaque `reference_image` doit avoir un rapport d'aspect compris entre 1:2,5 et 2,5:1. + +* Le `prompt` doit compter entre 1 et 2500 caractères. +* La `video` d'entrée doit avoir une durée comprise entre 3,0 et 10,05 secondes. +* Les dimensions de la `video` d'entrée doivent être comprises entre 720x720 et 2160x2160 pixels. +* Un maximum de 4 `reference_images` peut être fourni lorsqu'une vidéo est utilisée. +* Chaque `reference_image` doit mesurer au moins 300x300 pixels. +* Chaque `reference_image` doit avoir un rapport d'aspect compris entre 1:2,5 et 2,5:1. ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `video` | VIDEO | La vidéo éditée générée par le modèle d'IA. | \ No newline at end of file +| `video` | VIDEO | La vidéo éditée générée par le modèle d'IA. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ja.md index f87ca851e..539b6160f 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ja.md @@ -14,15 +14,16 @@ Kling Omni Edit Video (Pro) ノードは、AIモデルを使用して既存の | `resolution` | COMBO | いいえ | `"1080p"`
`"720p"` | 出力動画の解像度です(デフォルト: "1080p")。 | **制約と制限:** -* `prompt` は1文字以上2500文字以下である必要があります。 -* 入力 `video` の長さは3.0秒以上10.05秒以下である必要があります。 -* 入力 `video` の寸法は720x720ピクセル以上2160x2160ピクセル以下である必要があります。 -* 動画を使用する場合、最大4枚までの `reference_images` を提供できます。 -* 各 `reference_image` は少なくとも300x300ピクセルである必要があります。 -* 各 `reference_image` のアスペクト比は1:2.5から2.5:1の間である必要があります。 + +* `prompt` は1文字以上2500文字以下である必要があります。 +* 入力 `video` の長さは3.0秒以上10.05秒以下である必要があります。 +* 入力 `video` の寸法は720x720ピクセル以上2160x2160ピクセル以下である必要があります。 +* 動画を使用する場合、最大4枚までの `reference_images` を提供できます。 +* 各 `reference_image` は少なくとも300x300ピクセルである必要があります。 +* 各 `reference_image` のアスペクト比は1:2.5から2.5:1の間である必要があります。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `video` | VIDEO | AIモデルによって生成された編集済み動画です。 | \ No newline at end of file +| `video` | VIDEO | AIモデルによって生成された編集済み動画です。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ko.md index 98ed95a6f..2c082da4b 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ko.md @@ -14,15 +14,16 @@ Kling Omni Edit Video (Pro) 노드는 AI 모델을 사용하여 기존 비디오 | `resolution` | COMBO | 아니요 | `"1080p"`
`"720p"` | 출력 비디오의 해상도입니다 (기본값: "1080p"). | **제약 사항 및 제한:** -* `prompt`는 1자에서 2500자 사이여야 합니다. -* 입력 `video`의 지속 시간은 3.0초에서 10.05초 사이여야 합니다. -* 입력 `video`의 크기는 720x720 픽셀에서 2160x2160 픽셀 사이여야 합니다. -* 비디오가 사용될 때 최대 4개의 `reference_images`를 제공할 수 있습니다. -* 각 `reference_image`는 최소 300x300 픽셀이어야 합니다. -* 각 `reference_image`의 종횡비는 1:2.5에서 2.5:1 사이여야 합니다. + +* `prompt`는 1자에서 2500자 사이여야 합니다. +* 입력 `video`의 지속 시간은 3.0초에서 10.05초 사이여야 합니다. +* 입력 `video`의 크기는 720x720 픽셀에서 2160x2160 픽셀 사이여야 합니다. +* 비디오가 사용될 때 최대 4개의 `reference_images`를 제공할 수 있습니다. +* 각 `reference_image`는 최소 300x300 픽셀이어야 합니다. +* 각 `reference_image`의 종횡비는 1:2.5에서 2.5:1 사이여야 합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `video` | VIDEO | AI 모델에 의해 생성된 편집된 비디오입니다. | \ No newline at end of file +| `video` | VIDEO | AI 모델에 의해 생성된 편집된 비디오입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/pt-BR.md index b7f8a536d..f09f34215 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/pt-BR.md @@ -14,15 +14,16 @@ O nó Kling Omni Edit Video (Pro) utiliza um modelo de IA para editar um vídeo | `resolution` | COMBO | Não | `"1080p"`
`"720p"` | A resolução para o vídeo de saída (padrão: "1080p"). | **Restrições e Limitações:** -* O `prompt` deve ter entre 1 e 2500 caracteres. -* O `video` de entrada deve ter uma duração entre 3,0 e 10,05 segundos. -* As dimensões do `video` de entrada devem estar entre 720x720 e 2160x2160 pixels. -* Um máximo de 4 `reference_images` pode ser fornecido quando um vídeo é usado. -* Cada `reference_image` deve ter pelo menos 300x300 pixels. -* Cada `reference_image` deve ter uma proporção de aspecto entre 1:2,5 e 2,5:1. + +* O `prompt` deve ter entre 1 e 2500 caracteres. +* O `video` de entrada deve ter uma duração entre 3,0 e 10,05 segundos. +* As dimensões do `video` de entrada devem estar entre 720x720 e 2160x2160 pixels. +* Um máximo de 4 `reference_images` pode ser fornecido quando um vídeo é usado. +* Cada `reference_image` deve ter pelo menos 300x300 pixels. +* Cada `reference_image` deve ter uma proporção de aspecto entre 1:2,5 e 2,5:1. ## Saídas | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | O vídeo editado gerado pelo modelo de IA. | \ No newline at end of file +| `video` | VIDEO | O vídeo editado gerado pelo modelo de IA. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ru.md index 5201c9a1a..0ed4e11e2 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/ru.md @@ -14,15 +14,16 @@ | `resolution` | COMBO | Нет | `"1080p"`
`"720p"` | Разрешение для выходного видео (по умолчанию: "1080p"). | **Ограничения:** -* Длина `prompt` должна составлять от 1 до 2500 символов. -* Длительность входного `video` должна быть от 3.0 до 10.05 секунд. -* Размеры входного `video` должны быть в диапазоне от 720x720 до 2160x2160 пикселей. -* При использовании видео можно предоставить максимум 4 `reference_images`. -* Каждое `reference_image` должно быть размером не менее 300x300 пикселей. -* Соотношение сторон каждого `reference_image` должно быть в диапазоне от 1:2.5 до 2.5:1. + +* Длина `prompt` должна составлять от 1 до 2500 символов. +* Длительность входного `video` должна быть от 3.0 до 10.05 секунд. +* Размеры входного `video` должны быть в диапазоне от 720x720 до 2160x2160 пикселей. +* При использовании видео можно предоставить максимум 4 `reference_images`. +* Каждое `reference_image` должно быть размером не менее 300x300 пикселей. +* Соотношение сторон каждого `reference_image` должно быть в диапазоне от 1:2.5 до 2.5:1. ## Выходные данные | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `video` | VIDEO | Отредактированное видео, сгенерированное моделью ИИ. | \ No newline at end of file +| `video` | VIDEO | Отредактированное видео, сгенерированное моделью ИИ. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/tr.md index af2ee39e2..052adeefe 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/tr.md @@ -14,15 +14,16 @@ Kling Omni Edit Video (Pro) düğümü, mevcut bir videoyu metin açıklamasına | `resolution` | COMBO | Hayır | `"1080p"`
`"720p"` | Çıktı videosu için çözünürlük (varsayılan: "1080p"). | **Kısıtlamalar ve Sınırlamalar:** -* `prompt` 1 ile 2500 karakter arasında olmalıdır. -* Giriş `video` süresi 3.0 ile 10.05 saniye arasında olmalıdır. -* Giriş `video` boyutları 720x720 ile 2160x2160 piksel arasında olmalıdır. -* Bir video kullanıldığında en fazla 4 `reference_images` sağlanabilir. -* Her bir `reference_image` en az 300x300 piksel olmalıdır. -* Her bir `reference_image` en boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. + +* `prompt` 1 ile 2500 karakter arasında olmalıdır. +* Giriş `video` süresi 3.0 ile 10.05 saniye arasında olmalıdır. +* Giriş `video` boyutları 720x720 ile 2160x2160 piksel arasında olmalıdır. +* Bir video kullanıldığında en fazla 4 `reference_images` sağlanabilir. +* Her bir `reference_image` en az 300x300 piksel olmalıdır. +* Her bir `reference_image` en boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | AI modeli tarafından oluşturulan düzenlenmiş video. | \ No newline at end of file +| `video` | VIDEO | AI modeli tarafından oluşturulan düzenlenmiş video. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh-TW.md index d7ade54e5..f39c1d415 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh-TW.md @@ -14,15 +14,16 @@ Kling Omni Edit Video (Pro) 節點使用 AI 模型,根據文字描述編輯現 | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 輸出影片的解析度(預設值:"1080p")。 | **限制與約束:** -* `prompt` 的長度必須在 1 到 2500 個字元之間。 -* 輸入的 `video` 時長必須在 3.0 到 10.05 秒之間。 -* 輸入的 `video` 尺寸必須在 720x720 到 2160x2160 像素之間。 -* 使用影片時,最多可以提供 4 張 `reference_images`。 -* 每張 `reference_image` 必須至少為 300x300 像素。 -* 每張 `reference_image` 的長寬比必須在 1:2.5 到 2.5:1 之間。 + +* `prompt` 的長度必須在 1 到 2500 個字元之間。 +* 輸入的 `video` 時長必須在 3.0 到 10.05 秒之間。 +* 輸入的 `video` 尺寸必須在 720x720 到 2160x2160 像素之間。 +* 使用影片時,最多可以提供 4 張 `reference_images`。 +* 每張 `reference_image` 必須至少為 300x300 像素。 +* 每張 `reference_image` 的長寬比必須在 1:2.5 到 2.5:1 之間。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 由 AI 模型生成的編輯後影片。 | \ No newline at end of file +| `video` | VIDEO | 由 AI 模型生成的編輯後影片。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh.md index 9779976bd..cdd2e9149 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProEditVideoNode/zh.md @@ -14,15 +14,16 @@ Kling Omni 编辑视频(专业版)节点使用 AI 模型,根据文本描 | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 输出视频的分辨率(默认值:"1080p")。 | **约束与限制:** -* `prompt` 的长度必须在 1 到 2500 个字符之间。 -* 输入 `video` 的时长必须在 3.0 到 10.05 秒之间。 -* 输入 `video` 的尺寸必须在 720x720 到 2160x2160 像素之间。 -* 使用视频时,最多可提供 4 张 `reference_images`。 -* 每张 `reference_image` 的尺寸必须至少为 300x300 像素。 -* 每张 `reference_image` 的宽高比必须在 1:2.5 到 2.5:1 之间。 + +* `prompt` 的长度必须在 1 到 2500 个字符之间。 +* 输入 `video` 的时长必须在 3.0 到 10.05 秒之间。 +* 输入 `video` 的尺寸必须在 720x720 到 2160x2160 像素之间。 +* 使用视频时,最多可提供 4 张 `reference_images`。 +* 每张 `reference_image` 的尺寸必须至少为 300x300 像素。 +* 每张 `reference_image` 的宽高比必须在 1:2.5 到 2.5:1 之间。 ## 输出 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 由 AI 模型生成的编辑后的视频。 | \ No newline at end of file +| `video` | VIDEO | 由 AI 模型生成的编辑后的视频。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ar.md index 4c52e878e..be853524b 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ar.md @@ -15,15 +15,16 @@ | `resolution` | COMBO | لا | `"1080p"`
`"720p"` | دقة الإخراج للفيديو المُنشأ (القيمة الافتراضية: "1080p"). | **قيود هامة:** -* لا يمكن استخدام مدخل `end_frame` في نفس الوقت مع مدخل `reference_images`. -* إذا لم تقم بتوفير `end_frame` أو أي `reference_images`، يمكن تعيين `duration` فقط إلى 5 أو 10 ثوانٍ. -* يجب أن يكون الحد الأدنى لأبعاد جميع الصور المدخلة (`first_frame`, `end_frame`, وأي `reference_images`) 300 بكسل في كل من العرض والارتفاع. -* يجب أن تكون نسبة العرض إلى الارتفاع لجميع الصور المدخلة بين 1:2.5 و 2.5:1. -* يمكن توفير حد أقصى 6 صور عبر مدخل `reference_images`. -* يجب أن يكون طول نص `prompt` بين 1 و 2500 حرف. + +* لا يمكن استخدام مدخل `end_frame` في نفس الوقت مع مدخل `reference_images`. +* إذا لم تقم بتوفير `end_frame` أو أي `reference_images`، يمكن تعيين `duration` فقط إلى 5 أو 10 ثوانٍ. +* يجب أن يكون الحد الأدنى لأبعاد جميع الصور المدخلة (`first_frame`, `end_frame`, وأي `reference_images`) 300 بكسل في كل من العرض والارتفاع. +* يجب أن تكون نسبة العرض إلى الارتفاع لجميع الصور المدخلة بين 1:2.5 و 2.5:1. +* يمكن توفير حد أقصى 6 صور عبر مدخل `reference_images`. +* يجب أن يكون طول نص `prompt` بين 1 و 2500 حرف. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/en.md index 4d9854a37..6fafd2b95 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/en.md @@ -15,15 +15,16 @@ This node uses the Kling AI model to generate a video. It requires a starting im | `resolution` | COMBO | No | `"1080p"`
`"720p"` | The output resolution for the generated video (default: "1080p"). | **Important Constraints:** -* The `end_frame` input cannot be used at the same time as the `reference_images` input. -* If you do not provide an `end_frame` or any `reference_images`, the `duration` can only be set to 5 or 10 seconds. -* All input images (`first_frame`, `end_frame`, and any `reference_images`) must have a minimum dimension of 300 pixels in both width and height. -* The aspect ratio of all input images must be between 1:2.5 and 2.5:1. -* A maximum of 6 images can be provided via the `reference_images` input. -* The `prompt` text must be between 1 and 2500 characters in length. + +* The `end_frame` input cannot be used at the same time as the `reference_images` input. +* If you do not provide an `end_frame` or any `reference_images`, the `duration` can only be set to 5 or 10 seconds. +* All input images (`first_frame`, `end_frame`, and any `reference_images`) must have a minimum dimension of 300 pixels in both width and height. +* The aspect ratio of all input images must be between 1:2.5 and 2.5:1. +* A maximum of 6 images can be provided via the `reference_images` input. +* The `prompt` text must be between 1 and 2500 characters in length. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video file. | \ No newline at end of file +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/es.md index 7b5f27ff8..ef8ef474b 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/es.md @@ -15,15 +15,16 @@ Este nodo utiliza el modelo Kling AI para generar un vídeo. Requiere una imagen | `resolution` | COMBO | No | `"1080p"`
`"720p"` | La resolución de salida para el vídeo generado (valor por defecto: "1080p"). | **Restricciones importantes:** -* La entrada `end_frame` no se puede utilizar al mismo tiempo que la entrada `reference_images`. -* Si no se proporciona un `end_frame` ni ninguna `reference_images`, la `duration` solo se puede establecer en 5 o 10 segundos. -* Todas las imágenes de entrada (`first_frame`, `end_frame` y cualquier `reference_images`) deben tener una dimensión mínima de 300 píxeles tanto en ancho como en alto. -* La relación de aspecto de todas las imágenes de entrada debe estar entre 1:2.5 y 2.5:1. -* Se pueden proporcionar un máximo de 6 imágenes a través de la entrada `reference_images`. -* El texto del `prompt` debe tener una longitud de entre 1 y 2500 caracteres. + +* La entrada `end_frame` no se puede utilizar al mismo tiempo que la entrada `reference_images`. +* Si no se proporciona un `end_frame` ni ninguna `reference_images`, la `duration` solo se puede establecer en 5 o 10 segundos. +* Todas las imágenes de entrada (`first_frame`, `end_frame` y cualquier `reference_images`) deben tener una dimensión mínima de 300 píxeles tanto en ancho como en alto. +* La relación de aspecto de todas las imágenes de entrada debe estar entre 1:2.5 y 2.5:1. +* Se pueden proporcionar un máximo de 6 imágenes a través de la entrada `reference_images`. +* El texto del `prompt` debe tener una longitud de entre 1 y 2500 caracteres. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de vídeo generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de vídeo generado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/fr.md index 10f1d2d3b..e148fcbc0 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/fr.md @@ -15,15 +15,16 @@ Ce nœud utilise le modèle Kling AI pour générer une vidéo. Il nécessite un | `resolution` | COMBO | Non | `"1080p"`
`"720p"` | La résolution de sortie pour la vidéo générée (par défaut : "1080p"). | **Contraintes importantes :** -* L'entrée `end_frame` ne peut pas être utilisée en même temps que l'entrée `reference_images`. -* Si vous ne fournissez pas d'`end_frame` ou d'`reference_images`, la `duration` ne peut être définie qu'à 5 ou 10 secondes. -* Toutes les images d'entrée (`first_frame`, `end_frame` et toutes les `reference_images`) doivent avoir une dimension minimale de 300 pixels en largeur et en hauteur. -* Le rapport d'aspect de toutes les images d'entrée doit être compris entre 1:2,5 et 2,5:1. -* Un maximum de 6 images peut être fourni via l'entrée `reference_images`. -* Le texte du `prompt` doit comporter entre 1 et 2500 caractères. + +* L'entrée `end_frame` ne peut pas être utilisée en même temps que l'entrée `reference_images`. +* Si vous ne fournissez pas d'`end_frame` ou d'`reference_images`, la `duration` ne peut être définie qu'à 5 ou 10 secondes. +* Toutes les images d'entrée (`first_frame`, `end_frame` et toutes les `reference_images`) doivent avoir une dimension minimale de 300 pixels en largeur et en hauteur. +* Le rapport d'aspect de toutes les images d'entrée doit être compris entre 1:2,5 et 2,5:1. +* Un maximum de 6 images peut être fourni via l'entrée `reference_images`. +* Le texte du `prompt` doit comporter entre 1 et 2500 caractères. ## Sorties | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ja.md index deb990174..ba82a35ea 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ja.md @@ -15,15 +15,16 @@ | `resolution` | COMBO | いいえ | `"1080p"`
`"720p"` | 生成される動画の出力解像度です(デフォルト: "1080p")。 | **重要な制約事項:** -* `end_frame`入力は、`reference_images`入力と同時に使用することはできません。 -* `end_frame`または`reference_images`を提供しない場合、`duration`は5秒または10秒にのみ設定できます。 -* すべての入力画像(`first_frame`、`end_frame`、および`reference_images`)は、幅と高さの両方で最小300ピクセルの寸法が必要です。 -* すべての入力画像のアスペクト比は、1:2.5から2.5:1の間でなければなりません。 -* `reference_images`入力を通じて提供できる画像は最大6枚です。 -* `prompt`テキストの長さは1文字から2500文字の間でなければなりません。 + +* `end_frame`入力は、`reference_images`入力と同時に使用することはできません。 +* `end_frame`または`reference_images`を提供しない場合、`duration`は5秒または10秒にのみ設定できます。 +* すべての入力画像(`first_frame`、`end_frame`、および`reference_images`)は、幅と高さの両方で最小300ピクセルの寸法が必要です。 +* すべての入力画像のアスペクト比は、1:2.5から2.5:1の間でなければなりません。 +* `reference_images`入力を通じて提供できる画像は最大6枚です。 +* `prompt`テキストの長さは1文字から2500文字の間でなければなりません。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成された動画ファイルです。 | \ No newline at end of file +| `output` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ko.md index cb02c427a..364edce5e 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ko.md @@ -15,15 +15,16 @@ | `resolution` | COMBO | 아니요 | `"1080p"`
`"720p"` | 생성된 비디오의 출력 해상도입니다 (기본값: "1080p"). | **중요 제약사항:** -* `end_frame` 입력은 `reference_images` 입력과 동시에 사용할 수 없습니다. -* `end_frame`이나 `reference_images`를 제공하지 않으면 `duration`은 5초 또는 10초로만 설정할 수 있습니다. -* 모든 입력 이미지(`first_frame`, `end_frame`, `reference_images`)는 너비와 높이 모두 최소 300픽셀의 크기를 가져야 합니다. -* 모든 입력 이미지의 종횡비는 1:2.5에서 2.5:1 사이여야 합니다. -* `reference_images` 입력을 통해 최대 6개의 이미지를 제공할 수 있습니다. -* `prompt` 텍스트는 길이가 1자에서 2500자 사이여야 합니다. + +* `end_frame` 입력은 `reference_images` 입력과 동시에 사용할 수 없습니다. +* `end_frame`이나 `reference_images`를 제공하지 않으면 `duration`은 5초 또는 10초로만 설정할 수 있습니다. +* 모든 입력 이미지(`first_frame`, `end_frame`, `reference_images`)는 너비와 높이 모두 최소 300픽셀의 크기를 가져야 합니다. +* 모든 입력 이미지의 종횡비는 1:2.5에서 2.5:1 사이여야 합니다. +* `reference_images` 입력을 통해 최대 6개의 이미지를 제공할 수 있습니다. +* `prompt` 텍스트는 길이가 1자에서 2500자 사이여야 합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 생성된 비디오 파일입니다. | \ No newline at end of file +| `output` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/pt-BR.md index 77bb08ab3..827030698 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/pt-BR.md @@ -15,15 +15,16 @@ Este nó utiliza o modelo Kling AI para gerar um vídeo. Ele requer uma imagem i | `resolution` | COMBO | Não | `"1080p"`
`"720p"` | A resolução de saída para o vídeo gerado (padrão: "1080p"). | **Restrições Importantes:** -* A entrada `end_frame` não pode ser usada ao mesmo tempo que a entrada `reference_images`. -* Se você não fornecer um `end_frame` ou qualquer `reference_images`, a `duration` só poderá ser definida como 5 ou 10 segundos. -* Todas as imagens de entrada (`first_frame`, `end_frame` e quaisquer `reference_images`) devem ter uma dimensão mínima de 300 pixels tanto em largura quanto em altura. -* A proporção de aspecto de todas as imagens de entrada deve estar entre 1:2,5 e 2,5:1. -* Um máximo de 6 imagens pode ser fornecido via entrada `reference_images`. -* O texto do `prompt` deve ter entre 1 e 2500 caracteres. + +* A entrada `end_frame` não pode ser usada ao mesmo tempo que a entrada `reference_images`. +* Se você não fornecer um `end_frame` ou qualquer `reference_images`, a `duration` só poderá ser definida como 5 ou 10 segundos. +* Todas as imagens de entrada (`first_frame`, `end_frame` e quaisquer `reference_images`) devem ter uma dimensão mínima de 300 pixels tanto em largura quanto em altura. +* A proporção de aspecto de todas as imagens de entrada deve estar entre 1:2,5 e 2,5:1. +* Um máximo de 6 imagens pode ser fornecido via entrada `reference_images`. +* O texto do `prompt` deve ter entre 1 e 2500 caracteres. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ru.md index 1f5edab34..1fa7c7670 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/ru.md @@ -15,6 +15,7 @@ | `resolution` | COMBO | Нет | `"1080p"`
`"720p"` | Разрешение выходного видео (по умолчанию: "1080p"). | **Важные ограничения:** -* Входной параметр `end_frame` не может использоваться одновременно с входным параметром `reference_images`. -* Если не предоставлены `end_frame` или `reference_images`, параметр `duration` можно установить только на 5 или 10 секунд. -* Все входные изображения (`first_frame`, `end_frame` и любые `reference_images \ No newline at end of file + +* Входной параметр `end_frame` не может использоваться одновременно с входным параметром `reference_images`. +* Если не предоставлены `end_frame` или `reference_images`, параметр `duration` можно установить только на 5 или 10 секунд. +* Все входные изображения (`first_frame`, `end_frame` и любые `reference_images diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/tr.md index a159942c5..699e4b354 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/tr.md @@ -15,15 +15,16 @@ Bu düğüm, bir video oluşturmak için Kling AI modelini kullanır. Bir başla | `resolution` | COMBO | Hayır | `"1080p"`
`"720p"` | Oluşturulan video için çıktı çözünürlüğü (varsayılan: "1080p"). | **Önemli Kısıtlamalar:** -* `end_frame` girdisi, `reference_images` girdisi ile aynı anda kullanılamaz. -* Bir `end_frame` veya herhangi bir `reference_images` sağlamazsanız, `duration` yalnızca 5 veya 10 saniye olarak ayarlanabilir. -* Tüm girdi görselleri (`first_frame`, `end_frame` ve herhangi bir `reference_images`) hem genişlik hem de yükseklikte minimum 300 piksel boyutuna sahip olmalıdır. -* Tüm girdi görsellerinin en-boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. -* `reference_images` girdisi aracılığıyla en fazla 6 görsel sağlanabilir. -* `prompt` metni 1 ile 2500 karakter uzunluğunda olmalıdır. + +* `end_frame` girdisi, `reference_images` girdisi ile aynı anda kullanılamaz. +* Bir `end_frame` veya herhangi bir `reference_images` sağlamazsanız, `duration` yalnızca 5 veya 10 saniye olarak ayarlanabilir. +* Tüm girdi görselleri (`first_frame`, `end_frame` ve herhangi bir `reference_images`) hem genişlik hem de yükseklikte minimum 300 piksel boyutuna sahip olmalıdır. +* Tüm girdi görsellerinin en-boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. +* `reference_images` girdisi aracılığıyla en fazla 6 görsel sağlanabilir. +* `prompt` metni 1 ile 2500 karakter uzunluğunda olmalıdır. ## Çıktılar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh-TW.md index e47331020..f1a3cc313 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh-TW.md @@ -15,15 +15,16 @@ | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成影片的輸出解析度(預設值:"1080p")。 | **重要限制:** -* `end_frame` 輸入不能與 `reference_images` 輸入同時使用。 -* 如果您沒有提供 `end_frame` 或任何 `reference_images`,則 `duration` 只能設定為 5 或 10 秒。 -* 所有輸入圖片(`first_frame`、`end_frame` 以及任何 `reference_images`)的寬度和高度都必須至少為 300 像素。 -* 所有輸入圖片的長寬比必須在 1:2.5 到 2.5:1 之間。 -* 透過 `reference_images` 輸入最多可提供 6 張圖片。 -* `prompt` 文字的長度必須在 1 到 2500 個字元之間。 + +* `end_frame` 輸入不能與 `reference_images` 輸入同時使用。 +* 如果您沒有提供 `end_frame` 或任何 `reference_images`,則 `duration` 只能設定為 5 或 10 秒。 +* 所有輸入圖片(`first_frame`、`end_frame` 以及任何 `reference_images`)的寬度和高度都必須至少為 300 像素。 +* 所有輸入圖片的長寬比必須在 1:2.5 到 2.5:1 之間。 +* 透過 `reference_images` 輸入最多可提供 6 張圖片。 +* `prompt` 文字的長度必須在 1 到 2500 個字元之間。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh.md index 071b67181..9012cbce1 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProFirstLastFrameNode/zh.md @@ -15,15 +15,16 @@ | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成视频的输出分辨率(默认:"1080p")。 | **重要限制:** -* `end_frame` 输入不能与 `reference_images` 输入同时使用。 -* 如果您不提供 `end_frame` 或任何 `reference_images`,则 `duration` 只能设置为 5 或 10 秒。 -* 所有输入图像(`first_frame`、`end_frame` 以及任何 `reference_images`)的宽度和高度都必须至少为 300 像素。 -* 所有输入图像的宽高比必须在 1:2.5 到 2.5:1 之间。 -* 通过 `reference_images` 输入最多可提供 6 张图像。 -* `prompt` 文本的长度必须在 1 到 2500 个字符之间。 + +* `end_frame` 输入不能与 `reference_images` 输入同时使用。 +* 如果您不提供 `end_frame` 或任何 `reference_images`,则 `duration` 只能设置为 5 或 10 秒。 +* 所有输入图像(`first_frame`、`end_frame` 以及任何 `reference_images`)的宽度和高度都必须至少为 300 像素。 +* 所有输入图像的宽高比必须在 1:2.5 到 2.5:1 之间。 +* 通过 `reference_images` 输入最多可提供 6 张图像。 +* `prompt` 文本的长度必须在 1 到 2500 个字符之间。 ## 输出参数 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ar.md index d4c8a777f..71f67544b 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | | :--- | :--- | :--- | -| `image` | IMAGE | الصورة النهائية التي تم إنشاؤها أو تحريرها بواسطة نموذج Kling AI. | \ No newline at end of file +| `image` | IMAGE | الصورة النهائية التي تم إنشاؤها أو تحريرها بواسطة نموذج Kling AI. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/en.md index c83db38bf..967c7eeb6 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/en.md @@ -16,4 +16,4 @@ The Kling Omni Image (Pro) node generates or edits images using the Kling AI mod | Output Name | Data Type | Description | | :--- | :--- | :--- | -| `image` | IMAGE | The final image generated or edited by the Kling AI model. | \ No newline at end of file +| `image` | IMAGE | The final image generated or edited by the Kling AI model. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/es.md index ea4511ee9..e2ca8c6d8 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/es.md @@ -16,4 +16,4 @@ El nodo Kling Omni Image (Pro) genera o edita imágenes utilizando el modelo de | Nombre de Salida | Tipo de Dato | Descripción | | :--- | :--- | :--- | -| `image` | IMAGE | La imagen final generada o editada por el modelo de IA Kling. | \ No newline at end of file +| `image` | IMAGE | La imagen final generada o editada por el modelo de IA Kling. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/fr.md index db5d03f76..945626710 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/fr.md @@ -16,4 +16,4 @@ Le nœud Kling Omni Image (Pro) génère ou modifie des images en utilisant le m | Nom de sortie | Type de données | Description | | :--- | :--- | :--- | -| `image` | IMAGE | L'image finale générée ou modifiée par le modèle Kling AI. | \ No newline at end of file +| `image` | IMAGE | L'image finale générée ou modifiée par le modèle Kling AI. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ja.md index ece0e731c..7fc1f1545 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ja.md @@ -16,4 +16,4 @@ Kling Omni Image (Pro) ノードは、Kling AI モデルを使用して画像を | 出力名 | データ型 | 説明 | | :--- | :--- | :--- | -| `image` | IMAGE | Kling AIモデルによって生成または編集された最終的な画像です。 | \ No newline at end of file +| `image` | IMAGE | Kling AIモデルによって生成または編集された最終的な画像です。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ko.md index 75a6d3c7a..af89d39b6 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ko.md @@ -16,4 +16,4 @@ Kling Omni 이미지 (Pro) 노드는 Kling AI 모델을 사용하여 이미지 | 출력 이름 | 데이터 타입 | 설명 | | :--- | :--- | :--- | -| `image` | IMAGE | Kling AI 모델에 의해 생성되거나 편집된 최종 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | Kling AI 모델에 의해 생성되거나 편집된 최종 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/pt-BR.md index 48e3b88c0..9dd471c13 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/pt-BR.md @@ -16,4 +16,4 @@ O nó Kling Omni Image (Pro) gera ou edita imagens usando o modelo Kling AI. Ele | Nome da Saída | Tipo de Dados | Descrição | | :--- | :--- | :--- | -| `image` | IMAGE | A imagem final gerada ou editada pelo modelo Kling AI. | \ No newline at end of file +| `image` | IMAGE | A imagem final gerada ou editada pelo modelo Kling AI. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ru.md index 6f723a6b3..4d3942300 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/ru.md @@ -16,4 +16,4 @@ | Выходной параметр | Тип данных | Описание | | :--- | :--- | :--- | -| `image` | IMAGE | Итоговое изображение, сгенерированное или отредактированное моделью Kling AI. | \ No newline at end of file +| `image` | IMAGE | Итоговое изображение, сгенерированное или отредактированное моделью Kling AI. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/tr.md index 2f9218d23..0f737b797 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/tr.md @@ -16,4 +16,4 @@ Kling Omni Image (Pro) düğümü, Kling AI modelini kullanarak görüntüler ol | Çıkış Adı | Veri Türü | Açıklama | | :--- | :--- | :--- | -| `image` | IMAGE | Kling AI modeli tarafından oluşturulan veya düzenlenen nihai görüntü. | \ No newline at end of file +| `image` | IMAGE | Kling AI modeli tarafından oluşturulan veya düzenlenen nihai görüntü. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh-TW.md index b1ad37f5d..64f28ec89 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh-TW.md @@ -16,4 +16,4 @@ Kling Omni Image (Pro) 節點使用 Kling AI 模型生成或編輯圖像。它 | 輸出名稱 | 資料類型 | 描述 | | :--- | :--- | :--- | -| `image` | IMAGE | 由 Kling AI 模型生成或編輯的最終圖像。 | \ No newline at end of file +| `image` | IMAGE | 由 Kling AI 模型生成或編輯的最終圖像。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh.md index 69de47600..db2b2561c 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageNode/zh.md @@ -16,4 +16,4 @@ Kling Omni 图像(专业版)节点使用 Kling AI 模型生成或编辑图 | 输出名称 | 数据类型 | 描述 | | :--- | :--- | :--- | -| `image` | IMAGE | 由 Kling AI 模型生成或编辑的最终图像。 | \ No newline at end of file +| `image` | IMAGE | 由 Kling AI 模型生成或编辑的最终图像。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ar.md index cf63328a7..c56895a1a 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/en.md index 0c4a6d7cc..70cc08bb4 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/en.md @@ -19,4 +19,4 @@ This node uses the Kling AI model to generate a video based on a text prompt and | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video file. | \ No newline at end of file +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/es.md index e27b76ad6..fad64d766 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/es.md @@ -19,4 +19,4 @@ Este nodo utiliza el modelo Kling AI para generar un video basado en un texto de | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de video generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/fr.md index 64df3ee1c..d40d10aa7 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/fr.md @@ -19,4 +19,4 @@ Ce nœud utilise le modèle Kling AI pour générer une vidéo à partir d'un te | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ja.md index 976955ba1..85c00c33c 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ja.md @@ -19,4 +19,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成された動画ファイルです。 | \ No newline at end of file +| `output` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ko.md index be7dffda4..b7c6b56be 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ko.md @@ -19,4 +19,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 생성된 비디오 파일입니다. | \ No newline at end of file +| `output` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/pt-BR.md index 114c0de2f..b2c2ed986 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/pt-BR.md @@ -19,4 +19,4 @@ Este nó utiliza o modelo Kling AI para gerar um vídeo com base em um prompt de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ru.md index 848addba1..8f9720328 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/ru.md @@ -19,4 +19,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированный видеофайл. | \ No newline at end of file +| `output` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/tr.md index f42f7e10e..f9f7b6ea8 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/tr.md @@ -19,4 +19,4 @@ Bu düğüm, Kling AI modelini kullanarak bir metin istemine ve en fazla yedi re | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh-TW.md index b79761801..ec0b0e18a 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh-TW.md @@ -19,4 +19,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh.md index 39bbeec25..f112c0133 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProImageToVideoNode/zh.md @@ -19,4 +19,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ar.md index d364ee092..17ab2ae6f 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ بناءً على المطالبة النصية المقدمة. | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ بناءً على المطالبة النصية المقدمة. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/en.md index 66b7e9c65..47cfe8a2b 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/en.md @@ -16,4 +16,4 @@ This node uses the Kling AI model to generate a video from a text description. I | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The video generated based on the provided text prompt. | \ No newline at end of file +| `output` | VIDEO | The video generated based on the provided text prompt. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/es.md index 7eb1ba187..cdc55237c 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/es.md @@ -16,4 +16,4 @@ Este nodo utiliza el modelo Kling AI para generar un video a partir de una descr | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El video generado basado en el *prompt* de texto proporcionado. | \ No newline at end of file +| `output` | VIDEO | El video generado basado en el *prompt* de texto proporcionado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/fr.md index 53a30b6ba..fdaef993a 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/fr.md @@ -16,4 +16,4 @@ Ce nœud utilise le modèle Kling AI pour générer une vidéo à partir d'une d | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | La vidéo générée sur la base du prompt textuel fourni. | \ No newline at end of file +| `output` | VIDEO | La vidéo générée sur la base du prompt textuel fourni. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ja.md index becee3647..a3e283207 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ja.md @@ -16,4 +16,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 提供されたテキストプロンプトに基づいて生成された動画です。 | \ No newline at end of file +| `output` | VIDEO | 提供されたテキストプロンプトに基づいて生成された動画です。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ko.md index ef0d579d1..2277b287c 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ko.md @@ -16,4 +16,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 제공된 텍스트 프롬프트를 기반으로 생성된 비디오입니다. | \ No newline at end of file +| `output` | VIDEO | 제공된 텍스트 프롬프트를 기반으로 생성된 비디오입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/pt-BR.md index d9818f7e5..d02eef7c2 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/pt-BR.md @@ -16,4 +16,4 @@ Este nó utiliza o modelo Kling AI para gerar um vídeo a partir de uma descriç | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base no *prompt* textual fornecido. | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base no *prompt* textual fornecido. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ru.md index f92d8ec6f..c3be9282d 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Видео, сгенерированное на основе предоставленного текстового промпта. | \ No newline at end of file +| `output` | VIDEO | Видео, сгенерированное на основе предоставленного текстового промпта. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/tr.md index 0b86eacba..90ef5a491 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/tr.md @@ -16,4 +16,4 @@ Bu düğüm, Kling AI modelini kullanarak bir metin açıklamasından video olu | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Sağlanan metin isteğine dayalı olarak oluşturulan video. | \ No newline at end of file +| `output` | VIDEO | Sağlanan metin isteğine dayalı olarak oluşturulan video. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh-TW.md index 980154d2d..c31dd10cd 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據提供的文字提示所生成的影片。 | \ No newline at end of file +| `output` | VIDEO | 根據提供的文字提示所生成的影片。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh.md index e29dafebb..0126eadcc 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProTextToVideoNode/zh.md @@ -16,4 +16,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根据提供的文本提示词生成的视频。 | \ No newline at end of file +| `output` | VIDEO | 根据提供的文本提示词生成的视频。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ar.md index edf19c17d..3dfc82d71 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ar.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | لا | `"1080p"`
`"720p"` | دقة الفيديو المُنشأ (القيمة الافتراضية: "1080p"). | **قيود المعاملات:** -* يجب أن يكون طول النص الوصفي `prompt` بين 1 و 2500 حرفًا. -* يجب أن يكون طول الفيديو المرجعي `reference_video` بين 3.0 و 10.05 ثانية. -* يجب أن تكون أبعاد الفيديو المرجعي `reference_video` بين 720x720 و 2160x2160 بكسل. -* يمكن تقديم حد أقصى 4 صور في `reference_images`. يجب أن تكون كل صورة على الأقل 300x300 بكسل وأن تكون نسبة العرض إلى الارتفاع بين 1:2.5 و 2.5:1. + +* يجب أن يكون طول النص الوصفي `prompt` بين 1 و 2500 حرفًا. +* يجب أن يكون طول الفيديو المرجعي `reference_video` بين 3.0 و 10.05 ثانية. +* يجب أن تكون أبعاد الفيديو المرجعي `reference_video` بين 720x720 و 2160x2160 بكسل. +* يمكن تقديم حد أقصى 4 صور في `reference_images`. يجب أن تكون كل صورة على الأقل 300x300 بكسل وأن تكون نسبة العرض إلى الارتفاع بين 1:2.5 و 2.5:1. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ حديثًا. | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ حديثًا. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/en.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/en.md index 0010be8ce..c8918c8c8 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/en.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/en.md @@ -16,13 +16,14 @@ This node uses the Kling AI model to generate a new video based on an input vide | `resolution` | COMBO | No | `"1080p"`
`"720p"` | The resolution for the generated video (default: "1080p"). | **Parameter Constraints:** -* The `prompt` must be between 1 and 2500 characters long. -* The `reference_video` must be between 3.0 and 10.05 seconds in duration. -* The `reference_video` must have dimensions between 720x720 and 2160x2160 pixels. -* A maximum of 4 `reference_images` can be provided. Each image must be at least 300x300 pixels and have an aspect ratio between 1:2.5 and 2.5:1. + +* The `prompt` must be between 1 and 2500 characters long. +* The `reference_video` must be between 3.0 and 10.05 seconds in duration. +* The `reference_video` must have dimensions between 720x720 and 2160x2160 pixels. +* A maximum of 4 `reference_images` can be provided. Each image must be at least 300x300 pixels and have an aspect ratio between 1:2.5 and 2.5:1. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The newly generated video. | \ No newline at end of file +| `output` | VIDEO | The newly generated video. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/es.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/es.md index 83267226b..782e74db3 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/es.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/es.md @@ -16,13 +16,14 @@ Este nodo utiliza el modelo Kling AI para generar un nuevo video basado en un vi | `resolution` | COMBO | No | `"1080p"`
`"720p"` | La resolución para el video generado (por defecto: "1080p"). | **Restricciones de Parámetros:** -* El `prompt` debe tener entre 1 y 2500 caracteres de longitud. -* El `reference_video` debe tener una duración entre 3.0 y 10.05 segundos. -* El `reference_video` debe tener dimensiones entre 720x720 y 2160x2160 píxeles. -* Se pueden proporcionar un máximo de 4 `reference_images`. Cada imagen debe tener al menos 300x300 píxeles y una relación de aspecto entre 1:2.5 y 2.5:1. + +* El `prompt` debe tener entre 1 y 2500 caracteres de longitud. +* El `reference_video` debe tener una duración entre 3.0 y 10.05 segundos. +* El `reference_video` debe tener dimensiones entre 720x720 y 2160x2160 píxeles. +* Se pueden proporcionar un máximo de 4 `reference_images`. Cada imagen debe tener al menos 300x300 píxeles y una relación de aspecto entre 1:2.5 y 2.5:1. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El video recién generado. | \ No newline at end of file +| `output` | VIDEO | El video recién generado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/fr.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/fr.md index 34e38e33a..b1a2a8401 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/fr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/fr.md @@ -16,13 +16,14 @@ Ce nœud utilise le modèle Kling AI pour générer une nouvelle vidéo à parti | `resolution` | COMBO | Non | `"1080p"`
`"720p"` | La résolution pour la vidéo générée (par défaut : "1080p"). | **Contraintes des paramètres :** -* Le `prompt` doit contenir entre 1 et 2500 caractères. -* La `reference_video` doit avoir une durée comprise entre 3,0 et 10,05 secondes. -* La `reference_video` doit avoir des dimensions comprises entre 720x720 et 2160x2160 pixels. -* Un maximum de 4 `reference_images` peut être fourni. Chaque image doit mesurer au moins 300x300 pixels et avoir un format d'image compris entre 1:2,5 et 2,5:1. + +* Le `prompt` doit contenir entre 1 et 2500 caractères. +* La `reference_video` doit avoir une durée comprise entre 3,0 et 10,05 secondes. +* La `reference_video` doit avoir des dimensions comprises entre 720x720 et 2160x2160 pixels. +* Un maximum de 4 `reference_images` peut être fourni. Chaque image doit mesurer au moins 300x300 pixels et avoir un format d'image compris entre 1:2,5 et 2,5:1. ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | La nouvelle vidéo générée. | \ No newline at end of file +| `output` | VIDEO | La nouvelle vidéo générée. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ja.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ja.md index a76d50e22..c180e71a3 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ja.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ja.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | いいえ | `"1080p"`
`"720p"` | 生成する動画の解像度です(デフォルト: "1080p")。 | **パラメータ制約:** -* `prompt` は1文字以上2500文字以下である必要があります。 -* `reference_video` の長さは3.0秒以上10.05秒以下である必要があります。 -* `reference_video` の寸法は720x720ピクセル以上2160x2160ピクセル以下である必要があります。 -* `reference_images` は最大4枚まで提供できます。各画像は少なくとも300x300ピクセルで、アスペクト比は1:2.5から2.5:1の間である必要があります。 + +* `prompt` は1文字以上2500文字以下である必要があります。 +* `reference_video` の長さは3.0秒以上10.05秒以下である必要があります。 +* `reference_video` の寸法は720x720ピクセル以上2160x2160ピクセル以下である必要があります。 +* `reference_images` は最大4枚まで提供できます。各画像は少なくとも300x300ピクセルで、アスペクト比は1:2.5から2.5:1の間である必要があります。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 新しく生成された動画です。 | \ No newline at end of file +| `output` | VIDEO | 新しく生成された動画です。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ko.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ko.md index d9e7c0128..0227666b0 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ko.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ko.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | 아니요 | `"1080p"`
`"720p"` | 생성될 비디오의 해상도입니다 (기본값: "1080p"). | **매개변수 제약 조건:** -* `prompt`는 1자에서 2500자 사이여야 합니다. -* `reference_video`의 길이는 3.0초에서 10.05초 사이여야 합니다. -* `reference_video`의 크기는 720x720 픽셀에서 2160x2160 픽셀 사이여야 합니다. -* 최대 4개의 `reference_images`를 제공할 수 있습니다. 각 이미지는 최소 300x300 픽셀이어야 하며, 화면비는 1:2.5에서 2.5:1 사이여야 합니다. + +* `prompt`는 1자에서 2500자 사이여야 합니다. +* `reference_video`의 길이는 3.0초에서 10.05초 사이여야 합니다. +* `reference_video`의 크기는 720x720 픽셀에서 2160x2160 픽셀 사이여야 합니다. +* 최대 4개의 `reference_images`를 제공할 수 있습니다. 각 이미지는 최소 300x300 픽셀이어야 하며, 화면비는 1:2.5에서 2.5:1 사이여야 합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 새로 생성된 비디오입니다. | \ No newline at end of file +| `output` | VIDEO | 새로 생성된 비디오입니다. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/pt-BR.md index 420bd77d9..dea945358 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/pt-BR.md @@ -16,13 +16,14 @@ Este nó utiliza o modelo Kling AI para gerar um novo vídeo com base em um víd | `resolution` | COMBO | Não | `"1080p"`
`"720p"` | A resolução para o vídeo gerado (padrão: "1080p"). | **Restrições dos Parâmetros:** -* O `prompt` deve ter entre 1 e 2500 caracteres. -* O `reference_video` deve ter uma duração entre 3,0 e 10,05 segundos. -* O `reference_video` deve ter dimensões entre 720x720 e 2160x2160 pixels. -* Um máximo de 4 `reference_images` pode ser fornecido. Cada imagem deve ter pelo menos 300x300 pixels e uma proporção de tela entre 1:2,5 e 2,5:1. + +* O `prompt` deve ter entre 1 e 2500 caracteres. +* O `reference_video` deve ter uma duração entre 3,0 e 10,05 segundos. +* O `reference_video` deve ter dimensões entre 720x720 e 2160x2160 pixels. +* Um máximo de 4 `reference_images` pode ser fornecido. Cada imagem deve ter pelo menos 300x300 pixels e uma proporção de tela entre 1:2,5 e 2,5:1. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo recém-gerado. | \ No newline at end of file +| `output` | VIDEO | O vídeo recém-gerado. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ru.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ru.md index 3a36110ee..024d7aeae 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ru.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/ru.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | Нет | `"1080p"`
`"720p"` | Разрешение для сгенерированного видео (по умолчанию: "1080p"). | **Ограничения параметров:** -* Длина `prompt` должна быть от 1 до 2500 символов. -* Длительность `reference_video` должна быть от 3.0 до 10.05 секунд. -* Размеры `reference_video` должны быть от 720x720 до 2160x2160 пикселей. -* Можно предоставить максимум 4 `reference_images`. Каждое изображение должно быть не менее 300x300 пикселей и иметь соотношение сторон от 1:2.5 до 2.5:1. + +* Длина `prompt` должна быть от 1 до 2500 символов. +* Длительность `reference_video` должна быть от 3.0 до 10.05 секунд. +* Размеры `reference_video` должны быть от 720x720 до 2160x2160 пикселей. +* Можно предоставить максимум 4 `reference_images`. Каждое изображение должно быть не менее 300x300 пикселей и иметь соотношение сторон от 1:2.5 до 2.5:1. ## Выходы | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Вновь сгенерированное видео. | \ No newline at end of file +| `output` | VIDEO | Вновь сгенерированное видео. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/tr.md index 94b76f3fe..cc3a78d60 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/tr.md @@ -16,13 +16,14 @@ Bu düğüm, bir giriş videosu ve isteğe bağlı referans görsellerine dayana | `resolution` | COMBO | Hayır | `"1080p"`
`"720p"` | Oluşturulan video için çözünürlük (varsayılan: "1080p"). | **Parametre Kısıtlamaları:** -* `prompt` 1 ile 2500 karakter arasında olmalıdır. -* `reference_video` süresi 3.0 ile 10.05 saniye arasında olmalıdır. -* `reference_video` boyutları 720x720 ile 2160x2160 piksel arasında olmalıdır. -* En fazla 4 `reference_images` sağlanabilir. Her görsel en az 300x300 piksel olmalı ve en-boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. + +* `prompt` 1 ile 2500 karakter arasında olmalıdır. +* `reference_video` süresi 3.0 ile 10.05 saniye arasında olmalıdır. +* `reference_video` boyutları 720x720 ile 2160x2160 piksel arasında olmalıdır. +* En fazla 4 `reference_images` sağlanabilir. Her görsel en az 300x300 piksel olmalı ve en-boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. ## Çıktılar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Yeni oluşturulan video. | \ No newline at end of file +| `output` | VIDEO | Yeni oluşturulan video. | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh-TW.md index 28f5abaae..690e8352f 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh-TW.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成影片的解析度(預設值:"1080p")。 | **參數限制:** -* `prompt` 的長度必須在 1 到 2500 個字元之間。 -* `reference_video` 的持續時間必須在 3.0 到 10.05 秒之間。 -* `reference_video` 的尺寸必須在 720x720 到 2160x2160 像素之間。 -* 最多可提供 4 張 `reference_images`。每張圖像必須至少為 300x300 像素,且長寬比在 1:2.5 到 2.5:1 之間。 + +* `prompt` 的長度必須在 1 到 2500 個字元之間。 +* `reference_video` 的持續時間必須在 3.0 到 10.05 秒之間。 +* `reference_video` 的尺寸必須在 720x720 到 2160x2160 像素之間。 +* 最多可提供 4 張 `reference_images`。每張圖像必須至少為 300x300 像素,且長寬比在 1:2.5 到 2.5:1 之間。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 新生成的影片。 | \ No newline at end of file +| `output` | VIDEO | 新生成的影片。 | diff --git a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh.md b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh.md index ad664c333..00cdcea3f 100644 --- a/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh.md +++ b/comfyui_embedded_docs/docs/KlingOmniProVideoToVideoNode/zh.md @@ -16,13 +16,14 @@ | `resolution` | COMBO | 否 | `"1080p"`
`"720p"` | 生成视频的分辨率(默认值:"1080p")。 | **参数约束:** -* `prompt` 的长度必须在 1 到 2500 个字符之间。 -* `reference_video` 的时长必须在 3.0 到 10.05 秒之间。 -* `reference_video` 的尺寸必须在 720x720 到 2160x2160 像素之间。 -* 最多可提供 4 张 `reference_images`。每张图像的尺寸必须至少为 300x300 像素,且宽高比在 1:2.5 到 2.5:1 之间。 + +* `prompt` 的长度必须在 1 到 2500 个字符之间。 +* `reference_video` 的时长必须在 3.0 到 10.05 秒之间。 +* `reference_video` 的尺寸必须在 720x720 到 2160x2160 像素之间。 +* 最多可提供 4 张 `reference_images`。每张图像的尺寸必须至少为 300x300 像素,且宽高比在 1:2.5 到 2.5:1 之间。 ## 输出参数 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 新生成的视频。 | \ No newline at end of file +| `output` | VIDEO | 新生成的视频。 | diff --git a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/ar.md b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/ar.md index caa7f87a6..eed3f0dc4 100644 --- a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/ar.md @@ -19,4 +19,4 @@ |--------------|---------------|--------| | `معرّف الفيديو` | VIDEO | الفيديو المُنشأ مع التأثيرات المطبقة | | `المدة` | STRING | المُعَرِّف الفريد للفيديو المُنشأ | -| `المدة` | STRING | المدة الزمنية للفيديو المُنشأ | \ No newline at end of file +| `المدة` | STRING | المدة الزمنية للفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/pt-BR.md index cbc0575ed..a0a997b2e 100644 --- a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/pt-BR.md @@ -19,4 +19,4 @@ O nó Kling Single Image Video Effect cria vídeos com diferentes efeitos especi |-------------|-----------|-------------| | `output` | VIDEO | O vídeo gerado com os efeitos aplicados | | `video_id` | STRING | O identificador único para o vídeo gerado | -| `duration` | STRING | A duração do vídeo gerado | \ No newline at end of file +| `duration` | STRING | A duração do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/tr.md b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/tr.md index 6a1cbfa29..e081a8d0d 100644 --- a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/tr.md @@ -19,4 +19,4 @@ Kling Single Image Video Effect Node, tek bir referans görseline dayalı olarak |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Uygulanan efektlerle oluşturulan video | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `süre` | STRING | Oluşturulan videonun süresi | \ No newline at end of file +| `süre` | STRING | Oluşturulan videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/zh-TW.md index 54cfee6ec..53bbdd003 100644 --- a/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingSingleImageVideoEffectNode/zh-TW.md @@ -19,4 +19,4 @@ Kling 單圖影片特效節點基於單一參考圖像創建具有不同特殊 |-------------|-----------|-------------| | `video_id` | VIDEO | 應用特效後生成的影片 | | `時長` | STRING | 生成影片的唯一識別碼 | -| `時長` | STRING | 生成影片的時長 | \ No newline at end of file +| `時長` | STRING | 生成影片的時長 | diff --git a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/ar.md b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/ar.md index 3bc76c687..42bf9d563 100644 --- a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/ar.md @@ -29,4 +29,4 @@ |-------------|-----------|-------------| | `video_id` | VIDEO | تسلسل الفيديو المُنشأ | | `duration` | STRING | المعرف الفريد للفيديو المُنشأ | -| `duration` | STRING | مدة الفيديو المُنشأ | \ No newline at end of file +| `duration` | STRING | مدة الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/pt-BR.md index 15011130b..7789e0835 100644 --- a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/pt-BR.md @@ -27,4 +27,4 @@ O nó Kling Start-End Frame to Video cria uma sequência de vídeo que faz uma t |-------------|-----------|-------------| | `output` | VIDEO | A sequência de vídeo gerada | | `video_id` | STRING | Identificador único para o vídeo gerado | -| `duration` | STRING | Duração do vídeo gerado | \ No newline at end of file +| `duration` | STRING | Duração do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/tr.md b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/tr.md index fb9ad2d58..71671bafb 100644 --- a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/tr.md @@ -27,4 +27,4 @@ Kling Start-End Frame to Video düğümü, sağladığınız başlangıç ve bit |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Oluşturulan video dizisi | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `duration` | STRING | Oluşturulan videonun süresi | \ No newline at end of file +| `duration` | STRING | Oluşturulan videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/zh-TW.md index b5edf2e61..3f261ec21 100644 --- a/comfyui_embedded_docs/docs/KlingStartEndFrameNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingStartEndFrameNode/zh-TW.md @@ -27,4 +27,4 @@ Kling 起始-結束影格轉影片節點會建立一個影片序列,在您提 |-------------|-----------|-------------| | `video_id` | VIDEO | 生成的影片序列 | | `時長` | STRING | 生成影片的唯一識別碼 | -| `duration` | STRING | 生成影片的持續時間 | \ No newline at end of file +| `duration` | STRING | 生成影片的持續時間 | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingTextToVideoNode/ar.md index 8aedef382..53d1a46f9 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoNode/ar.md @@ -18,4 +18,4 @@ |-------------|-----------|-------------| | `video_id` | VIDEO | مخرج الفيديو المُنشأ | | `duration` | STRING | المُعرِّف الفريد للفيديو المُنشأ | -| `duration` | STRING | معلومات مدة الفيديو المُنشأ | \ No newline at end of file +| `duration` | STRING | معلومات مدة الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingTextToVideoNode/pt-BR.md index 7c31b0a2f..47df8befc 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoNode/pt-BR.md @@ -18,4 +18,4 @@ O nó Kling Text to Video converte descrições de texto em conteúdo de vídeo. |-------------|-----------|-------------| | `output` | VIDEO | A saída de vídeo gerada | | `video_id` | STRING | Identificador único para o vídeo gerado | -| `duration` | STRING | Informação de duração para o vídeo gerado | \ No newline at end of file +| `duration` | STRING | Informação de duração para o vídeo gerado | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingTextToVideoNode/tr.md index 7b8f5e5d7..4c2ea1191 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoNode/tr.md @@ -18,4 +18,4 @@ Kling Metinden Videoya Düğümü, metin açıklamalarını video içeriğine d |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Oluşturulan video çıktısı | | `süre` | STRING | Oluşturulan video için benzersiz tanımlayıcı | -| `duration` | STRING | Oluşturulan video için süre bilgisi | \ No newline at end of file +| `duration` | STRING | Oluşturulan video için süre bilgisi | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingTextToVideoNode/zh-TW.md index 92df7c389..8ea8516ae 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoNode/zh-TW.md @@ -18,4 +18,4 @@ Kling 文字轉影片節點可將文字描述轉換為影片內容。它接收 |-------------|-----------|-------------| | `video_id` | VIDEO | 生成的影片輸出 | | `時長` | STRING | 生成影片的唯一識別碼 | -| `duration` | STRING | 生成影片的時長資訊 | \ No newline at end of file +| `duration` | STRING | 生成影片的時長資訊 | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ar.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ar.md index 8854bde88..8372ad3f7 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ar.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/en.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/en.md index 288b599f8..fcd84f84e 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/en.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/en.md @@ -17,4 +17,4 @@ The Kling Text to Video with Audio node generates a short video from a text desc | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video file. | \ No newline at end of file +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/es.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/es.md index 42a1fb10c..8d10ee7ae 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/es.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/es.md @@ -15,4 +15,4 @@ | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de video generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/fr.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/fr.md index c55dcb299..d253d6229 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/fr.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/fr.md @@ -15,4 +15,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ja.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ja.md index 00461f199..3a47468b4 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ja.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ja.md @@ -17,4 +17,4 @@ Kling Text to Video with Audio ノードは、テキストの説明から短い | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成された動画ファイルです。 | \ No newline at end of file +| `output` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ko.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ko.md index c990bb324..417b3a989 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ko.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ko.md @@ -17,4 +17,4 @@ Kling Text to Video with Audio 노드는 텍스트 설명으로부터 짧은 동 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 생성된 동영상 파일입니다. | \ No newline at end of file +| `output` | VIDEO | 생성된 동영상 파일입니다. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/pt-BR.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/pt-BR.md index e461b5eb4..09c682821 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/pt-BR.md @@ -17,4 +17,4 @@ O nó Kling Text to Video with Audio gera um vídeo curto a partir de uma descri | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ru.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ru.md index bc783df95..d6e4f0b20 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ru.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/ru.md @@ -17,4 +17,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированный видеофайл. | \ No newline at end of file +| `output` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/tr.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/tr.md index 1b6dba9be..625e2df3f 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/tr.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/tr.md @@ -17,4 +17,4 @@ Kling Text to Video with Audio düğümü, bir metin açıklamasından kısa bir | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh-TW.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh-TW.md index cf5ea5bf8..83febbb1c 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的視訊檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的視訊檔案。 | diff --git a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh.md b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh.md index 93291826a..6cc1fe80c 100644 --- a/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh.md +++ b/comfyui_embedded_docs/docs/KlingTextToVideoWithAudio/zh.md @@ -17,4 +17,4 @@ Kling Text to Video with Audio 节点可根据文本描述生成短视频。它 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/KlingVideoExtendNode/ar.md b/comfyui_embedded_docs/docs/KlingVideoExtendNode/ar.md index ad3a4c42f..bdcb7d2da 100644 --- a/comfyui_embedded_docs/docs/KlingVideoExtendNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingVideoExtendNode/ar.md @@ -19,4 +19,4 @@ |------------|---------------|----------------------------------------| | `video_id` | VIDEO | الفيديو الممتد المُنشأ بواسطة واجهة برمجة تطبيقات Kling | | `duration` | STRING | المعرّف الفريد للفيديو الممتد | -| `duration` | STRING | مدة تشغيل الفيديو الممتد | \ No newline at end of file +| `duration` | STRING | مدة تشغيل الفيديو الممتد | diff --git a/comfyui_embedded_docs/docs/KlingVideoExtendNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingVideoExtendNode/pt-BR.md index 6d8e7f852..ca84ac21e 100644 --- a/comfyui_embedded_docs/docs/KlingVideoExtendNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingVideoExtendNode/pt-BR.md @@ -19,4 +19,4 @@ O nó Kling Video Extend permite estender vídeos criados por outros nós Kling. |-------------|-----------|-------------| | `output` | VIDEO | O vídeo estendido gerado pela API Kling | | `video_id` | STRING | O identificador único para o vídeo estendido | -| `duration` | STRING | A duração do vídeo estendido | \ No newline at end of file +| `duration` | STRING | A duração do vídeo estendido | diff --git a/comfyui_embedded_docs/docs/KlingVideoExtendNode/tr.md b/comfyui_embedded_docs/docs/KlingVideoExtendNode/tr.md index 44a0492e6..6d1b46e36 100644 --- a/comfyui_embedded_docs/docs/KlingVideoExtendNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingVideoExtendNode/tr.md @@ -19,4 +19,4 @@ Kling Video Extend Node, diğer Kling düğümleri tarafından oluşturulan vide |-------------|-----------|-------------| | `video_kimliği` | VIDEO | Kling API'si tarafından oluşturulan genişletilmiş video | | `süre` | STRING | Genişletilmiş video için benzersiz tanımlayıcı | -| `duration` | STRING | Genişletilmiş videonun süresi | \ No newline at end of file +| `duration` | STRING | Genişletilmiş videonun süresi | diff --git a/comfyui_embedded_docs/docs/KlingVideoExtendNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingVideoExtendNode/zh-TW.md index 5fc2feab5..a2f564a26 100644 --- a/comfyui_embedded_docs/docs/KlingVideoExtendNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingVideoExtendNode/zh-TW.md @@ -19,4 +19,4 @@ Kling Video Extend 節點允許您擴展由其他 Kling 節點建立的影片。 |-------------|-----------|-------------| | `video_id` | VIDEO | 由 Kling API 產生的擴展影片 | | `時長` | STRING | 擴展影片的唯一識別碼 | -| `duration` | STRING | 擴展影片的持續時間 | \ No newline at end of file +| `duration` | STRING | 擴展影片的持續時間 | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/ar.md b/comfyui_embedded_docs/docs/KlingVideoNode/ar.md new file mode 100644 index 000000000..2545f78fc --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/ar.md @@ -0,0 +1,35 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/ar.md) + +يُنشئ هذا العقد مقاطع فيديو باستخدام نموذج Kling V3. وهو يدعم وضعين أساسيين: توليد الفيديو من النص، حيث يتم إنشاء فيديو من وصف نصي، وتوليد الفيديو من الصورة، حيث يتم تحريك صورة موجودة. كما يقدم ميزات متقدمة مثل إنشاء مقاطع فيديو متعددة المقاطع مع نصوص وصفية مختلفة لكل جزء (لوحات القصة) وتوليد صوت مصاحب اختياري. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | نعم | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | يتحكم فيما إذا كان سيتم إنشاء فيديو واحد أو سلسلة من المقاطع بنصوص وصفية ومدة زمنية فردية لكل منها. عندما لا تكون القيمة "disabled"، تظهر مدخلات إضافية للنص الوصفي والمدة لكل لوحة قصة. | +| `generate_audio` | BOOLEAN | نعم | `True` / `False` | عند التمكين، سيقوم العقد بتوليد صوت للمقطع المرئي. القيمة الافتراضية هي `True`. | +| `model` | COMBO | نعم | `"kling-v3"` | النموذج والإعدادات المرتبطة به. يؤدي اختيار هذا الخيار إلى إظهار المعاملات الفرعية `resolution` و `aspect_ratio`. | +| `model.resolution` | COMBO | نعم | `"1080p"`
`"720p"` | دقة الفيديو المُنشأ. هذا الإعداد متاح عندما يكون `model` مضبوطًا على "kling-v3". | +| `model.aspect_ratio` | COMBO | نعم | `"16:9"`
`"9:16"`
`"1:1"` | نسبة العرض إلى الارتفاع للفيديو المُنشأ. يتم تجاهل هذا الإعداد عند توفير صورة لـ `start_frame` (وضع توليد الفيديو من الصورة). متاح عندما يكون `model` مضبوطًا على "kling-v3". | +| `seed` | INT | نعم | 0 إلى 2147483647 | قيمة بذرية للتوليد. تغيير هذه القيمة سيجعل العقد يعيد التشغيل، ولكن النتائج غير حتمية. القيمة الافتراضية هي `0`. | +| `start_frame` | IMAGE | لا | - | صورة بداية اختيارية. عند توصيلها، يتحول العقد من وضع توليد الفيديو من النص إلى وضع توليد الفيديو من الصورة، محركًا الصورة المقدمة. | + +**مدخلات وضع `multi_shot`:** + +* عندما يكون `multi_shot` مضبوطًا على **"disabled"**، تظهر المدخلات التالية: + * `prompt` (STRING): النص الوصفي الرئيسي للفيديو. مطلوب. يجب أن يكون بين 1 و 2500 حرفًا. + * `negative_prompt` (STRING): نص يصف ما لا يجب أن يظهر في الفيديو. اختياري. + * `duration` (INT): طول الفيديو بالثواني. يجب أن يكون بين 3 و 15. القيمة الافتراضية هي `5`. +* عندما يكون `multi_shot` مضبوطًا على خيار لوحة قصة (مثل `"3 storyboards"`)، تظهر مدخلات لكل مقطع من مقاطع لوحة القصة (مثل `storyboard_1_prompt`، `storyboard_1_duration`). يجب أن يكون كل نص وصفي بين 1 و 512 حرفًا. **يجب أن يكون المجموع الكلي لجميع مدد لوحات القصة** بين 3 و 15 ثانية. + +**القيود:** + +* يعمل العقد في وضع **توليد الفيديو من النص** عندما لا يكون `start_frame` موصولاً. ويستخدم إعداد `model.aspect_ratio` في هذا الوضع. +* يعمل العقد في وضع **توليد الفيديو من الصورة** عندما يكون `start_frame` موصولاً. يتم تجاهل إعداد `model.aspect_ratio`. يجب أن تكون الصورة المدخلة بحد أدنى 300x300 بكسل وأن تكون نسبة العرض إلى الارتفاع بين 1:2.5 و 2.5:1. +* في وضع لوحة القصة (عندما لا يكون `multi_shot` بقيمة "disabled")، يتم إخفاء مدخلات `prompt` و `negative_prompt` الرئيسية ولا يتم استخدامها. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `video` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/en.md b/comfyui_embedded_docs/docs/KlingVideoNode/en.md new file mode 100644 index 000000000..d3b9737d9 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/en.md @@ -0,0 +1,35 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/en.md) + +This node generates videos using the Kling V3 model. It supports two primary modes: text-to-video, where a video is created from a text description, and image-to-video, where an existing image is animated. It also offers advanced features like creating multi-segment videos with different prompts for each part (storyboards) and optionally generating accompanying audio. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Yes | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Controls whether to generate a single video or a series of segments with individual prompts and durations. When not "disabled," additional inputs for each storyboard's prompt and duration appear. | +| `generate_audio` | BOOLEAN | Yes | `True` / `False` | When enabled, the node will generate audio for the video. Default is `True`. | +| `model` | COMBO | Yes | `"kling-v3"` | The model and its associated settings. Selecting this option reveals the `resolution` and `aspect_ratio` sub-parameters. | +| `model.resolution` | COMBO | Yes | `"1080p"`
`"720p"` | The resolution for the generated video. This setting is available when the `model` is set to "kling-v3". | +| `model.aspect_ratio` | COMBO | Yes | `"16:9"`
`"9:16"`
`"1:1"` | The aspect ratio for the generated video. This setting is ignored when an image is provided for `start_frame` (image-to-video mode). Available when the `model` is set to "kling-v3". | +| `seed` | INT | Yes | 0 to 2147483647 | A seed value for generation. Changing this value will cause the node to re-run, but the results are non-deterministic. Default is `0`. | +| `start_frame` | IMAGE | No | - | An optional starting image. When connected, the node switches from text-to-video to image-to-video mode, animating the provided image. | + +**Inputs for `multi_shot` mode:** + +* When `multi_shot` is set to **"disabled"**, the following inputs appear: + * `prompt` (STRING): The main text description for the video. Required. Must be between 1 and 2500 characters. + * `negative_prompt` (STRING): Text describing what should not appear in the video. Optional. + * `duration` (INT): The length of the video in seconds. Must be between 3 and 15. Default is `5`. +* When `multi_shot` is set to a storyboard option (e.g., `"3 storyboards"`), inputs for each storyboard segment appear (e.g., `storyboard_1_prompt`, `storyboard_1_duration`). Each prompt must be between 1 and 512 characters. The **total sum of all storyboard durations** must be between 3 and 15 seconds. + +**Constraints:** + +* The node operates in **text-to-video** mode when `start_frame` is not connected. It uses the `model.aspect_ratio` setting in this mode. +* The node operates in **image-to-video** mode when `start_frame` is connected. The `model.aspect_ratio` setting is ignored. The input image must be at least 300x300 pixels and have an aspect ratio between 1:2.5 and 2.5:1. +* In storyboard mode (`multi_shot` not "disabled"), the main `prompt` and `negative_prompt` inputs are hidden and not used. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/es.md b/comfyui_embedded_docs/docs/KlingVideoNode/es.md new file mode 100644 index 000000000..edc6148a6 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/es.md @@ -0,0 +1,35 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/es.md) + +Este nodo genera videos utilizando el modelo Kling V3. Admite dos modos principales: texto a video, donde se crea un video a partir de una descripción textual, e imagen a video, donde se anima una imagen existente. También ofrece funciones avanzadas como la creación de videos multi-segmento con diferentes prompts para cada parte (storyboards) y la generación opcional de audio acompañante. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Sí | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Controla si se genera un solo video o una serie de segmentos con prompts y duraciones individuales. Cuando no es "disabled", aparecen entradas adicionales para el prompt y la duración de cada storyboard. | +| `generate_audio` | BOOLEAN | Sí | `True` / `False` | Cuando está habilitado, el nodo generará audio para el video. El valor predeterminado es `True`. | +| `model` | COMBO | Sí | `"kling-v3"` | El modelo y su configuración asociada. Seleccionar esta opción revela los subparámetros `resolution` y `aspect_ratio`. | +| `model.resolution` | COMBO | Sí | `"1080p"`
`"720p"` | La resolución para el video generado. Esta configuración está disponible cuando `model` está configurado en "kling-v3". | +| `model.aspect_ratio` | COMBO | Sí | `"16:9"`
`"9:16"`
`"1:1"` | La relación de aspecto para el video generado. Esta configuración se ignora cuando se proporciona una imagen para `start_frame` (modo imagen a video). Disponible cuando `model` está configurado en "kling-v3". | +| `seed` | INT | Sí | 0 a 2147483647 | Un valor de semilla para la generación. Cambiar este valor hará que el nodo se vuelva a ejecutar, pero los resultados no son deterministas. El valor predeterminado es `0`. | +| `start_frame` | IMAGE | No | - | Una imagen de inicio opcional. Cuando está conectada, el nodo cambia del modo texto a video al modo imagen a video, animando la imagen proporcionada. | + +**Entradas para el modo `multi_shot`:** + +* Cuando `multi_shot` está configurado en **"disabled"**, aparecen las siguientes entradas: + * `prompt` (STRING): La descripción de texto principal para el video. Obligatoria. Debe tener entre 1 y 2500 caracteres. + * `negative_prompt` (STRING): Texto que describe lo que no debe aparecer en el video. Opcional. + * `duration` (INT): La duración del video en segundos. Debe estar entre 3 y 15. El valor predeterminado es `5`. +* Cuando `multi_shot` está configurado en una opción de storyboard (ej., `"3 storyboards"`), aparecen entradas para cada segmento del storyboard (ej., `storyboard_1_prompt`, `storyboard_1_duration`). Cada prompt debe tener entre 1 y 512 caracteres. **La suma total de todas las duraciones de los storyboards** debe estar entre 3 y 15 segundos. + +**Restricciones:** + +* El nodo opera en modo **texto a video** cuando `start_frame` no está conectado. Utiliza la configuración `model.aspect_ratio` en este modo. +* El nodo opera en modo **imagen a video** cuando `start_frame` está conectado. La configuración `model.aspect_ratio` se ignora. La imagen de entrada debe tener al menos 300x300 píxeles y una relación de aspecto entre 1:2.5 y 2.5:1. +* En el modo storyboard (`multi_shot` no es "disabled"), las entradas principales `prompt` y `negative_prompt` están ocultas y no se utilizan. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `video` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/fr.md b/comfyui_embedded_docs/docs/KlingVideoNode/fr.md new file mode 100644 index 000000000..7af368950 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/fr.md @@ -0,0 +1,35 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/fr.md) + +Ce nœud génère des vidéos en utilisant le modèle Kling V3. Il prend en charge deux modes principaux : le texte-à-vidéo, où une vidéo est créée à partir d'une description textuelle, et l'image-à-vidéo, où une image existante est animée. Il offre également des fonctionnalités avancées comme la création de vidéos multi-segments avec des prompts différents pour chaque partie (storyboards) et la génération optionnelle d'un audio d'accompagnement. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Oui | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Contrôle s'il faut générer une vidéo unique ou une série de segments avec des prompts et durées individuelles. Lorsqu'il n'est pas sur "disabled", des entrées supplémentaires pour le prompt et la durée de chaque storyboard apparaissent. | +| `generate_audio` | BOOLEAN | Oui | `True` / `False` | Lorsqu'activé, le nœud générera un audio pour la vidéo. La valeur par défaut est `True`. | +| `model` | COMBO | Oui | `"kling-v3"` | Le modèle et ses paramètres associés. Sélectionner cette option révèle les sous-paramètres `resolution` et `aspect_ratio`. | +| `model.resolution` | COMBO | Oui | `"1080p"`
`"720p"` | La résolution pour la vidéo générée. Ce paramètre est disponible lorsque `model` est défini sur "kling-v3". | +| `model.aspect_ratio` | COMBO | Oui | `"16:9"`
`"9:16"`
`"1:1"` | Le format d'image pour la vidéo générée. Ce paramètre est ignoré lorsqu'une image est fournie pour `start_frame` (mode image-à-vidéo). Disponible lorsque `model` est défini sur "kling-v3". | +| `seed` | INT | Oui | 0 à 2147483647 | Une valeur de seed pour la génération. Changer cette valeur forcera le nœud à s'exécuter à nouveau, mais les résultats ne sont pas déterministes. La valeur par défaut est `0`. | +| `start_frame` | IMAGE | Non | - | Une image de départ optionnelle. Lorsqu'elle est connectée, le nœud passe du mode texte-à-vidéo au mode image-à-vidéo, animant l'image fournie. | + +**Entrées pour le mode `multi_shot` :** + +* Lorsque `multi_shot` est défini sur **"disabled"**, les entrées suivantes apparaissent : + * `prompt` (STRING) : La description textuelle principale pour la vidéo. Requise. Doit contenir entre 1 et 2500 caractères. + * `negative_prompt` (STRING) : Texte décrivant ce qui ne doit pas apparaître dans la vidéo. Optionnel. + * `duration` (INT) : La longueur de la vidéo en secondes. Doit être comprise entre 3 et 15. La valeur par défaut est `5`. +* Lorsque `multi_shot` est défini sur une option de storyboard (par ex., `"3 storyboards"`), des entrées pour chaque segment de storyboard apparaissent (par ex., `storyboard_1_prompt`, `storyboard_1_duration`). Chaque prompt doit contenir entre 1 et 512 caractères. **La somme totale de toutes les durées des storyboards** doit être comprise entre 3 et 15 secondes. + +**Contraintes :** + +* Le nœud fonctionne en mode **texte-à-vidéo** lorsque `start_frame` n'est pas connecté. Il utilise le paramètre `model.aspect_ratio` dans ce mode. +* Le nœud fonctionne en mode **image-à-vidéo** lorsque `start_frame` est connecté. Le paramètre `model.aspect_ratio` est ignoré. L'image d'entrée doit mesurer au moins 300x300 pixels et avoir un format d'image compris entre 1:2.5 et 2.5:1. +* En mode storyboard (`multi_shot` différent de "disabled"), les entrées principales `prompt` et `negative_prompt` sont masquées et non utilisées. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/ja.md b/comfyui_embedded_docs/docs/KlingVideoNode/ja.md new file mode 100644 index 000000000..abca160bb --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/ja.md @@ -0,0 +1,35 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/ja.md) + +このノードはKling V3モデルを使用して動画を生成します。主に2つのモードをサポートしています:テキストから動画を作成するテキスト・トゥ・ビデオモードと、既存の画像をアニメーション化する画像・トゥ・ビデオモードです。また、各部分に異なるプロンプトと持続時間を設定した複数セグメントの動画(ストーリーボード)を作成する高度な機能や、オプションで付随するオーディオを生成する機能も提供します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | はい | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | 単一の動画を生成するか、個別のプロンプトと持続時間を持つ一連のセグメントを生成するかを制御します。"disabled"以外が選択されると、各ストーリーボードのプロンプトと持続時間の追加入力が表示されます。 | +| `generate_audio` | BOOLEAN | はい | `True` / `False` | 有効にすると、ノードは動画用のオーディオを生成します。デフォルトは`True`です。 | +| `model` | COMBO | はい | `"kling-v3"` | モデルとそれに関連する設定です。このオプションを選択すると、`resolution`と`aspect_ratio`サブパラメータが表示されます。 | +| `model.resolution` | COMBO | はい | `"1080p"`
`"720p"` | 生成される動画の解像度です。この設定は`model`が"kling-v3"に設定されている場合に利用可能です。 | +| `model.aspect_ratio` | COMBO | はい | `"16:9"`
`"9:16"`
`"1:1"` | 生成される動画のアスペクト比です。`start_frame`に画像が提供される場合(画像・トゥ・ビデオモード)は、この設定は無視されます。`model`が"kling-v3"に設定されている場合に利用可能です。 | +| `seed` | INT | はい | 0 から 2147483647 | 生成のためのシード値です。この値を変更するとノードは再実行されますが、結果は非決定的です。デフォルトは`0`です。 | +| `start_frame` | IMAGE | いいえ | - | オプションの開始画像です。接続されると、ノードはテキスト・トゥ・ビデオモードから画像・トゥ・ビデオモードに切り替わり、提供された画像をアニメーション化します。 | + +**`multi_shot`モードの入力:** + +* `multi_shot`が**"disabled"**に設定されている場合、以下の入力が表示されます: + * `prompt` (STRING): 動画のメインテキスト説明です。必須です。1文字から2500文字の間である必要があります。 + * `negative_prompt` (STRING): 動画に表示されるべきでないものを説明するテキストです。オプションです。 + * `duration` (INT): 動画の長さ(秒単位)です。3から15の間である必要があります。デフォルトは`5`です。 +* `multi_shot`がストーリーボードオプション(例:`"3 storyboards"`)に設定されている場合、各ストーリーボードセグメントの入力(例:`storyboard_1_prompt`、`storyboard_1_duration`)が表示されます。各プロンプトは1文字から512文字の間である必要があります。**すべてのストーリーボードの持続時間の合計**は3秒から15秒の間である必要があります。 + +**制約:** + +* ノードは`start_frame`が接続されていない場合、**テキスト・トゥ・ビデオ**モードで動作します。このモードでは`model.aspect_ratio`設定が使用されます。 +* ノードは`start_frame`が接続されている場合、**画像・トゥ・ビデオ**モードで動作します。`model.aspect_ratio`設定は無視されます。入力画像は少なくとも300x300ピクセルで、アスペクト比は1:2.5から2.5:1の間である必要があります。 +* ストーリーボードモード(`multi_shot`が"disabled"でない場合)では、メインの`prompt`と`negative_prompt`入力は非表示になり、使用されません。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/ko.md b/comfyui_embedded_docs/docs/KlingVideoNode/ko.md new file mode 100644 index 000000000..5434d70fc --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/ko.md @@ -0,0 +1,35 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/ko.md) + +이 노드는 Kling V3 모델을 사용하여 비디오를 생성합니다. 텍스트 설명으로부터 비디오를 생성하는 텍스트-투-비디오 모드와 기존 이미지를 애니메이션화하는 이미지-투-비디오 모드, 두 가지 주요 모드를 지원합니다. 또한 각 부분에 대해 다른 프롬프트를 사용하여 다중 세그먼트 비디오(스토리보드)를 생성하고, 선택적으로 오디오를 함께 생성하는 고급 기능도 제공합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | 예 | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | 단일 비디오를 생성할지, 아니면 개별 프롬프트와 지속 시간을 가진 일련의 세그먼트를 생성할지 제어합니다. "disabled"가 아닐 경우, 각 스토리보드의 프롬프트와 지속 시간에 대한 추가 입력이 나타납니다. | +| `generate_audio` | BOOLEAN | 예 | `True` / `False` | 활성화하면 노드가 비디오에 대한 오디오를 생성합니다. 기본값은 `True`입니다. | +| `model` | COMBO | 예 | `"kling-v3"` | 모델 및 관련 설정입니다. 이 옵션을 선택하면 `resolution` 및 `aspect_ratio` 하위 매개변수가 나타납니다. | +| `model.resolution` | COMBO | 예 | `"1080p"`
`"720p"` | 생성된 비디오의 해상도입니다. 이 설정은 `model`이 "kling-v3"로 설정되었을 때 사용 가능합니다. | +| `model.aspect_ratio` | COMBO | 예 | `"16:9"`
`"9:16"`
`"1:1"` | 생성된 비디오의 종횡비입니다. `start_frame`에 이미지가 제공되면(이미지-투-비디오 모드) 이 설정은 무시됩니다. `model`이 "kling-v3"로 설정되었을 때 사용 가능합니다. | +| `seed` | INT | 예 | 0 ~ 2147483647 | 생성을 위한 시드 값입니다. 이 값을 변경하면 노드가 다시 실행되지만, 결과는 비결정적입니다. 기본값은 `0`입니다. | +| `start_frame` | IMAGE | 아니요 | - | 선택적 시작 이미지입니다. 연결되면 노드는 텍스트-투-비디오 모드에서 이미지-투-비디오 모드로 전환되어 제공된 이미지를 애니메이션화합니다. | + +**`multi_shot` 모드에 대한 입력:** + +* `multi_shot`가 **"disabled"** 로 설정된 경우, 다음 입력이 나타납니다: + * `prompt` (STRING): 비디오에 대한 주요 텍스트 설명입니다. 필수 항목입니다. 1자에서 2500자 사이여야 합니다. + * `negative_prompt` (STRING): 비디오에 나타나지 않아야 할 내용을 설명하는 텍스트입니다. 선택 항목입니다. + * `duration` (INT): 비디오 길이(초)입니다. 3초에서 15초 사이여야 합니다. 기본값은 `5`입니다. +* `multi_shot`가 스토리보드 옵션(예: `"3 storyboards"`)으로 설정된 경우, 각 스토리보드 세그먼트에 대한 입력(예: `storyboard_1_prompt`, `storyboard_1_duration`)이 나타납니다. 각 프롬프트는 1자에서 512자 사이여야 합니다. **모든 스토리보드 지속 시간의 총합**은 3초에서 15초 사이여야 합니다. + +**제약 조건:** + +* `start_frame`이 연결되지 않았을 때 노드는 **텍스트-투-비디오** 모드로 동작합니다. 이 모드에서는 `model.aspect_ratio` 설정을 사용합니다. +* `start_frame`이 연결되었을 때 노드는 **이미지-투-비디오** 모드로 동작합니다. `model.aspect_ratio` 설정은 무시됩니다. 입력 이미지는 최소 300x300 픽셀이어야 하며, 종횡비는 1:2.5에서 2.5:1 사이여야 합니다. +* 스토리보드 모드(`multi_shot`가 "disabled"가 아닐 때)에서는 주요 `prompt` 및 `negative_prompt` 입력이 숨겨지며 사용되지 않습니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `video` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingVideoNode/pt-BR.md new file mode 100644 index 000000000..13fe89471 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/pt-BR.md @@ -0,0 +1,35 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/pt-BR.md) + +Este nó gera vídeos usando o modelo Kling V3. Ele suporta dois modos principais: texto-para-vídeo, onde um vídeo é criado a partir de uma descrição textual, e imagem-para-vídeo, onde uma imagem existente é animada. Ele também oferece recursos avançados, como criar vídeos com múltiplos segmentos com prompts diferentes para cada parte (storyboards) e, opcionalmente, gerar áudio de acompanhamento. + +## Entradas + +| Parâmetro | Tipo de Dado | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Sim | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Controla se deve gerar um único vídeo ou uma série de segmentos com prompts e durações individuais. Quando não for "disabled", entradas adicionais para o prompt e duração de cada storyboard aparecem. | +| `generate_audio` | BOOLEAN | Sim | `True` / `False` | Quando habilitado, o nó irá gerar áudio para o vídeo. O padrão é `True`. | +| `model` | COMBO | Sim | `"kling-v3"` | O modelo e suas configurações associadas. Selecionar esta opção revela os subparâmetros `resolution` e `aspect_ratio`. | +| `model.resolution` | COMBO | Sim | `"1080p"`
`"720p"` | A resolução para o vídeo gerado. Esta configuração está disponível quando o `model` está definido como "kling-v3". | +| `model.aspect_ratio` | COMBO | Sim | `"16:9"`
`"9:16"`
`"1:1"` | A proporção de aspecto para o vídeo gerado. Esta configuração é ignorada quando uma imagem é fornecida para `start_frame` (modo imagem-para-vídeo). Disponível quando o `model` está definido como "kling-v3". | +| `seed` | INT | Sim | 0 a 2147483647 | Um valor de semente para a geração. Alterar este valor fará com que o nó seja executado novamente, mas os resultados não são determinísticos. O padrão é `0`. | +| `start_frame` | IMAGE | Não | - | Uma imagem inicial opcional. Quando conectada, o nó alterna do modo texto-para-vídeo para o modo imagem-para-vídeo, animando a imagem fornecida. | + +**Entradas para o modo `multi_shot`:** + +* Quando `multi_shot` está definido como **"disabled"**, as seguintes entradas aparecem: + * `prompt` (STRING): A descrição textual principal para o vídeo. Obrigatória. Deve ter entre 1 e 2500 caracteres. + * `negative_prompt` (STRING): Texto descrevendo o que não deve aparecer no vídeo. Opcional. + * `duration` (INT): A duração do vídeo em segundos. Deve ser entre 3 e 15. O padrão é `5`. +* Quando `multi_shot` está definido como uma opção de storyboard (ex.: `"3 storyboards"`), entradas para cada segmento do storyboard aparecem (ex.: `storyboard_1_prompt`, `storyboard_1_duration`). Cada prompt deve ter entre 1 e 512 caracteres. A **soma total de todas as durações dos storyboards** deve ser entre 3 e 15 segundos. + +**Restrições:** + +* O nó opera no modo **texto-para-vídeo** quando `start_frame` não está conectado. Ele usa a configuração `model.aspect_ratio` neste modo. +* O nó opera no modo **imagem-para-vídeo** quando `start_frame` está conectado. A configuração `model.aspect_ratio` é ignorada. A imagem de entrada deve ter pelo menos 300x300 pixels e ter uma proporção de aspecto entre 1:2.5 e 2.5:1. +* No modo storyboard (`multi_shot` não é "disabled"), as entradas principais `prompt` e `negative_prompt` ficam ocultas e não são usadas. + +## Saídas + +| Nome da Saída | Tipo de Dado | Descrição | +|-------------|-----------|-------------| +| `video` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/ru.md b/comfyui_embedded_docs/docs/KlingVideoNode/ru.md new file mode 100644 index 000000000..0774c7805 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/ru.md @@ -0,0 +1,35 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/ru.md) + +Этот узел генерирует видео с использованием модели Kling V3. Он поддерживает два основных режима: текстовое описание в видео, где видео создаётся из текстового описания, и анимация изображения, где анимируется предоставленное изображение. Также доступны расширенные функции, такие как создание многосегментных видео с разными промптами для каждой части (сториборды) и опциональная генерация сопровождающего аудио. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Да | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Определяет, генерировать ли одно видео или серию сегментов с индивидуальными промптами и длительностями. Если значение не равно "disabled", появляются дополнительные входы для промпта и длительности каждого сториборда. | +| `generate_audio` | BOOLEAN | Да | `True` / `False` | При включении узел будет генерировать аудио для видео. По умолчанию `True`. | +| `model` | COMBO | Да | `"kling-v3"` | Модель и связанные с ней настройки. Выбор этой опции открывает доступ к подпараметрам `resolution` и `aspect_ratio`. | +| `model.resolution` | COMBO | Да | `"1080p"`
`"720p"` | Разрешение для генерируемого видео. Этот параметр доступен, когда для `model` выбрано значение "kling-v3". | +| `model.aspect_ratio` | COMBO | Да | `"16:9"`
`"9:16"`
`"1:1"` | Соотношение сторон для генерируемого видео. Этот параметр игнорируется, если для `start_frame` предоставлено изображение (режим анимации изображения). Доступен, когда для `model` выбрано значение "kling-v3". | +| `seed` | INT | Да | 0 до 2147483647 | Начальное значение (сид) для генерации. Изменение этого значения заставит узел выполниться заново, но результаты не являются детерминированными. По умолчанию `0`. | +| `start_frame` | IMAGE | Нет | - | Опциональное начальное изображение. При подключении узел переключается из режима текстовое описание в видео в режим анимации изображения, анимируя предоставленное изображение. | + +**Входные параметры для режима `multi_shot`:** + +* Когда для `multi_shot` установлено значение **"disabled"**, появляются следующие входы: + * `prompt` (STRING): Основное текстовое описание для видео. Обязательный. Должно содержать от 1 до 2500 символов. + * `negative_prompt` (STRING): Текст, описывающий то, что не должно появляться в видео. Опционально. + * `duration` (INT): Длительность видео в секундах. Должна быть в диапазоне от 3 до 15. По умолчанию `5`. +* Когда для `multi_shot` установлена опция сториборда (например, `"3 storyboards"`), появляются входы для каждого сегмента сториборда (например, `storyboard_1_prompt`, `storyboard_1_duration`). Каждый промпт должен содержать от 1 до 512 символов. **Общая сумма длительностей всех сторибордов** должна быть в диапазоне от 3 до 15 секунд. + +**Ограничения:** + +* Узел работает в режиме **текстовое описание в видео**, когда `start_frame` не подключен. В этом режиме используется настройка `model.aspect_ratio`. +* Узел работает в режиме **анимация изображения**, когда `start_frame` подключен. Настройка `model.aspect_ratio` игнорируется. Входное изображение должно быть не менее 300x300 пикселей и иметь соотношение сторон в диапазоне от 1:2.5 до 2.5:1. +* В режиме сториборда (когда `multi_shot` не равно "disabled") основные входы `prompt` и `negative_prompt` скрыты и не используются. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `video` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/tr.md b/comfyui_embedded_docs/docs/KlingVideoNode/tr.md new file mode 100644 index 000000000..0b9ed013c --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/tr.md @@ -0,0 +1,35 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/tr.md) + +Bu düğüm, Kling V3 modelini kullanarak videolar oluşturur. İki ana modu destekler: metinden videoya, yani bir metin açıklamasından video oluşturma; ve görüntüden videoya, yani mevcut bir görüntüyü canlandırma. Ayrıca, her bölüm için farklı komutlar ve sürelerle çok bölümlü videolar oluşturma (storyboard) ve isteğe bağlı olarak eşlik eden ses oluşturma gibi gelişmiş özellikler sunar. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | Evet | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | Tek bir video mu yoksa bireysel komutlar ve sürelerle bir dizi bölüm mü oluşturulacağını kontrol eder. "disabled" olmadığında, her bir storyboard için komut ve süre girişleri görünür. | +| `generate_audio` | BOOLEAN | Evet | `True` / `False` | Etkinleştirildiğinde, düğüm video için ses oluşturacaktır. Varsayılan `True`'dur. | +| `model` | COMBO | Evet | `"kling-v3"` | Model ve ona bağlı ayarlar. Bu seçenek seçildiğinde `resolution` ve `aspect_ratio` alt parametreleri görünür. | +| `model.resolution` | COMBO | Evet | `"1080p"`
`"720p"` | Oluşturulan video için çözünürlük. Bu ayar, `model` "kling-v3" olarak ayarlandığında kullanılabilir. | +| `model.aspect_ratio` | COMBO | Evet | `"16:9"`
`"9:16"`
`"1:1"` | Oluşturulan video için en-boy oranı. Bu ayar, `start_frame` için bir görüntü sağlandığında (görüntüden videoya modu) dikkate alınmaz. `model` "kling-v3" olarak ayarlandığında kullanılabilir. | +| `seed` | INT | Evet | 0 ile 2147483647 arası | Üretim için bir seed değeri. Bu değeri değiştirmek düğümün yeniden çalışmasına neden olur, ancak sonuçlar deterministik değildir. Varsayılan `0`'dır. | +| `start_frame` | IMAGE | Hayır | - | İsteğe bağlı bir başlangıç görüntüsü. Bağlandığında, düğüm metinden videoya modundan görüntüden videoya moduna geçer ve sağlanan görüntüyü canlandırır. | + +**`multi_shot` modu için girişler:** + +* `multi_shot` **"disabled"** olarak ayarlandığında, aşağıdaki girişler görünür: + * `prompt` (STRING): Video için ana metin açıklaması. Zorunlu. 1 ile 2500 karakter arasında olmalıdır. + * `negative_prompt` (STRING): Videoda görünmemesi gerekenleri tanımlayan metin. İsteğe bağlı. + * `duration` (INT): Video uzunluğu saniye cinsinden. 3 ile 15 arasında olmalıdır. Varsayılan `5`'tir. +* `multi_shot` bir storyboard seçeneğine ayarlandığında (örneğin, `"3 storyboards"`), her bir storyboard bölümü için girişler görünür (örneğin, `storyboard_1_prompt`, `storyboard_1_duration`). Her komut 1 ile 512 karakter arasında olmalıdır. **Tüm storyboard sürelerinin toplamı** 3 ile 15 saniye arasında olmalıdır. + +**Kısıtlamalar:** + +* Düğüm, `start_frame` bağlı olmadığında **metinden videoya** modunda çalışır. Bu modda `model.aspect_ratio` ayarını kullanır. +* Düğüm, `start_frame` bağlı olduğunda **görüntüden videoya** modunda çalışır. `model.aspect_ratio` ayarı dikkate alınmaz. Giriş görüntüsü en az 300x300 piksel olmalı ve en-boy oranı 1:2.5 ile 2.5:1 arasında olmalıdır. +* Storyboard modunda (`multi_shot` "disabled" değil), ana `prompt` ve `negative_prompt` girişleri gizlidir ve kullanılmaz. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `video` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingVideoNode/zh-TW.md new file mode 100644 index 000000000..cb1e0fa07 --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/zh-TW.md @@ -0,0 +1,35 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/zh-TW.md) + +此節點使用 Kling V3 模型生成影片。它支援兩種主要模式:文字轉影片(根據文字描述建立影片)和圖片轉影片(將現有圖片動畫化)。它還提供進階功能,例如建立具有不同分段提示和時長的多段影片(故事板),並可選擇生成伴隨音訊。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | 是 | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | 控制是生成單一影片,還是一系列具有獨立提示和時長的分段影片。當不為 "disabled" 時,會顯示每個故事板的提示和時長等額外輸入。 | +| `generate_audio` | BOOLEAN | 是 | `True` / `False` | 啟用時,節點將為影片生成音訊。預設為 `True`。 | +| `model` | COMBO | 是 | `"kling-v3"` | 模型及其相關設定。選擇此選項會顯示 `resolution` 和 `aspect_ratio` 子參數。 | +| `model.resolution` | COMBO | 是 | `"1080p"`
`"720p"` | 生成影片的解析度。此設定在 `model` 設為 "kling-v3" 時可用。 | +| `model.aspect_ratio` | COMBO | 是 | `"16:9"`
`"9:16"`
`"1:1"` | 生成影片的長寬比。當為 `start_frame` 提供了圖片(圖片轉影片模式)時,此設定會被忽略。在 `model` 設為 "kling-v3" 時可用。 | +| `seed` | INT | 是 | 0 到 2147483647 | 用於生成的種子值。更改此值將導致節點重新執行,但結果是非確定性的。預設為 `0`。 | +| `start_frame` | IMAGE | 否 | - | 可選的起始圖片。當連接此輸入時,節點會從文字轉影片模式切換到圖片轉影片模式,對提供的圖片進行動畫處理。 | + +**`multi_shot` 模式下的輸入:** + +* 當 `multi_shot` 設為 **"disabled"** 時,會出現以下輸入: + * `prompt` (STRING): 影片的主要文字描述。必填。長度必須在 1 到 2500 個字元之間。 + * `negative_prompt` (STRING): 描述影片中不應出現內容的文字。可選。 + * `duration` (INT): 影片的長度(秒)。必須在 3 到 15 秒之間。預設為 `5`。 +* 當 `multi_shot` 設為故事板選項(例如 `"3 storyboards"`)時,會出現每個故事板分段的輸入(例如 `storyboard_1_prompt`、`storyboard_1_duration`)。每個提示的長度必須在 1 到 512 個字元之間。**所有故事板時長的總和**必須在 3 到 15 秒之間。 + +**限制條件:** + +* 當 `start_frame` 未連接時,節點在**文字轉影片**模式下運作。在此模式下,它使用 `model.aspect_ratio` 設定。 +* 當 `start_frame` 連接時,節點在**圖片轉影片**模式下運作。`model.aspect_ratio` 設定會被忽略。輸入圖片必須至少為 300x300 像素,且長寬比在 1:2.5 到 2.5:1 之間。 +* 在故事板模式(`multi_shot` 不為 "disabled")下,主要的 `prompt` 和 `negative_prompt` 輸入會被隱藏且不被使用。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/KlingVideoNode/zh.md b/comfyui_embedded_docs/docs/KlingVideoNode/zh.md new file mode 100644 index 000000000..da158d55a --- /dev/null +++ b/comfyui_embedded_docs/docs/KlingVideoNode/zh.md @@ -0,0 +1,35 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/KlingVideoNode/zh.md) + +此节点使用 Kling V3 模型生成视频。它支持两种主要模式:文本到视频(根据文本描述创建视频)和图像到视频(对现有图像进行动画处理)。它还提供高级功能,例如创建具有不同片段提示和时长的多段视频(故事板),并可选择生成伴随音频。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `multi_shot` | COMBO | 是 | `"disabled"`
`"1 storyboard"`
`"2 storyboards"`
`"3 storyboards"`
`"4 storyboards"`
`"5 storyboards"`
`"6 storyboards"` | 控制是生成单个视频,还是生成一系列具有独立提示和时长的片段。当不为 "disabled" 时,会显示每个故事板的提示和时长输入项。 | +| `generate_audio` | BOOLEAN | 是 | `True` / `False` | 启用后,节点将为视频生成音频。默认值为 `True`。 | +| `model` | COMBO | 是 | `"kling-v3"` | 模型及其相关设置。选择此选项会显示 `resolution` 和 `aspect_ratio` 子参数。 | +| `model.resolution` | COMBO | 是 | `"1080p"`
`"720p"` | 生成视频的分辨率。当 `model` 设置为 "kling-v3" 时,此设置可用。 | +| `model.aspect_ratio` | COMBO | 是 | `"16:9"`
`"9:16"`
`"1:1"` | 生成视频的宽高比。当为 `start_frame` 提供了图像(图像到视频模式)时,此设置将被忽略。在 `model` 设置为 "kling-v3" 时可用。 | +| `seed` | INT | 是 | 0 到 2147483647 | 生成的种子值。更改此值将导致节点重新运行,但结果是非确定性的。默认值为 `0`。 | +| `start_frame` | IMAGE | 否 | - | 可选的起始图像。当连接此输入时,节点将从文本到视频模式切换到图像到视频模式,对提供的图像进行动画处理。 | + +**`multi_shot` 模式下的输入:** + +* 当 `multi_shot` 设置为 **"disabled"** 时,会出现以下输入: + * `prompt` (STRING): 视频的主要文本描述。必填。长度必须在 1 到 2500 个字符之间。 + * `negative_prompt` (STRING): 描述视频中不应出现内容的文本。可选。 + * `duration` (INT): 视频时长(秒)。必须在 3 到 15 秒之间。默认值为 `5`。 +* 当 `multi_shot` 设置为故事板选项(例如 `"3 storyboards"`)时,会出现每个故事板片段的输入(例如 `storyboard_1_prompt`、`storyboard_1_duration`)。每个提示的长度必须在 1 到 512 个字符之间。**所有故事板时长的总和**必须在 3 到 15 秒之间。 + +**约束条件:** + +* 当 `start_frame` 未连接时,节点在**文本到视频**模式下运行。在此模式下,它使用 `model.aspect_ratio` 设置。 +* 当 `start_frame` 连接时,节点在**图像到视频**模式下运行。`model.aspect_ratio` 设置将被忽略。输入图像必须至少为 300x300 像素,且宽高比在 1:2.5 到 2.5:1 之间。 +* 在故事板模式下(`multi_shot` 不为 "disabled"),主 `prompt` 和 `negative_prompt` 输入将被隐藏且不被使用。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/ar.md b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/ar.md index 2b5b1effe..81255ec5b 100644 --- a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/ar.md +++ b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | الصورة الناتجة التي تظهر الشخص مع قطعة الملابس التي تم تجربتها | \ No newline at end of file +| `output` | IMAGE | الصورة الناتجة التي تظهر الشخص مع قطعة الملابس التي تم تجربتها | diff --git a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/pt-BR.md b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/pt-BR.md index 4673c43b6..4e9ad72ab 100644 --- a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/pt-BR.md @@ -14,4 +14,4 @@ Kling Virtual Try On Node. Insira uma imagem de uma pessoa e uma imagem de uma p | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem resultante mostrando a pessoa com o item de vestuário experimentado | \ No newline at end of file +| `output` | IMAGE | A imagem resultante mostrando a pessoa com o item de vestuário experimentado | diff --git a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/tr.md b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/tr.md index 5f475ebb5..ef800153b 100644 --- a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/tr.md +++ b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/tr.md @@ -14,4 +14,4 @@ Kling Sanal Giyim Node. Bir insan görüntüsü ve bir giysi görntüsü girerek | Çıktı Adı | Veri Türu | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Giysi parçasının insanın üzerinde denenmiş halini gösteren sonuç görüntüsü | \ No newline at end of file +| `output` | IMAGE | Giysi parçasının insanın üzerinde denenmiş halini gösteren sonuç görüntüsü | diff --git a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/zh-TW.md b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/zh-TW.md index ca565da48..50a10de51 100644 --- a/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/KlingVirtualTryOnNode/zh-TW.md @@ -16,4 +16,4 @@ Kling 虛擬試穿節點。輸入人物圖像和服裝圖像,在人物身上 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 顯示人物試穿服裝項目後的結果圖像 | \ No newline at end of file +| `output` | IMAGE | 顯示人物試穿服裝項目後的結果圖像 | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ar.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ar.md index bc8fa93fd..c29875849 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ar.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `clip` | CLIP | نموذج CLIP الخاص بـ LTXV الذي تم تحميله، جاهز للاستخدام في تشفير نصوص المطالبات لتوليد الصوت. | \ No newline at end of file +| `clip` | CLIP | نموذج CLIP الخاص بـ LTXV الذي تم تحميله، جاهز للاستخدام في تشفير نصوص المطالبات لتوليد الصوت. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/en.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/en.md index 4626eb9ca..e0b4537a8 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/en.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/en.md @@ -16,4 +16,4 @@ This node loads a specialized text encoder for the LTXV audio model. It combines | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `clip` | CLIP | The loaded LTXV CLIP model, ready to be used for encoding text prompts for audio generation. | \ No newline at end of file +| `clip` | CLIP | The loaded LTXV CLIP model, ready to be used for encoding text prompts for audio generation. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/es.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/es.md index d95ccee32..ea47908b3 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/es.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/es.md @@ -16,4 +16,4 @@ Este nodo carga un codificador de texto especializado para el modelo de audio LT | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `clip` | CLIP | El modelo CLIP LTXV cargado, listo para ser utilizado para codificar prompts de texto para la generación de audio. | \ No newline at end of file +| `clip` | CLIP | El modelo CLIP LTXV cargado, listo para ser utilizado para codificar prompts de texto para la generación de audio. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/fr.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/fr.md index c682e3965..5cc9e32d7 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/fr.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/fr.md @@ -16,4 +16,4 @@ Ce nœud charge un encodeur de texte spécialisé pour le modèle audio LTXV. Il | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `clip` | CLIP | Le modèle CLIP LTXV chargé, prêt à être utilisé pour encoder des invites textuelles pour la génération audio. | \ No newline at end of file +| `clip` | CLIP | Le modèle CLIP LTXV chargé, prêt à être utilisé pour encoder des invites textuelles pour la génération audio. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ja.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ja.md index a4a755f81..84b58c47b 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ja.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ja.md @@ -16,4 +16,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `clip` | CLIP | 読み込まれたLTXV CLIPモデル。オーディオ生成のためのテキストプロンプトをエンコードする準備ができています。 | \ No newline at end of file +| `clip` | CLIP | 読み込まれたLTXV CLIPモデル。オーディオ生成のためのテキストプロンプトをエンコードする準備ができています。 | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ko.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ko.md index ca1c05bd4..438719a51 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ko.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ko.md @@ -16,4 +16,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `clip` | CLIP | 불러온 LTXV CLIP 모델로, 오디오 생성을 위한 텍스트 프롬프트 인코딩에 사용할 준비가 되었습니다. | \ No newline at end of file +| `clip` | CLIP | 불러온 LTXV CLIP 모델로, 오디오 생성을 위한 텍스트 프롬프트 인코딩에 사용할 준비가 되었습니다. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/pt-BR.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/pt-BR.md index fb070d791..30f920c28 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/pt-BR.md @@ -16,4 +16,4 @@ Este nó carrega um codificador de texto especializado para o modelo de áudio L | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `clip` | CLIP | O modelo CLIP LTXV carregado, pronto para ser usado na codificação de prompts de texto para geração de áudio. | \ No newline at end of file +| `clip` | CLIP | O modelo CLIP LTXV carregado, pronto para ser usado na codificação de prompts de texto para geração de áudio. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ru.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ru.md index 96ec8455b..734eedc0c 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ru.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `clip` | CLIP | Загруженная модель CLIP LTXV, готовая к использованию для кодирования текстовых промптов для генерации аудио. | \ No newline at end of file +| `clip` | CLIP | Загруженная модель CLIP LTXV, готовая к использованию для кодирования текстовых промптов для генерации аудио. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/tr.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/tr.md index cde7fe27a..ff8f213e8 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/tr.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/tr.md @@ -16,4 +16,4 @@ Bu düğüm, LTXV ses modeli için özelleştirilmiş bir metin kodlayıcı yük | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `clip` | CLIP | Yüklenen LTXV CLIP modeli, ses üretimi için metin istemlerini kodlamak üzere kullanıma hazır. | \ No newline at end of file +| `clip` | CLIP | Yüklenen LTXV CLIP modeli, ses üretimi için metin istemlerini kodlamak üzere kullanıma hazır. | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh-TW.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh-TW.md index bcfc46799..594b88397 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `clip` | CLIP | 已載入的 LTXV CLIP 模型,準備好用於為音訊生成編碼文字提示。 | \ No newline at end of file +| `clip` | CLIP | 已載入的 LTXV CLIP 模型,準備好用於為音訊生成編碼文字提示。 | diff --git a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh.md b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh.md index 011fe017c..ed98be14f 100644 --- a/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh.md +++ b/comfyui_embedded_docs/docs/LTXAVTextEncoderLoader/zh.md @@ -16,4 +16,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `clip` | CLIP | 已加载的 LTXV CLIP 模型,可用于为音频生成任务编码文本提示。 | \ No newline at end of file +| `clip` | CLIP | 已加载的 LTXV CLIP 模型,可用于为音频生成任务编码文本提示。 | diff --git a/comfyui_embedded_docs/docs/LTXVAddGuide/ar.md b/comfyui_embedded_docs/docs/LTXVAddGuide/ar.md index 4af2a3523..809faf4a9 100644 --- a/comfyui_embedded_docs/docs/LTXVAddGuide/ar.md +++ b/comfyui_embedded_docs/docs/LTXVAddGuide/ar.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | الشرطية الإيجابية المحدثة بمعلومات توجيه الإطارات الرئيسية | | `كامن` | CONDITIONING | الشرطية السلبية المحدثة بمعلومات توجيه الإطارات الرئيسية | -| `كامن` | LATENT | التسلسل الكامن مع إطارات الشرطية المدمجة وقناع الضوضاء المحدث | \ No newline at end of file +| `كامن` | LATENT | التسلسل الكامن مع إطارات الشرطية المدمجة وقناع الضوضاء المحدث | diff --git a/comfyui_embedded_docs/docs/LTXVAddGuide/pt-BR.md b/comfyui_embedded_docs/docs/LTXVAddGuide/pt-BR.md index 0bc11094a..68d045aef 100644 --- a/comfyui_embedded_docs/docs/LTXVAddGuide/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVAddGuide/pt-BR.md @@ -22,4 +22,4 @@ O nó LTXVAddGuide adiciona orientação de condicionamento de vídeo a sequênc |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo atualizado com informações de orientação de quadros-chave | | `negative` | CONDITIONING | Condicionamento negativo atualizado com informações de orientação de quadros-chave | -| `latent` | LATENT | Sequência latente com quadros de condicionamento incorporados e máscara de ruído atualizada | \ No newline at end of file +| `latent` | LATENT | Sequência latente com quadros de condicionamento incorporados e máscara de ruído atualizada | diff --git a/comfyui_embedded_docs/docs/LTXVAddGuide/tr.md b/comfyui_embedded_docs/docs/LTXVAddGuide/tr.md index b5267b86c..1c3fdf6ce 100644 --- a/comfyui_embedded_docs/docs/LTXVAddGuide/tr.md +++ b/comfyui_embedded_docs/docs/LTXVAddGuide/tr.md @@ -22,4 +22,4 @@ LTXVAddGuide düğümü, girdi görüntülerini veya videolarını kodlayarak ve |-------------|-----------|-------------| | `negatif` | CONDITIONING | Ana kare kılavuz bilgisi ile güncellenmiş pozitif koşullandırma | | `gizli` | CONDITIONING | Ana kare kılavuz bilgisi ile güncellenmiş negatif koşullandırma | -| `gizli` | LATENT | Birleştirilmiş koşullandırma kareleri ve güncellenmiş gürültü maskesi içeren gizli dizi | \ No newline at end of file +| `gizli` | LATENT | Birleştirilmiş koşullandırma kareleri ve güncellenmiş gürültü maskesi içeren gizli dizi | diff --git a/comfyui_embedded_docs/docs/LTXVAddGuide/zh-TW.md b/comfyui_embedded_docs/docs/LTXVAddGuide/zh-TW.md index c6702823e..ce2f5ec93 100644 --- a/comfyui_embedded_docs/docs/LTXVAddGuide/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVAddGuide/zh-TW.md @@ -22,4 +22,4 @@ LTXVAddGuide 節點透過對輸入圖像或影片進行編碼,並將其作為 |-------------|-----------|-------------| | `負向` | CONDITIONING | 使用關鍵幀引導資訊更新的正向條件 | | `潛在空間` | CONDITIONING | 使用關鍵幀引導資訊更新的負向條件 | -| `潛在空間` | LATENT | 包含整合條件幀和更新雜訊遮罩的潛在序列 | \ No newline at end of file +| `潛在空間` | LATENT | 包含整合條件幀和更新雜訊遮罩的潛在序列 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ar.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ar.md index 3516e13ba..8b6b246ca 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ar.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `Audio` | AUDIO | شكل موجة الصوت المفكوك تشفيره ومعدل العينات المرتبط به. | \ No newline at end of file +| `Audio` | AUDIO | شكل موجة الصوت المفكوك تشفيره ومعدل العينات المرتبط به. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/en.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/en.md index fe6dff52e..62c4e494d 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/en.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/en.md @@ -15,4 +15,4 @@ The LTXV Audio VAE Decode node converts a latent representation of audio back in | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `Audio` | AUDIO | The decoded audio waveform and its associated sample rate. | \ No newline at end of file +| `Audio` | AUDIO | The decoded audio waveform and its associated sample rate. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/es.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/es.md index f432732d8..b106faecf 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/es.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/es.md @@ -15,4 +15,4 @@ El nodo LTXV Audio VAE Decode convierte una representación latente de audio de | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `Audio` | AUDIO | La forma de onda de audio decodificada y su frecuencia de muestreo asociada. | \ No newline at end of file +| `Audio` | AUDIO | La forma de onda de audio decodificada y su frecuencia de muestreo asociada. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/fr.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/fr.md index 256e248b5..db67fc765 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/fr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/fr.md @@ -13,4 +13,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `Audio` | AUDIO | La forme d'onde audio décodée et sa fréquence d'échantillonnage associée. | \ No newline at end of file +| `Audio` | AUDIO | La forme d'onde audio décodée et sa fréquence d'échantillonnage associée. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ja.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ja.md index 5a722bae2..f924f497c 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ja.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ja.md @@ -15,4 +15,4 @@ LTXV Audio VAE Decodeノードは、オーディオの潜在表現をオーデ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `Audio` | AUDIO | デコードされたオーディオ波形と、それに関連付けられたサンプルレートです。 | \ No newline at end of file +| `Audio` | AUDIO | デコードされたオーディオ波形と、それに関連付けられたサンプルレートです。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ko.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ko.md index e32e50f83..259da8fb5 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ko.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ko.md @@ -15,4 +15,4 @@ LTXV Audio VAE Decode 노드는 오디오의 잠재 표현을 다시 오디오 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `Audio` | AUDIO | 디코딩된 오디오 파형과 그에 연관된 샘플링 레이트입니다. | \ No newline at end of file +| `Audio` | AUDIO | 디코딩된 오디오 파형과 그에 연관된 샘플링 레이트입니다. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/pt-BR.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/pt-BR.md index 9a06aa58a..ce3b5adc3 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/pt-BR.md @@ -15,4 +15,4 @@ O nó **LTXV Audio VAE Decode** converte uma representação latente de áudio d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `Audio` | AUDIO | A forma de onda de áudio decodificada e sua taxa de amostragem associada. | \ No newline at end of file +| `Audio` | AUDIO | A forma de onda de áudio decodificada e sua taxa de amostragem associada. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ru.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ru.md index 60719efe1..6adadae4c 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ru.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `Audio` | AUDIO | Декодированная аудиоволна и связанная с ней частота дискретизации. | \ No newline at end of file +| `Audio` | AUDIO | Декодированная аудиоволна и связанная с ней частота дискретизации. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/tr.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/tr.md index 2ecb9dcc4..de40c723f 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/tr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/tr.md @@ -15,4 +15,4 @@ LTXV Audio VAE Decode düğümü, bir sesin gizli (latent) temsilini tekrar bir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `Audio` | AUDIO | Kodu çözülmüş ses dalga formu ve ilişkili örnekleme hızı. | \ No newline at end of file +| `Audio` | AUDIO | Kodu çözülmüş ses dalga formu ve ilişkili örnekleme hızı. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh-TW.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh-TW.md index b5fddd0e8..0f87cc941 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `Audio` | AUDIO | 解碼後的音訊波形及其關聯的取樣率。 | \ No newline at end of file +| `Audio` | AUDIO | 解碼後的音訊波形及其關聯的取樣率。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh.md b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh.md index d73ca75be..7a93662a2 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEDecode/zh.md @@ -15,4 +15,4 @@ LTXV Audio VAE Decode 节点将音频的潜在表示转换回音频波形。它 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `Audio` | AUDIO | 解码后的音频波形及其关联的采样率。 | \ No newline at end of file +| `Audio` | AUDIO | 解码后的音频波形及其关联的采样率。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ar.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ar.md index 2c2e0e4f5..1307f18ee 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ar.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | التمثيل الكامن المضغوط للصوت المدخل. يتضمن الناتج العينات الكامنة، ومعدل العينة لنموذج VAE، ومعرف للنوع. | \ No newline at end of file +| `Audio Latent` | LATENT | التمثيل الكامن المضغوط للصوت المدخل. يتضمن الناتج العينات الكامنة، ومعدل العينة لنموذج VAE، ومعرف للنوع. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/en.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/en.md index b82a1688b..bcf4d0308 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/en.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/en.md @@ -13,4 +13,4 @@ The LTXV Audio VAE Encode node takes an audio input and compresses it into a sma | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | The compressed latent representation of the input audio. The output includes the latent samples, the sample rate of the VAE model, and a type identifier. | \ No newline at end of file +| `Audio Latent` | LATENT | The compressed latent representation of the input audio. The output includes the latent samples, the sample rate of the VAE model, and a type identifier. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/es.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/es.md index fd44174e0..1590effb3 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/es.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/es.md @@ -13,4 +13,4 @@ El nodo LTXV Audio VAE Encode toma una entrada de audio y la comprime en una rep | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | La representación latente comprimida del audio de entrada. La salida incluye las muestras latentes, la frecuencia de muestreo del modelo VAE y un identificador de tipo. | \ No newline at end of file +| `Audio Latent` | LATENT | La representación latente comprimida del audio de entrada. La salida incluye las muestras latentes, la frecuencia de muestreo del modelo VAE y un identificador de tipo. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/fr.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/fr.md index 17ae3fd29..a1b88c15c 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/fr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/fr.md @@ -13,4 +13,4 @@ Le nœud LTXV Audio VAE Encode prend une entrée audio et la compresse en une re | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | La représentation latente compressée de l'audio d'entrée. La sortie comprend les échantillons latents, la fréquence d'échantillonnage du modèle VAE et un identifiant de type. | \ No newline at end of file +| `Audio Latent` | LATENT | La représentation latente compressée de l'audio d'entrée. La sortie comprend les échantillons latents, la fréquence d'échantillonnage du modèle VAE et un identifiant de type. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ja.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ja.md index 916bde719..bfba5bf5d 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ja.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ja.md @@ -13,4 +13,4 @@ LTXV Audio VAE Encodeノードは、オーディオ入力を取得し、指定 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | 入力オーディオの圧縮された潜在表現です。出力には、潜在サンプル、VAEモデルのサンプルレート、およびタイプ識別子が含まれます。 | \ No newline at end of file +| `Audio Latent` | LATENT | 入力オーディオの圧縮された潜在表現です。出力には、潜在サンプル、VAEモデルのサンプルレート、およびタイプ識別子が含まれます。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ko.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ko.md index 854a0e710..8e3d94420 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ko.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ko.md @@ -13,4 +13,4 @@ LTXV Audio VAE Encode 노드는 오디오 입력을 받아 지정된 Audio VAE | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | 입력 오디오의 압축된 잠재 표현입니다. 출력에는 잠재 샘플, VAE 모델의 샘플 레이트 및 타입 식별자가 포함됩니다. | \ No newline at end of file +| `Audio Latent` | LATENT | 입력 오디오의 압축된 잠재 표현입니다. 출력에는 잠재 샘플, VAE 모델의 샘플 레이트 및 타입 식별자가 포함됩니다. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/pt-BR.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/pt-BR.md index e48de9232..bfa5e846f 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/pt-BR.md @@ -13,4 +13,4 @@ O nó **LTXV Audio VAE Encode** recebe uma entrada de áudio e a comprime em uma | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | A representação latente comprimida do áudio de entrada. A saída inclui as amostras latentes, a taxa de amostragem do modelo VAE e um identificador de tipo. | \ No newline at end of file +| `Audio Latent` | LATENT | A representação latente comprimida do áudio de entrada. A saída inclui as amostras latentes, a taxa de amostragem do modelo VAE e um identificador de tipo. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ru.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ru.md index 437d451cc..6b6fdb6fe 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ru.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | Сжатое латентное представление входного аудио. Выходные данные включают латентные сэмплы, частоту дискретизации модели VAE и идентификатор типа. | \ No newline at end of file +| `Audio Latent` | LATENT | Сжатое латентное представление входного аудио. Выходные данные включают латентные сэмплы, частоту дискретизации модели VAE и идентификатор типа. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/tr.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/tr.md index ea440ea04..cf7dc4862 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/tr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/tr.md @@ -13,4 +13,4 @@ LTXV Audio VAE Encode düğümü, bir ses girişi alır ve belirtilen bir Audio | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | Giriş sesinin sıkıştırılmış gizli temsili. Çıktı, gizli örnekleri, VAE modelinin örnekleme hızını ve bir tür tanımlayıcısını içerir. | \ No newline at end of file +| `Audio Latent` | LATENT | Giriş sesinin sıkıştırılmış gizli temsili. Çıktı, gizli örnekleri, VAE modelinin örnekleme hızını ve bir tür tanımlayıcısını içerir. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh-TW.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh-TW.md index 2dd1a0e05..3489a7c48 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | 輸入音訊的壓縮潛在表示。輸出包含潛在樣本、VAE 模型的採樣率以及一個類型識別碼。 | \ No newline at end of file +| `Audio Latent` | LATENT | 輸入音訊的壓縮潛在表示。輸出包含潛在樣本、VAE 模型的採樣率以及一個類型識別碼。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh.md b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh.md index b9dbe708e..e0799c34f 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAEEncode/zh.md @@ -13,4 +13,4 @@ LTXV Audio VAE Encode 节点接收音频输入,并使用指定的 Audio VAE | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `Audio Latent` | LATENT | 输入音频的压缩潜在表示。输出包含潜在样本、VAE 模型的采样率以及一个类型标识符。 | \ No newline at end of file +| `Audio Latent` | LATENT | 输入音频的压缩潜在表示。输出包含潜在样本、VAE 模型的采样率以及一个类型标识符。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ar.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ar.md index ca3c5f33c..40c3b95fc 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ar.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `Audio VAE` | VAE | نموذج Audio Variational Autoencoder المحمَّل، جاهز للاتصال بعُقد معالجة الصوت الأخرى. | \ No newline at end of file +| `Audio VAE` | VAE | نموذج Audio Variational Autoencoder المحمَّل، جاهز للاتصال بعُقد معالجة الصوت الأخرى. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/en.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/en.md index e4e746438..ce74d1cb2 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/en.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/en.md @@ -12,4 +12,4 @@ The LTXV Audio VAE Loader node loads a pre-trained Audio Variational Autoencoder | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `Audio VAE` | VAE | The loaded Audio Variational Autoencoder model, ready to be connected to other audio processing nodes. | \ No newline at end of file +| `Audio VAE` | VAE | The loaded Audio Variational Autoencoder model, ready to be connected to other audio processing nodes. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/es.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/es.md index 47d2e49fd..984fcdb9e 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/es.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/es.md @@ -12,4 +12,4 @@ El nodo LTXV Audio VAE Loader carga un modelo preentrenado de Autoencoder Variac | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `Audio VAE` | VAE | El modelo de Autoencoder Variacional para audio cargado, listo para ser conectado a otros nodos de procesamiento de audio. | \ No newline at end of file +| `Audio VAE` | VAE | El modelo de Autoencoder Variacional para audio cargado, listo para ser conectado a otros nodos de procesamiento de audio. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/fr.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/fr.md index aa7c7132b..76f7334a1 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/fr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/fr.md @@ -10,4 +10,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `Audio VAE` | VAE | Le modèle d'autoencodeur variationnel audio chargé, prêt à être connecté à d'autres nœuds de traitement audio. | \ No newline at end of file +| `Audio VAE` | VAE | Le modèle d'autoencodeur variationnel audio chargé, prêt à être connecté à d'autres nœuds de traitement audio. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ja.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ja.md index 7c101f333..b6b6963fa 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ja.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ja.md @@ -12,4 +12,4 @@ LTXV Audio VAE Loaderノードは、チェックポイントファイルから | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `Audio VAE` | VAE | 読み込まれたオーディオ変分オートエンコーダーモデルです。他のオーディオ処理ノードに接続する準備ができています。 | \ No newline at end of file +| `Audio VAE` | VAE | 読み込まれたオーディオ変分オートエンコーダーモデルです。他のオーディオ処理ノードに接続する準備ができています。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ko.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ko.md index bc231989c..3c0aa5220 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ko.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ko.md @@ -12,4 +12,4 @@ LTXV Audio VAE Loader 노드는 체크포인트 파일에서 사전 학습된 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `Audio VAE` | VAE | 로드된 오디오 변분 자동인코더 모델로, 다른 오디오 처리 노드에 연결할 준비가 되었습니다. | \ No newline at end of file +| `Audio VAE` | VAE | 로드된 오디오 변분 자동인코더 모델로, 다른 오디오 처리 노드에 연결할 준비가 되었습니다. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/pt-BR.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/pt-BR.md index 12543f8e2..a5d3573b3 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/pt-BR.md @@ -12,4 +12,4 @@ O nó LTXV Audio VAE Loader carrega um modelo pré-treinado de Autoencoder Varia | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `Audio VAE` | VAE | O modelo de Autoencoder Variacional para áudio carregado, pronto para ser conectado a outros nós de processamento de áudio. | \ No newline at end of file +| `Audio VAE` | VAE | O modelo de Autoencoder Variacional para áudio carregado, pronto para ser conectado a outros nós de processamento de áudio. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ru.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ru.md index 6d497494d..dcc3641c0 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ru.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `Audio VAE` | VAE | Загруженная модель аудио-вариационного автоэнкодера, готовая к подключению к другим узлам обработки аудио. | \ No newline at end of file +| `Audio VAE` | VAE | Загруженная модель аудио-вариационного автоэнкодера, готовая к подключению к другим узлам обработки аудио. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/tr.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/tr.md index b7aa46380..031884f33 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/tr.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/tr.md @@ -12,4 +12,4 @@ LTXV Audio VAE Yükleyici düğümü, önceden eğitilmiş bir Ses Varyasyonel O | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `Audio VAE` | VAE | Yüklenen Ses Varyasyonel Otomatik Kodlayıcı modeli, diğer ses işleme düğümlerine bağlanmaya hazır. | \ No newline at end of file +| `Audio VAE` | VAE | Yüklenen Ses Varyasyonel Otomatik Kodlayıcı modeli, diğer ses işleme düğümlerine bağlanmaya hazır. | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh-TW.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh-TW.md index 9cbd7a639..45e602de2 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `Audio VAE` | VAE | 已載入的音訊變分自編碼器模型,可連接至其他音訊處理節點。 | \ No newline at end of file +| `Audio VAE` | VAE | 已載入的音訊變分自編碼器模型,可連接至其他音訊處理節點。 | diff --git a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh.md b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh.md index f3627f372..843864c5b 100644 --- a/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh.md +++ b/comfyui_embedded_docs/docs/LTXVAudioVAELoader/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `Audio VAE` | VAE | 已加载的音频变分自编码器模型,可连接到其他音频处理节点。 | \ No newline at end of file +| `Audio VAE` | VAE | 已加载的音频变分自编码器模型,可连接到其他音频处理节点。 | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ar.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ar.md index 65cf83c4f..9912e55c1 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ar.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `latent` | LATENT | قاموس كامن واحد يحتوي على موتر `samples` المُدمَج، وإذا كان مُطبقًا، قناع `noise_mask` المُدمَج من مدخلي الفيديو والصوت. | \ No newline at end of file +| `latent` | LATENT | قاموس كامن واحد يحتوي على موتر `samples` المُدمَج، وإذا كان مُطبقًا، قناع `noise_mask` المُدمَج من مدخلي الفيديو والصوت. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/en.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/en.md index 98835f4b5..9cdec1f32 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/en.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/en.md @@ -15,4 +15,4 @@ The LTXVConcatAVLatent node combines a video latent representation and an audio | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `latent` | LATENT | A single latent dictionary containing the concatenated `samples` and, if applicable, the concatenated `noise_mask` from the video and audio inputs. | \ No newline at end of file +| `latent` | LATENT | A single latent dictionary containing the concatenated `samples` and, if applicable, the concatenated `noise_mask` from the video and audio inputs. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/es.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/es.md index f1bc4dc78..2dfff7bdf 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/es.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/es.md @@ -15,4 +15,4 @@ El nodo LTXVConcatAVLatent combina una representación latente de video y una re | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `latent` | LATENT | Un único diccionario latente que contiene los `samples` concatenados y, si corresponde, el `noise_mask` concatenado de las entradas de video y audio. | \ No newline at end of file +| `latent` | LATENT | Un único diccionario latente que contiene los `samples` concatenados y, si corresponde, el `noise_mask` concatenado de las entradas de video y audio. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/fr.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/fr.md index 6c9f01663..e88493189 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/fr.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/fr.md @@ -13,4 +13,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `latent` | LATENT | Un dictionnaire latent unique contenant les `samples` concaténés et, le cas échéant, le `noise_mask` concaténé provenant des entrées vidéo et audio. | \ No newline at end of file +| `latent` | LATENT | Un dictionnaire latent unique contenant les `samples` concaténés et, le cas échéant, le `noise_mask` concaténé provenant des entrées vidéo et audio. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ja.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ja.md index 00f55f5fe..4e6c5b2b0 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ja.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ja.md @@ -15,4 +15,4 @@ LTXVConcatAVLatentノードは、映像の潜在表現と音声の潜在表現 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `latent` | LATENT | 映像入力と音声入力から連結された `samples` と、該当する場合は連結された `noise_mask` を含む、単一の潜在辞書です。 | \ No newline at end of file +| `latent` | LATENT | 映像入力と音声入力から連結された `samples` と、該当する場合は連結された `noise_mask` を含む、単一の潜在辞書です。 | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ko.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ko.md index 740cb1001..356782e59 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ko.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ko.md @@ -15,4 +15,4 @@ LTXVConcatAVLatent 노드는 비디오 잠재 표현과 오디오 잠재 표현 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `latent` | LATENT | 비디오 및 오디오 입력에서 연결된 `samples`와, 해당되는 경우 연결된 `noise_mask`를 포함하는 단일 잠재 딕셔너리입니다. | \ No newline at end of file +| `latent` | LATENT | 비디오 및 오디오 입력에서 연결된 `samples`와, 해당되는 경우 연결된 `noise_mask`를 포함하는 단일 잠재 딕셔너리입니다. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/pt-BR.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/pt-BR.md index 098057380..c1116e270 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/pt-BR.md @@ -15,4 +15,4 @@ O nó LTXVConcatAVLatent combina uma representação latente de vídeo e uma rep | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `latent` | LATENT | Um único dicionário latente contendo os `samples` concatenados e, se aplicável, o `noise_mask` concatenado das entradas de vídeo e áudio. | \ No newline at end of file +| `latent` | LATENT | Um único dicionário latente contendo os `samples` concatenados e, se aplicável, o `noise_mask` concatenado das entradas de vídeo e áudio. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ru.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ru.md index 8ef5fff55..1c26eb553 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ru.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `latent` | LATENT | Единый латентный словарь, содержащий конкатенированные `samples` и, если применимо, конкатенированный `noise_mask` из видео- и аудиовходов. | \ No newline at end of file +| `latent` | LATENT | Единый латентный словарь, содержащий конкатенированные `samples` и, если применимо, конкатенированный `noise_mask` из видео- и аудиовходов. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/tr.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/tr.md index b9c12118d..302482cd4 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/tr.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/tr.md @@ -15,4 +15,4 @@ LTXVConcatAVLatent düğümü, bir video gizli temsili ile bir ses gizli temsili | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `latent` | LATENT | Video ve ses girdilerinden birleştirilmiş `samples`'ı ve uygulanabilirse birleştirilmiş `noise_mask`'i içeren tek bir gizli sözlük. | \ No newline at end of file +| `latent` | LATENT | Video ve ses girdilerinden birleştirilmiş `samples`'ı ve uygulanabilirse birleştirilmiş `noise_mask`'i içeren tek bir gizli sözlük. | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh-TW.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh-TW.md index aa9ce578d..45f216546 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh-TW.md @@ -15,4 +15,4 @@ LTXVConcatAVLatent 節點將影片潛在表示和音訊潛在表示合併為一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 一個包含串聯後的 `samples` 的潛在字典,如果適用的話,還包含來自影片和音訊輸入的串聯後的 `noise_mask`。 | \ No newline at end of file +| `latent` | LATENT | 一個包含串聯後的 `samples` 的潛在字典,如果適用的話,還包含來自影片和音訊輸入的串聯後的 `noise_mask`。 | diff --git a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh.md b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh.md index 7e4b0928f..7524eec02 100644 --- a/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh.md +++ b/comfyui_embedded_docs/docs/LTXVConcatAVLatent/zh.md @@ -15,4 +15,4 @@ LTXVConcatAVLatent 节点将视频潜在表示和音频潜在表示合并为一 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 一个单一的潜在字典,包含拼接后的 `samples`,以及(如果适用)来自视频和音频输入的拼接后的 `noise_mask`。 | \ No newline at end of file +| `latent` | LATENT | 一个单一的潜在字典,包含拼接后的 `samples`,以及(如果适用)来自视频和音频输入的拼接后的 `noise_mask`。 | diff --git a/comfyui_embedded_docs/docs/LTXVConditioning/ar.md b/comfyui_embedded_docs/docs/LTXVConditioning/ar.md index ecdbbe9f8..ef31fd161 100644 --- a/comfyui_embedded_docs/docs/LTXVConditioning/ar.md +++ b/comfyui_embedded_docs/docs/LTXVConditioning/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------------------------------------------| | `سلبي` | CONDITIONING | التكييف الإيجابي مع تطبيق معلومات معدل الإطارات | -| `سلبي` | CONDITIONING | التكييف السلبي مع تطبيق معلومات معدل الإطارات | \ No newline at end of file +| `سلبي` | CONDITIONING | التكييف السلبي مع تطبيق معلومات معدل الإطارات | diff --git a/comfyui_embedded_docs/docs/LTXVConditioning/pt-BR.md b/comfyui_embedded_docs/docs/LTXVConditioning/pt-BR.md index 71cf607ab..b4eb5dcf5 100644 --- a/comfyui_embedded_docs/docs/LTXVConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVConditioning/pt-BR.md @@ -15,4 +15,4 @@ O nó LTXVConditioning adiciona informações de taxa de quadros (frame rate) ta | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo com a informação de taxa de quadros aplicada | -| `negative` | CONDITIONING | O condicionamento negativo com a informação de taxa de quadros aplicada | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo com a informação de taxa de quadros aplicada | diff --git a/comfyui_embedded_docs/docs/LTXVConditioning/tr.md b/comfyui_embedded_docs/docs/LTXVConditioning/tr.md index e2d7ebf8a..ab7d4bd02 100644 --- a/comfyui_embedded_docs/docs/LTXVConditioning/tr.md +++ b/comfyui_embedded_docs/docs/LTXVConditioning/tr.md @@ -15,4 +15,4 @@ LTXVConditioning düğümü, video üretim modelleri için hem pozitif hem de ne | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | Kare hızı bilgisi uygulanmış pozitif koşullandırma | -| `negatif` | CONDITIONING | Kare hızı bilgisi uygulanmış negatif koşullandırma | \ No newline at end of file +| `negatif` | CONDITIONING | Kare hızı bilgisi uygulanmış negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/LTXVConditioning/zh-TW.md b/comfyui_embedded_docs/docs/LTXVConditioning/zh-TW.md index 2d2a89252..799e30426 100644 --- a/comfyui_embedded_docs/docs/LTXVConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVConditioning/zh-TW.md @@ -15,4 +15,4 @@ LTXVConditioning 節點會為影片生成模型的正向與負向條件輸入添 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 已應用幀率資訊的正向條件資料 | -| `負向` | CONDITIONING | 已應用幀率資訊的負向條件資料 | \ No newline at end of file +| `負向` | CONDITIONING | 已應用幀率資訊的負向條件資料 | diff --git a/comfyui_embedded_docs/docs/LTXVCropGuides/ar.md b/comfyui_embedded_docs/docs/LTXVCropGuides/ar.md index 53c5bde5e..4df1bb448 100644 --- a/comfyui_embedded_docs/docs/LTXVCropGuides/ar.md +++ b/comfyui_embedded_docs/docs/LTXVCropGuides/ar.md @@ -18,4 +18,4 @@ | `سلبي` | CONDITIONING | التكييف الإيجابي المعالج مع مسح مؤشرات الإطارات الرئيسية | | `كامن` | CONDITIONING | التكييف السلبي المعالج مع مسح مؤشرات الإطارات الرئيسية | | `كامن` | LATENT | التمثيل الكامن المقصوص مع العينات المعدلة وقناع الضوضاء | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/LTXVCropGuides/pt-BR.md b/comfyui_embedded_docs/docs/LTXVCropGuides/pt-BR.md index 5467f8082..5c9ca67f7 100644 --- a/comfyui_embedded_docs/docs/LTXVCropGuides/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVCropGuides/pt-BR.md @@ -16,4 +16,4 @@ O nó LTXVCropGuides processa condicionamentos e entradas latentes para geraçã |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo processado, com índices de quadros-chave limpos | | `negative` | CONDITIONING | O condicionamento negativo processado, com índices de quadros-chave limpos | -| `latent` | LATENT | A representação latente recortada, com amostras e máscara de ruído ajustadas | \ No newline at end of file +| `latent` | LATENT | A representação latente recortada, com amostras e máscara de ruído ajustadas | diff --git a/comfyui_embedded_docs/docs/LTXVCropGuides/tr.md b/comfyui_embedded_docs/docs/LTXVCropGuides/tr.md index 68e316ea7..70359ebee 100644 --- a/comfyui_embedded_docs/docs/LTXVCropGuides/tr.md +++ b/comfyui_embedded_docs/docs/LTXVCropGuides/tr.md @@ -16,4 +16,4 @@ LTXVCropGuides düğümü, video üretimi için koşullandırma ve gizli girdile |-------------|-----------|-------------| | `negatif` | CONDITIONING | Anahtar kare indeksleri temizlenmiş işlenmiş pozitif koşullandırma | | `gizli` | CONDITIONING | Anahtar kare indeksleri temizlenmiş işlenmiş negatif koşullandırma | -| `gizli` | LATENT | Ayarlanmış örnekler ve gürültü maskesi ile kırpılmış gizli temsil | \ No newline at end of file +| `gizli` | LATENT | Ayarlanmış örnekler ve gürültü maskesi ile kırpılmış gizli temsil | diff --git a/comfyui_embedded_docs/docs/LTXVCropGuides/zh-TW.md b/comfyui_embedded_docs/docs/LTXVCropGuides/zh-TW.md index bd3003959..577c2ab6f 100644 --- a/comfyui_embedded_docs/docs/LTXVCropGuides/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVCropGuides/zh-TW.md @@ -18,4 +18,4 @@ LTXVCropGuides 節點透過移除關鍵影格資訊並調整潛在空間維度 |-------------|-----------|-------------| | `正向` | CONDITIONING | 已清除關鍵影格索引的處理後正向條件 | | `負向` | CONDITIONING | 已清除關鍵影格索引的處理後負向條件 | -| `潛在空間` | LATENT | 包含調整後樣本和噪聲遮罩的裁剪潛在表示 | \ No newline at end of file +| `潛在空間` | LATENT | 包含調整後樣本和噪聲遮罩的裁剪潛在表示 | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ar.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ar.md index e050c908f..6f22bc5a4 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ar.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `Latent` | LATENT | موتر صوت كامن فارغ ذو هيكل (samples, sample_rate, type) مُهيأ ليتطابق مع نموذج Audio VAE المدخل. | \ No newline at end of file +| `Latent` | LATENT | موتر صوت كامن فارغ ذو هيكل (samples, sample_rate, type) مُهيأ ليتطابق مع نموذج Audio VAE المدخل. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/en.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/en.md index 3b5f98a5f..057937339 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/en.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/en.md @@ -17,4 +17,4 @@ The LTXV Empty Latent Audio node creates a batch of empty (zero-filled) latent a | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `Latent` | LATENT | An empty latent audio tensor with the structure (samples, sample_rate, type) configured to match the input Audio VAE. | \ No newline at end of file +| `Latent` | LATENT | An empty latent audio tensor with the structure (samples, sample_rate, type) configured to match the input Audio VAE. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/es.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/es.md index f230945d7..97a1e30b4 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/es.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/es.md @@ -17,4 +17,4 @@ El nodo LTXV Empty Latent Audio crea un lote de tensores latentes de audio vací | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `Latent` | LATENT | Un tensor latente de audio vacío con la estructura (muestras, frecuencia_de_muestreo, tipo) configurada para coincidir con el VAE de Audio de entrada. | \ No newline at end of file +| `Latent` | LATENT | Un tensor latente de audio vacío con la estructura (muestras, frecuencia_de_muestreo, tipo) configurada para coincidir con el VAE de Audio de entrada. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/fr.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/fr.md index 9948ba7a6..53300fd92 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/fr.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/fr.md @@ -19,4 +19,4 @@ Le nœud LTXV Empty Latent Audio crée un lot de tenseurs latents audio vides (r | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `Latent` | LATENT | Un tenseur latent audio vide avec la structure (échantillons, fréquence d'échantillonnage, type) configurée pour correspondre au VAE Audio d'entrée. | \ No newline at end of file +| `Latent` | LATENT | Un tenseur latent audio vide avec la structure (échantillons, fréquence d'échantillonnage, type) configurée pour correspondre au VAE Audio d'entrée. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ja.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ja.md index 9c3d3d380..ce336be54 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ja.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ja.md @@ -17,4 +17,4 @@ LTXV Empty Latent Audioノードは、空(ゼロ埋め)の潜在オーディ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `Latent` | LATENT | 入力Audio VAEに合わせて構成された、(サンプル数、サンプルレート、タイプ)の構造を持つ空の潜在オーディオテンソル。 | \ No newline at end of file +| `Latent` | LATENT | 入力Audio VAEに合わせて構成された、(サンプル数、サンプルレート、タイプ)の構造を持つ空の潜在オーディオテンソル。 | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ko.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ko.md index 341462cf8..260bbb859 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ko.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ko.md @@ -17,4 +17,4 @@ LTXV Empty Latent Audio 노드는 빈(0으로 채워진) 잠재 오디오 텐서 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `Latent` | LATENT | 입력 Audio VAE와 일치하도록 구성된 (samples, sample_rate, type) 구조를 가진 빈 잠재 오디오 텐서입니다. | \ No newline at end of file +| `Latent` | LATENT | 입력 Audio VAE와 일치하도록 구성된 (samples, sample_rate, type) 구조를 가진 빈 잠재 오디오 텐서입니다. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/pt-BR.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/pt-BR.md index d7990e567..0d2d6ee5d 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/pt-BR.md @@ -17,4 +17,4 @@ O nó LTXV Empty Latent Audio cria um lote de tensores latentes de áudio vazios | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `Latent` | LATENT | Um tensor latente de áudio vazio com a estrutura (amostras, taxa_de_amostragem, tipo) configurada para corresponder ao VAE de Áudio de entrada. | \ No newline at end of file +| `Latent` | LATENT | Um tensor latente de áudio vazio com a estrutura (amostras, taxa_de_amostragem, tipo) configurada para corresponder ao VAE de Áudio de entrada. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ru.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ru.md index 0f6174e0d..cd768c8cb 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ru.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/ru.md @@ -17,4 +17,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `Latent` | LATENT | Пустой латентный аудиотензор со структурой (samples, sample_rate, type), настроенной в соответствии с входной моделью Audio VAE. | \ No newline at end of file +| `Latent` | LATENT | Пустой латентный аудиотензор со структурой (samples, sample_rate, type), настроенной в соответствии с входной моделью Audio VAE. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/tr.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/tr.md index bacb0182b..e6e050c2c 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/tr.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/tr.md @@ -17,4 +17,4 @@ LTXV Empty Latent Audio düğümü, boş (sıfırlarla doldurulmuş) gizli ses t | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `Latent` | LATENT | Girdi Audio VAE modeliyle eşleşecek şekilde yapılandırılmış, yapısı (samples, sample_rate, type) olan boş bir gizli ses tensörü. | \ No newline at end of file +| `Latent` | LATENT | Girdi Audio VAE modeliyle eşleşecek şekilde yapılandırılmış, yapısı (samples, sample_rate, type) olan boş bir gizli ses tensörü. | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh-TW.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh-TW.md index cd33eb921..c0224ff4f 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh-TW.md @@ -17,4 +17,4 @@ LTXV Empty Latent Audio 節點會建立一批空的(以零填充的)潛在 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `Latent` | LATENT | 一個空的潛在音訊張量,其結構(樣本數、取樣率、類型)已配置為與輸入的 Audio VAE 相匹配。 | \ No newline at end of file +| `Latent` | LATENT | 一個空的潛在音訊張量,其結構(樣本數、取樣率、類型)已配置為與輸入的 Audio VAE 相匹配。 | diff --git a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh.md b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh.md index ee7e57ccc..a3e87c3c5 100644 --- a/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh.md +++ b/comfyui_embedded_docs/docs/LTXVEmptyLatentAudio/zh.md @@ -17,4 +17,4 @@ LTXV Empty Latent Audio 节点创建一批空(零填充)的潜在音频张 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `Latent` | LATENT | 一个空的潜在音频张量,其结构(样本数,采样率,类型)被配置为与输入的 Audio VAE 相匹配。 | \ No newline at end of file +| `Latent` | LATENT | 一个空的潜在音频张量,其结构(样本数,采样率,类型)被配置为与输入的 Audio VAE 相匹配。 | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideo/ar.md b/comfyui_embedded_docs/docs/LTXVImgToVideo/ar.md index 4d230f0c4..903793236 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideo/ar.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideo/ar.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التكييف الإيجابي المعالج مع تطبيق قناع إطارات الفيديو | | `كامن` | CONDITIONING | التكييف السلبي المعالج مع تطبيق قناع إطارات الفيديو | -| `latent` | LATENT | التمثيل الكامن للفيديو الذي يحتوي على الإطارات المشفرة وقناع الضوضاء لتوليد الفيديو | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو الذي يحتوي على الإطارات المشفرة وقناع الضوضاء لتوليد الفيديو | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideo/pt-BR.md b/comfyui_embedded_docs/docs/LTXVImgToVideo/pt-BR.md index e3d7268bb..f5d31f035 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideo/pt-BR.md @@ -22,4 +22,4 @@ O nó LTXVImgToVideo converte uma imagem de entrada em uma representação laten |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo processado com máscara de quadro de vídeo aplicada | | `negative` | CONDITIONING | Condicionamento negativo processado com máscara de quadro de vídeo aplicada | -| `latent` | LATENT | Representação latente de vídeo contendo os quadros codificados e a máscara de ruído para geração de vídeo | \ No newline at end of file +| `latent` | LATENT | Representação latente de vídeo contendo os quadros codificados e a máscara de ruído para geração de vídeo | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideo/tr.md b/comfyui_embedded_docs/docs/LTXVImgToVideo/tr.md index a7a511625..d45fa7927 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideo/tr.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideo/tr.md @@ -22,4 +22,4 @@ LTXVImgToVideo düğümü, bir giriş görüntüsünü video üretim modelleri i |-------------|-----------|-------------| | `pozitif` | CONDITIONING | Video kare maskelemesi uygulanmış işlenmiş olumlu koşullandırma | | `negatif` | CONDITIONING | Video kare maskelemesi uygulanmış işlenmiş olumsuz koşullandırma | -| `latent` | LATENT | Video üretimi için kodlanmış kareleri ve gürültü maskesini içeren video latent temsili | \ No newline at end of file +| `latent` | LATENT | Video üretimi için kodlanmış kareleri ve gürültü maskesini içeren video latent temsili | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideo/zh-TW.md b/comfyui_embedded_docs/docs/LTXVImgToVideo/zh-TW.md index a5d4dc607..4cfb758c8 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideo/zh-TW.md @@ -22,4 +22,4 @@ LTXVImgToVideo 節點將輸入圖像轉換為影片潛在表示,供影片生 |-------------|-----------|-------------| | `負向` | CONDITIONING | 已處理並應用影片影格遮罩的正向條件調節 | | `潛在空間` | CONDITIONING | 已處理並應用影片影格遮罩的負向條件調節 | -| `latent` | LATENT | 包含編碼影格和雜訊遮罩的影片潛在表示,用於影片生成 | \ No newline at end of file +| `latent` | LATENT | 包含編碼影格和雜訊遮罩的影片潛在表示,用於影片生成 | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ar.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ar.md index bc9547bd7..e52351cc0 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ar.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `latent` | LATENT | التمثيل الكامن المعدل للفيديو. يحتوي على العينات المحدثة و `noise_mask` الذي يطبق قوة التكييف على الإطارات الأولية. | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن المعدل للفيديو. يحتوي على العينات المحدثة و `noise_mask` الذي يطبق قوة التكييف على الإطارات الأولية. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/en.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/en.md index c9b625da1..9fb0d7a87 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/en.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/en.md @@ -18,4 +18,4 @@ The LTXVImgToVideoInplace node conditions a video latent representation by encod | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `latent` | LATENT | The modified latent video representation. It contains the updated samples and a `noise_mask` that applies the conditioning strength to the initial frames. | \ No newline at end of file +| `latent` | LATENT | The modified latent video representation. It contains the updated samples and a `noise_mask` that applies the conditioning strength to the initial frames. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/es.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/es.md index 888c3b783..9e944b3ae 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/es.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/es.md @@ -18,4 +18,4 @@ El nodo LTXVImgToVideoInplace condiciona una representación latente de video co | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `latent` | LATENT | La representación latente de video modificada. Contiene las muestras actualizadas y una `noise_mask` que aplica la fuerza de condicionamiento a los fotogramas iniciales. | \ No newline at end of file +| `latent` | LATENT | La representación latente de video modificada. Contiene las muestras actualizadas y una `noise_mask` que aplica la fuerza de condicionamiento a los fotogramas iniciales. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/fr.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/fr.md index 5a9b677ab..3ab6aee2b 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/fr.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/fr.md @@ -18,4 +18,4 @@ Le nœud LTXVImgToVideoInplace conditionne une représentation latente vidéo en | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `latent` | LATENT | La représentation latente vidéo modifiée. Elle contient les échantillons mis à jour et un `noise_mask` qui applique l'intensité de conditionnement aux premières trames. | \ No newline at end of file +| `latent` | LATENT | La représentation latente vidéo modifiée. Elle contient les échantillons mis à jour et un `noise_mask` qui applique l'intensité de conditionnement aux premières trames. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ja.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ja.md index e77a973a2..cf7315dcc 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ja.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ja.md @@ -18,4 +18,4 @@ LTXVImgToVideoInplaceノードは、入力画像を初期フレームにエン | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `latent` | LATENT | 変更された動画の潜在表現です。更新されたサンプルと、初期フレームに条件付け強度を適用する`noise_mask`を含みます。 | \ No newline at end of file +| `latent` | LATENT | 変更された動画の潜在表現です。更新されたサンプルと、初期フレームに条件付け強度を適用する`noise_mask`を含みます。 | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ko.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ko.md index b8cfbed3d..2a36d686d 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ko.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ko.md @@ -18,4 +18,4 @@ LTXVImgToVideoInplace 노드는 입력 이미지를 초기 프레임으로 인 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `latent` | LATENT | 수정된 비디오 잠재 표현입니다. 업데이트된 샘플과 초기 프레임에 조건 부여 강도를 적용하는 `noise_mask`를 포함합니다. | \ No newline at end of file +| `latent` | LATENT | 수정된 비디오 잠재 표현입니다. 업데이트된 샘플과 초기 프레임에 조건 부여 강도를 적용하는 `noise_mask`를 포함합니다. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/pt-BR.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/pt-BR.md index e6cb2838a..75f1c6c2c 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/pt-BR.md @@ -18,4 +18,4 @@ O nó LTXVImgToVideoInplace condiciona uma representação latente de vídeo cod | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `latent` | LATENT | A representação latente de vídeo modificada. Ela contém as amostras atualizadas e uma `noise_mask` que aplica a força de condicionamento aos quadros iniciais. | \ No newline at end of file +| `latent` | LATENT | A representação latente de vídeo modificada. Ela contém as amostras atualizadas e uma `noise_mask` que aplica a força de condicionamento aos quadros iniciais. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ru.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ru.md index a8e6cac75..e3c857874 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ru.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/ru.md @@ -18,4 +18,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `latent` | LATENT | Изменённое латентное представление видео. Оно содержит обновлённые сэмплы и `noise_mask`, который применяет силу формирования к начальным кадрам. | \ No newline at end of file +| `latent` | LATENT | Изменённое латентное представление видео. Оно содержит обновлённые сэмплы и `noise_mask`, который применяет силу формирования к начальным кадрам. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/tr.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/tr.md index 2080dbf76..2afb04f9e 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/tr.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/tr.md @@ -18,4 +18,4 @@ LTXVImgToVideoInplace düğümü, bir giriş görüntüsünü ilk karelerine kod | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `latent` | LATENT | Değiştirilmiş gizli video temsili. Güncellenmiş örnekleri ve koşullandırma gücünü ilk karelere uygulayan bir `noise_mask` içerir. | \ No newline at end of file +| `latent` | LATENT | Değiştirilmiş gizli video temsili. Güncellenmiş örnekleri ve koşullandırma gücünü ilk karelere uygulayan bir `noise_mask` içerir. | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh-TW.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh-TW.md index 99053b4ac..2fe676287 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh-TW.md @@ -18,4 +18,4 @@ LTXVImgToVideoInplace 節點透過將輸入圖像編碼到其初始影格中, | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 修改後的視訊潛在表徵。它包含更新後的樣本以及一個將條件設定強度應用於初始影格的 `noise_mask`。 | \ No newline at end of file +| `latent` | LATENT | 修改後的視訊潛在表徵。它包含更新後的樣本以及一個將條件設定強度應用於初始影格的 `noise_mask`。 | diff --git a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh.md b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh.md index 0565ecd82..062ae2bed 100644 --- a/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh.md +++ b/comfyui_embedded_docs/docs/LTXVImgToVideoInplace/zh.md @@ -18,4 +18,4 @@ LTXVImgToVideoInplace 节点通过将输入图像编码到其初始帧中,来 | 输出名 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 修改后的潜在视频表示。它包含更新后的样本以及一个将条件化强度应用于初始帧的 `noise_mask`。 | \ No newline at end of file +| `latent` | LATENT | 修改后的潜在视频表示。它包含更新后的样本以及一个将条件化强度应用于初始帧的 `noise_mask`。 | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ar.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ar.md index 085b4f89f..17a78addd 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ar.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | التمثيل الكامن (اللاتنت) المُكبَّر، حيث تضاعفت الأبعاد المكانية مقارنةً بالمدخل. | \ No newline at end of file +| `LATENT` | LATENT | التمثيل الكامن (اللاتنت) المُكبَّر، حيث تضاعفت الأبعاد المكانية مقارنةً بالمدخل. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/en.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/en.md index 7dc0c3285..86b49d967 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/en.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/en.md @@ -14,4 +14,4 @@ The LTXVLatentUpsampler node increases the spatial resolution of a video latent | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `LATENT` | LATENT | The upscaled latent representation, with spatial dimensions doubled compared to the input. | \ No newline at end of file +| `LATENT` | LATENT | The upscaled latent representation, with spatial dimensions doubled compared to the input. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/es.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/es.md index 570da1a88..dd2628b96 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/es.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/es.md @@ -14,4 +14,4 @@ El nodo LTXVLatentUpsampler aumenta la resolución espacial de una representaci | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `LATENT` | LATENT | La representación latente aumentada de escala, con dimensiones espaciales duplicadas en comparación con la entrada. | \ No newline at end of file +| `LATENT` | LATENT | La representación latente aumentada de escala, con dimensiones espaciales duplicadas en comparación con la entrada. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/fr.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/fr.md index 2b3a88010..f9d5a5d7e 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/fr.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/fr.md @@ -16,4 +16,4 @@ Le nœud LTXVLatentUpsampler augmente la résolution spatiale d'une représentat | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `LATENT` | LATENT | La représentation latente suréchantillonnée, dont les dimensions spatiales sont doublées par rapport à l'entrée. | \ No newline at end of file +| `LATENT` | LATENT | La représentation latente suréchantillonnée, dont les dimensions spatiales sont doublées par rapport à l'entrée. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ja.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ja.md index 67373c710..1a71770bb 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ja.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ja.md @@ -14,4 +14,4 @@ LTXVLatentUpsamplerノードは、動画の潜在表現の空間解像度を2倍 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `LATENT` | LATENT | アップスケールされた潜在表現です。空間次元は入力と比較して2倍になっています。 | \ No newline at end of file +| `LATENT` | LATENT | アップスケールされた潜在表現です。空間次元は入力と比較して2倍になっています。 | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ko.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ko.md index 710077773..ffdcfc761 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ko.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ko.md @@ -14,4 +14,4 @@ LTXVLatentUpsampler 노드는 비디오 잠재 표현의 공간 해상도를 2 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 업스케일된 잠재 표현으로, 입력에 비해 공간 차원이 두 배로 증가합니다. | \ No newline at end of file +| `LATENT` | LATENT | 업스케일된 잠재 표현으로, 입력에 비해 공간 차원이 두 배로 증가합니다. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/pt-BR.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/pt-BR.md index eb1cbc7ff..e21db736b 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/pt-BR.md @@ -14,4 +14,4 @@ O nó LTXVLatentUpsampler aumenta a resolução espacial de uma representação | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | A representação latente superamostrada, com as dimensões espaciais dobradas em comparação com a entrada. | \ No newline at end of file +| `LATENT` | LATENT | A representação latente superamostrada, com as dimensões espaciais dobradas em comparação com a entrada. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ru.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ru.md index 2963800e0..65ec5bed0 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ru.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `LATENT` | LATENT | Апскейленное латентное представление с пространственными размерами, увеличенными вдвое по сравнению с входными. | \ No newline at end of file +| `LATENT` | LATENT | Апскейленное латентное представление с пространственными размерами, увеличенными вдвое по сравнению с входными. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/tr.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/tr.md index 2ff4fc088..1dab7f99a 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/tr.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/tr.md @@ -14,4 +14,4 @@ LTXVLatentUpsampler düğümü, bir video gizli (latent) temsilinin uzamsal çö | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Ölçeği büyütülmüş gizli temsil; uzamsal boyutları girişe kıyasla iki katına çıkarılmıştır. | \ No newline at end of file +| `LATENT` | LATENT | Ölçeği büyütülmüş gizli temsil; uzamsal boyutları girişe kıyasla iki katına çıkarılmıştır. | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh-TW.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh-TW.md index 941750324..09607a471 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 放大後的潛在表徵,其空間維度相較於輸入擴大了兩倍。 | \ No newline at end of file +| `LATENT` | LATENT | 放大後的潛在表徵,其空間維度相較於輸入擴大了兩倍。 | diff --git a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh.md b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh.md index 02f686190..62ac25131 100644 --- a/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh.md +++ b/comfyui_embedded_docs/docs/LTXVLatentUpsampler/zh.md @@ -16,4 +16,4 @@ LTXVLatentUpsampler 节点将视频潜在表示的空间分辨率提升两倍。 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 放大后的潜在表示,其空间维度相比输入扩大了一倍。 | \ No newline at end of file +| `LATENT` | LATENT | 放大后的潜在表示,其空间维度相比输入扩大了一倍。 | diff --git a/comfyui_embedded_docs/docs/LTXVPreprocess/ar.md b/comfyui_embedded_docs/docs/LTXVPreprocess/ar.md index 36b60c411..7e386d068 100644 --- a/comfyui_embedded_docs/docs/LTXVPreprocess/ar.md +++ b/comfyui_embedded_docs/docs/LTXVPreprocess/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |---------------|---------------|--------------------------------------------| -| `output_image` | IMAGE | الصورة المُخرجة المُعالجة بعد تطبيق الضغط | \ No newline at end of file +| `output_image` | IMAGE | الصورة المُخرجة المُعالجة بعد تطبيق الضغط | diff --git a/comfyui_embedded_docs/docs/LTXVPreprocess/pt-BR.md b/comfyui_embedded_docs/docs/LTXVPreprocess/pt-BR.md index c54204697..6986202b9 100644 --- a/comfyui_embedded_docs/docs/LTXVPreprocess/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVPreprocess/pt-BR.md @@ -13,4 +13,4 @@ O nó LTXVPreprocess aplica um pré-processamento de compressão a imagens. Ele | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output_image` | IMAGE | A imagem de saída processada com a compressão aplicada | \ No newline at end of file +| `output_image` | IMAGE | A imagem de saída processada com a compressão aplicada | diff --git a/comfyui_embedded_docs/docs/LTXVPreprocess/tr.md b/comfyui_embedded_docs/docs/LTXVPreprocess/tr.md index 84a006efb..e403e7be9 100644 --- a/comfyui_embedded_docs/docs/LTXVPreprocess/tr.md +++ b/comfyui_embedded_docs/docs/LTXVPreprocess/tr.md @@ -13,4 +13,4 @@ LTXVPreprocess düğümü, görüntülere sıkıştırma ön işleme uygular. Gi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output_image` | IMAGE | Uygulanan sıkıştırma ile işlenmiş çıktı görüntüsü | \ No newline at end of file +| `output_image` | IMAGE | Uygulanan sıkıştırma ile işlenmiş çıktı görüntüsü | diff --git a/comfyui_embedded_docs/docs/LTXVPreprocess/zh-TW.md b/comfyui_embedded_docs/docs/LTXVPreprocess/zh-TW.md index 77dbe8e3d..d392dac68 100644 --- a/comfyui_embedded_docs/docs/LTXVPreprocess/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVPreprocess/zh-TW.md @@ -13,4 +13,4 @@ LTXVPreprocess 節點對影像進行壓縮預處理。它接收輸入影像並 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output_image` | IMAGE | 經過壓縮處理後的輸出影像 | \ No newline at end of file +| `output_image` | IMAGE | 經過壓縮處理後的輸出影像 | diff --git a/comfyui_embedded_docs/docs/LTXVScheduler/ar.md b/comfyui_embedded_docs/docs/LTXVScheduler/ar.md index 5cb942bcf..3dc743ff3 100644 --- a/comfyui_embedded_docs/docs/LTXVScheduler/ar.md +++ b/comfyui_embedded_docs/docs/LTXVScheduler/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | قيم سيجما المُولدة لعملية أخذ العينات | \ No newline at end of file +| `sigmas` | SIGMAS | قيم سيجما المُولدة لعملية أخذ العينات | diff --git a/comfyui_embedded_docs/docs/LTXVScheduler/pt-BR.md b/comfyui_embedded_docs/docs/LTXVScheduler/pt-BR.md index 6acb7b0c7..58138d35d 100644 --- a/comfyui_embedded_docs/docs/LTXVScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVScheduler/pt-BR.md @@ -19,4 +19,4 @@ O nó LTXVScheduler gera valores sigma para processos de amostragem personalizad | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Valores sigma gerados para o processo de amostragem | \ No newline at end of file +| `sigmas` | SIGMAS | Valores sigma gerados para o processo de amostragem | diff --git a/comfyui_embedded_docs/docs/LTXVScheduler/tr.md b/comfyui_embedded_docs/docs/LTXVScheduler/tr.md index 8a2cdb3df..42e3cb27d 100644 --- a/comfyui_embedded_docs/docs/LTXVScheduler/tr.md +++ b/comfyui_embedded_docs/docs/LTXVScheduler/tr.md @@ -19,4 +19,4 @@ LTXVScheduler düğümü, özel örnekleme işlemleri için sigma değerleri ür | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Örnekleme işlemi için oluşturulan sigma değerleri | \ No newline at end of file +| `sigmas` | SIGMAS | Örnekleme işlemi için oluşturulan sigma değerleri | diff --git a/comfyui_embedded_docs/docs/LTXVScheduler/zh-TW.md b/comfyui_embedded_docs/docs/LTXVScheduler/zh-TW.md index 34ed9ee0d..a134295c5 100644 --- a/comfyui_embedded_docs/docs/LTXVScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVScheduler/zh-TW.md @@ -19,4 +19,4 @@ LTXVScheduler 節點為自定義採樣過程生成 sigma 值。它根據輸入 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 為採樣過程生成的 sigma 值 | \ No newline at end of file +| `sigmas` | SIGMAS | 為採樣過程生成的 sigma 值 | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ar.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ar.md index cac7bbf47..47c7c7b6a 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ar.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `video_latent` | LATENT | التمثيل الكامن الذي يحتوي على بيانات الفيديو المفصولة. | -| `audio_latent` | LATENT | التمثيل الكامن الذي يحتوي على بيانات الصوت المفصولة. | \ No newline at end of file +| `audio_latent` | LATENT | التمثيل الكامن الذي يحتوي على بيانات الصوت المفصولة. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/en.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/en.md index 4e18f7168..2609933ab 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/en.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/en.md @@ -15,4 +15,4 @@ The LTXVSeparateAVLatent node takes a combined audio-visual latent representatio | Output Name | Data Type | Description | |-------------|-----------|-------------| | `video_latent` | LATENT | The latent representation containing the separated video data. | -| `audio_latent` | LATENT | The latent representation containing the separated audio data. | \ No newline at end of file +| `audio_latent` | LATENT | The latent representation containing the separated audio data. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/es.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/es.md index 53bdb1ce8..edd32fa63 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/es.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/es.md @@ -15,4 +15,4 @@ El nodo LTXVSeparateAVLatent toma una representación latente audiovisual combin | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `video_latent` | LATENT | La representación latente que contiene los datos de video separados. | -| `audio_latent` | LATENT | La representación latente que contiene los datos de audio separados. | \ No newline at end of file +| `audio_latent` | LATENT | La representación latente que contiene los datos de audio separados. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/fr.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/fr.md index 0634bd7fc..eb7464f4f 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/fr.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/fr.md @@ -13,4 +13,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `video_latent` | LATENT | La représentation latente contenant les données vidéo séparées. | -| `audio_latent` | LATENT | La représentation latente contenant les données audio séparées. | \ No newline at end of file +| `audio_latent` | LATENT | La représentation latente contenant les données audio séparées. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ja.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ja.md index d8a9002b6..0575d3647 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ja.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ja.md @@ -15,4 +15,4 @@ LTXVSeparateAVLatentノードは、結合された視聴覚潜在表現を受け | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `video_latent` | LATENT | 分離されたビデオデータを含む潜在表現。 | -| `audio_latent` | LATENT | 分離されたオーディオデータを含む潜在表現。 | \ No newline at end of file +| `audio_latent` | LATENT | 分離されたオーディオデータを含む潜在表現。 | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ko.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ko.md index 3c314c358..3225286f4 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ko.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `video_latent` | LATENT | 분리된 비디오 데이터를 포함하는 잠재 표현입니다. | -| `audio_latent` | LATENT | 분리된 오디오 데이터를 포함하는 잠재 표현입니다. | \ No newline at end of file +| `audio_latent` | LATENT | 분리된 오디오 데이터를 포함하는 잠재 표현입니다. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/pt-BR.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/pt-BR.md index 71cdfa409..be845a257 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/pt-BR.md @@ -15,4 +15,4 @@ O nó LTXVSeparateAVLatent recebe uma representação latente audiovisual combin | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `video_latent` | LATENT | A representação latente contendo os dados de vídeo separados. | -| `audio_latent` | LATENT | A representação latente contendo os dados de áudio separados. | \ No newline at end of file +| `audio_latent` | LATENT | A representação latente contendo os dados de áudio separados. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ru.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ru.md index 325804c0b..7d09e3643 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ru.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `video_latent` | LATENT | Латентное представление, содержащее разделённые данные видео. | -| `audio_latent` | LATENT | Латентное представление, содержащее разделённые данные аудио. | \ No newline at end of file +| `audio_latent` | LATENT | Латентное представление, содержащее разделённые данные аудио. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/tr.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/tr.md index 12f31a238..aa7c68f8e 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/tr.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/tr.md @@ -15,4 +15,4 @@ LTXVSeparateAVLatent düğümü, birleşik bir görsel-işitsel gizli temsili al | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `video_latent` | LATENT | Ayrıştırılmış video verilerini içeren gizli temsil. | -| `audio_latent` | LATENT | Ayrıştırılmış ses verilerini içeren gizli temsil. | \ No newline at end of file +| `audio_latent` | LATENT | Ayrıştırılmış ses verilerini içeren gizli temsil. | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh-TW.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh-TW.md index fbd227a86..0425ef16b 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh-TW.md @@ -15,4 +15,4 @@ LTXVSeparateAVLatent 節點接收一個結合的視聽潛在表示,並將其 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `video_latent` | LATENT | 包含已分離視訊資料的潛在表示。 | -| `audio_latent` | LATENT | 包含已分離音訊資料的潛在表示。 | \ No newline at end of file +| `audio_latent` | LATENT | 包含已分離音訊資料的潛在表示。 | diff --git a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh.md b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh.md index 26bbf645c..06f24a821 100644 --- a/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh.md +++ b/comfyui_embedded_docs/docs/LTXVSeparateAVLatent/zh.md @@ -15,4 +15,4 @@ LTXVSeparateAVLatent 节点接收一个组合的视听潜在表示,并将其 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `video_latent` | LATENT | 包含已分离视频数据的潜在表示。 | -| `audio_latent` | LATENT | 包含已分离音频数据的潜在表示。 | \ No newline at end of file +| `audio_latent` | LATENT | 包含已分离音频数据的潜在表示。 | diff --git a/comfyui_embedded_docs/docs/LaplaceScheduler/ar.md b/comfyui_embedded_docs/docs/LaplaceScheduler/ar.md index 270dfe3ef..700c1cdab 100644 --- a/comfyui_embedded_docs/docs/LaplaceScheduler/ar.md +++ b/comfyui_embedded_docs/docs/LaplaceScheduler/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | سلسلة من قيم سيجما تتبع جدول توزيع لابلاس | \ No newline at end of file +| `SIGMAS` | SIGMAS | سلسلة من قيم سيجما تتبع جدول توزيع لابلاس | diff --git a/comfyui_embedded_docs/docs/LaplaceScheduler/pt-BR.md b/comfyui_embedded_docs/docs/LaplaceScheduler/pt-BR.md index 775407796..8feeeefc9 100644 --- a/comfyui_embedded_docs/docs/LaplaceScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/LaplaceScheduler/pt-BR.md @@ -16,4 +16,4 @@ O nó LaplaceScheduler gera uma sequência de valores sigma seguindo uma distrib | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | Uma sequência de valores sigma seguindo um cronograma de distribuição de Laplace | \ No newline at end of file +| `SIGMAS` | SIGMAS | Uma sequência de valores sigma seguindo um cronograma de distribuição de Laplace | diff --git a/comfyui_embedded_docs/docs/LaplaceScheduler/tr.md b/comfyui_embedded_docs/docs/LaplaceScheduler/tr.md index 0be35d7b0..fc87b86e9 100644 --- a/comfyui_embedded_docs/docs/LaplaceScheduler/tr.md +++ b/comfyui_embedded_docs/docs/LaplaceScheduler/tr.md @@ -16,4 +16,4 @@ LaplaceScheduler düğümü, difüzyon örneklemesi için Laplace dağılımın | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | Laplace dağılım programını takip eden bir sigma değerleri dizisi | \ No newline at end of file +| `SIGMAS` | SIGMAS | Laplace dağılım programını takip eden bir sigma değerleri dizisi | diff --git a/comfyui_embedded_docs/docs/LaplaceScheduler/zh-TW.md b/comfyui_embedded_docs/docs/LaplaceScheduler/zh-TW.md index 55f4873a6..e482d760d 100644 --- a/comfyui_embedded_docs/docs/LaplaceScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/LaplaceScheduler/zh-TW.md @@ -16,4 +16,4 @@ LaplaceScheduler 節點根據拉普拉斯分佈生成一系列 sigma 值,用 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `SIGMAS` | SIGMAS | 遵循拉普拉斯分佈排程的 sigma 值序列 | \ No newline at end of file +| `SIGMAS` | SIGMAS | 遵循拉普拉斯分佈排程的 sigma 值序列 | diff --git a/comfyui_embedded_docs/docs/LatentAdd/ar.md b/comfyui_embedded_docs/docs/LatentAdd/ar.md index d1498e30b..d6dd4bc3e 100644 --- a/comfyui_embedded_docs/docs/LatentAdd/ar.md +++ b/comfyui_embedded_docs/docs/LatentAdd/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | نتيجة عملية الجمع عنصر بعنصر لمجموعتي العينات الكامنة، تمثل مجموعة جديدة من العينات الكامنة تجمع بين ميزات كلا المدخلين. | \ No newline at end of file +| `latent` | `LATENT` | نتيجة عملية الجمع عنصر بعنصر لمجموعتي العينات الكامنة، تمثل مجموعة جديدة من العينات الكامنة تجمع بين ميزات كلا المدخلين. | diff --git a/comfyui_embedded_docs/docs/LatentAdd/pt-BR.md b/comfyui_embedded_docs/docs/LatentAdd/pt-BR.md index d00b64d1d..119de8069 100644 --- a/comfyui_embedded_docs/docs/LatentAdd/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentAdd/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentAdd é projetado para a adição de duas representações latentes. | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | O resultado da adição elemento por elemento das duas amostras latentes, representando um novo conjunto de amostras latentes que combina as características de ambas as entradas. | \ No newline at end of file +| `latent` | `LATENT` | O resultado da adição elemento por elemento das duas amostras latentes, representando um novo conjunto de amostras latentes que combina as características de ambas as entradas. | diff --git a/comfyui_embedded_docs/docs/LatentAdd/tr.md b/comfyui_embedded_docs/docs/LatentAdd/tr.md index 16519eb72..92a4e38d6 100644 --- a/comfyui_embedded_docs/docs/LatentAdd/tr.md +++ b/comfyui_embedded_docs/docs/LatentAdd/tr.md @@ -13,4 +13,4 @@ LatentAdd düğümü, iki gizli temsilin toplanması için tasarlanmıştır. Bu | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | İki gizli örneğin eleman bazlı toplamının sonucu olan ve her iki girdinin özelliklerini birleştiren yeni bir gizli örnekler kümesini temsil eder. | \ No newline at end of file +| `latent` | `LATENT` | İki gizli örneğin eleman bazlı toplamının sonucu olan ve her iki girdinin özelliklerini birleştiren yeni bir gizli örnekler kümesini temsil eder. | diff --git a/comfyui_embedded_docs/docs/LatentAdd/zh-TW.md b/comfyui_embedded_docs/docs/LatentAdd/zh-TW.md index e55d921cf..23ce245bf 100644 --- a/comfyui_embedded_docs/docs/LatentAdd/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentAdd/zh-TW.md @@ -13,4 +13,4 @@ LatentAdd 節點專為兩個潛在表徵的加法運算而設計。它透過執 | 參數名稱 | 資料類型 | 描述 | |------------|-------------|------| -| `latent` | `LATENT` | 兩個潛在樣本逐元素相加的結果,代表一個結合了兩個輸入特徵的新潛在樣本集合。 | \ No newline at end of file +| `latent` | `LATENT` | 兩個潛在樣本逐元素相加的結果,代表一個結合了兩個輸入特徵的新潛在樣本集合。 | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperation/ar.md b/comfyui_embedded_docs/docs/LatentApplyOperation/ar.md index 17db7cfa9..32643eb56 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperation/ar.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperation/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | العينات الكامنة المعدلة بعد تطبيق العملية | \ No newline at end of file +| `output` | LATENT | العينات الكامنة المعدلة بعد تطبيق العملية | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperation/pt-BR.md b/comfyui_embedded_docs/docs/LatentApplyOperation/pt-BR.md index 10de95059..f2f9eb12b 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperation/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperation/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentApplyOperation aplica uma operação especificada a amostras latente | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | As amostras latentes modificadas após a aplicação da operação | \ No newline at end of file +| `output` | LATENT | As amostras latentes modificadas após a aplicação da operação | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperation/tr.md b/comfyui_embedded_docs/docs/LatentApplyOperation/tr.md index 3ef7a9ebd..6aaa50347 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperation/tr.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperation/tr.md @@ -13,4 +13,4 @@ LatentApplyOperation düğümü, belirtilen bir işlemi gizli örnekler üzerine | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | İşlem uygulandıktan sonra değiştirilmiş gizli örnekler | \ No newline at end of file +| `output` | LATENT | İşlem uygulandıktan sonra değiştirilmiş gizli örnekler | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperation/zh-TW.md b/comfyui_embedded_docs/docs/LatentApplyOperation/zh-TW.md index 989c14cbb..90d1ad987 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperation/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperation/zh-TW.md @@ -13,4 +13,4 @@ LatentApplyOperation 節點對潛在樣本應用指定的操作。它接收潛 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 應用操作後修改的潛在樣本 | \ No newline at end of file +| `output` | LATENT | 應用操作後修改的潛在樣本 | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/ar.md b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/ar.md index 6ea0c2bd3..4962c26fc 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/ar.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المعدل بعد تطبيق عملية CFG على عملية أخذ العينات الخاصة به | \ No newline at end of file +| `model` | MODEL | النموذج المعدل بعد تطبيق عملية CFG على عملية أخذ العينات الخاصة به | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/pt-BR.md b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/pt-BR.md index b31db1039..ea14ee637 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentApplyOperationCFG aplica uma operação latente para modificar o pro | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a operação CFG aplicada ao seu processo de amostragem | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a operação CFG aplicada ao seu processo de amostragem | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/tr.md b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/tr.md index c04d8d107..aa3db3f74 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/tr.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/tr.md @@ -13,4 +13,4 @@ LatentApplyOperationCFG düğümü, bir modeldeki koşullandırma kılavuzluk s | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Örnekleme sürecine CFG işlemi uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Örnekleme sürecine CFG işlemi uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/zh-TW.md b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/zh-TW.md index 375ffb85d..2e0c2dba8 100644 --- a/comfyui_embedded_docs/docs/LatentApplyOperationCFG/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentApplyOperationCFG/zh-TW.md @@ -13,4 +13,4 @@ LatentApplyOperationCFG 節點透過對潛在表示應用操作來修改模型 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已在其採樣過程中應用 CFG 操作的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已在其採樣過程中應用 CFG 操作的修改後模型 | diff --git a/comfyui_embedded_docs/docs/LatentBatch/ar.md b/comfyui_embedded_docs/docs/LatentBatch/ar.md index f02fb5e18..73884f8ad 100644 --- a/comfyui_embedded_docs/docs/LatentBatch/ar.md +++ b/comfyui_embedded_docs/docs/LatentBatch/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المجموعة المدمجة من العينات الكامنة، مجتمعة الآن في دفعة واحدة للمعالجة اللاحقة. | \ No newline at end of file +| `latent` | `LATENT` | المجموعة المدمجة من العينات الكامنة، مجتمعة الآن في دفعة واحدة للمعالجة اللاحقة. | diff --git a/comfyui_embedded_docs/docs/LatentBatch/pt-BR.md b/comfyui_embedded_docs/docs/LatentBatch/pt-BR.md index 2b531db92..1cf71dec4 100644 --- a/comfyui_embedded_docs/docs/LatentBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentBatch/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentBatch foi projetado para mesclar dois conjuntos de amostras latentes | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | O conjunto mesclado de amostras latentes, agora combinado em um único lote para processamento posterior. | \ No newline at end of file +| `latent` | `LATENT` | O conjunto mesclado de amostras latentes, agora combinado em um único lote para processamento posterior. | diff --git a/comfyui_embedded_docs/docs/LatentBatch/tr.md b/comfyui_embedded_docs/docs/LatentBatch/tr.md index aa7fa106b..ddb2d99b9 100644 --- a/comfyui_embedded_docs/docs/LatentBatch/tr.md +++ b/comfyui_embedded_docs/docs/LatentBatch/tr.md @@ -13,4 +13,4 @@ LatentBatch düğümü, iki farklı gizli örnek setini tek bir toplu işlemde b | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------| -| `latent` | `LATENT` | Gizli örneklerin birleştirilmiş seti; artık daha fazla işleme için tek bir toplu işlem halinde bir araya getirilmiştir. | \ No newline at end of file +| `latent` | `LATENT` | Gizli örneklerin birleştirilmiş seti; artık daha fazla işleme için tek bir toplu işlem halinde bir araya getirilmiştir. | diff --git a/comfyui_embedded_docs/docs/LatentBatch/zh-TW.md b/comfyui_embedded_docs/docs/LatentBatch/zh-TW.md index 3ff0059ac..d004f4551 100644 --- a/comfyui_embedded_docs/docs/LatentBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentBatch/zh-TW.md @@ -13,4 +13,4 @@ LatentBatch 節點旨在將兩組潛在樣本合併為單一批次,在串接 | 參數名稱 | 資料類型 | 描述 | |------------|-------------|------| -| `latent` | `LATENT` | 合併後的潛在樣本集合,現已組合成單一批次以供後續處理。 | \ No newline at end of file +| `latent` | `LATENT` | 合併後的潛在樣本集合,現已組合成單一批次以供後續處理。 | diff --git a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/ar.md b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/ar.md index 447740cb2..c9704f6ec 100644 --- a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/ar.md +++ b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المُخرج هو نسخة معدلة من العينات الكامنة المدخلة، مع إجراء تعديلات بناءً على سلوك البذرة المحدد. إما يحافظ على فهرس المجموعة أو يعدله ليعكس سلوك البذرة المختار. | \ No newline at end of file +| `latent` | `LATENT` | المُخرج هو نسخة معدلة من العينات الكامنة المدخلة، مع إجراء تعديلات بناءً على سلوك البذرة المحدد. إما يحافظ على فهرس المجموعة أو يعدله ليعكس سلوك البذرة المختار. | diff --git a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/pt-BR.md b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/pt-BR.md index 4cbffbfff..dd6b33b2d 100644 --- a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentBatchSeedBehavior foi projetado para modificar o comportamento da se | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma versão modificada das amostras latentes de entrada, com ajustes feitos com base no comportamento de semente especificado. Ela mantém ou altera o índice do lote para refletir o comportamento de semente escolhido. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma versão modificada das amostras latentes de entrada, com ajustes feitos com base no comportamento de semente especificado. Ela mantém ou altera o índice do lote para refletir o comportamento de semente escolhido. | diff --git a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/tr.md b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/tr.md index f008d8c36..c24652f35 100644 --- a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/tr.md +++ b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/tr.md @@ -13,4 +13,4 @@ LatentBatchSeedBehavior düğümü, bir grup gizli örneğin tohum davranışın | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli örneklerin, belirtilen tohum davranışına dayalı olarak yapılan ayarlamalarla değiştirilmiş bir versiyonudur. Seçilen tohum davranışını yansıtmak için grup indeksini ya korur ya da değiştirir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli örneklerin, belirtilen tohum davranışına dayalı olarak yapılan ayarlamalarla değiştirilmiş bir versiyonudur. Seçilen tohum davranışını yansıtmak için grup indeksini ya korur ya da değiştirir. | diff --git a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/zh-TW.md b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/zh-TW.md index 0b66d8a9e..777b3de3a 100644 --- a/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentBatchSeedBehavior/zh-TW.md @@ -15,4 +15,4 @@ LatentBatchSeedBehavior 節點旨在修改潛在樣本批次的種子行為。 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出是輸入潛在樣本的修改版本,根據指定的種子行為進行了調整。它會維持或改變批次索引以反映所選的種子行為。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是輸入潛在樣本的修改版本,根據指定的種子行為進行了調整。它會維持或改變批次索引以反映所選的種子行為。 | diff --git a/comfyui_embedded_docs/docs/LatentBlend/ar.md b/comfyui_embedded_docs/docs/LatentBlend/ar.md index 7915cb6cb..6c9202381 100644 --- a/comfyui_embedded_docs/docs/LatentBlend/ar.md +++ b/comfyui_embedded_docs/docs/LatentBlend/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `latent` | LATENT | العينة الكامنة الممزوجة التي تجمع بين العينتين المدخليتين | \ No newline at end of file +| `latent` | LATENT | العينة الكامنة الممزوجة التي تجمع بين العينتين المدخليتين | diff --git a/comfyui_embedded_docs/docs/LatentBlend/pt-BR.md b/comfyui_embedded_docs/docs/LatentBlend/pt-BR.md index 3031105a5..350b14b97 100644 --- a/comfyui_embedded_docs/docs/LatentBlend/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentBlend/pt-BR.md @@ -16,4 +16,4 @@ O nó LatentBlend combina duas amostras latentes mesclando-as usando um fator de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `latent` | LATENT | A amostra latente mesclada que combina ambas as amostras de entrada | \ No newline at end of file +| `latent` | LATENT | A amostra latente mesclada que combina ambas as amostras de entrada | diff --git a/comfyui_embedded_docs/docs/LatentBlend/tr.md b/comfyui_embedded_docs/docs/LatentBlend/tr.md index b57ba3370..b61475ca9 100644 --- a/comfyui_embedded_docs/docs/LatentBlend/tr.md +++ b/comfyui_embedded_docs/docs/LatentBlend/tr.md @@ -16,4 +16,4 @@ LatentBlend düğümü, iki latent örneğini belirtilen bir karıştırma fakt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `latent` | LATENT | Her iki girdi örneğinin birleştirilmiş hali olan latent örnek | \ No newline at end of file +| `latent` | LATENT | Her iki girdi örneğinin birleştirilmiş hali olan latent örnek | diff --git a/comfyui_embedded_docs/docs/LatentBlend/zh-TW.md b/comfyui_embedded_docs/docs/LatentBlend/zh-TW.md index 20f4ace6f..eda0a24d2 100644 --- a/comfyui_embedded_docs/docs/LatentBlend/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentBlend/zh-TW.md @@ -16,4 +16,4 @@ LatentBlend 節點透過指定的混合因子將兩個潛在樣本進行混合 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 混合兩個輸入樣本後的潛在樣本 | \ No newline at end of file +| `latent` | LATENT | 混合兩個輸入樣本後的潛在樣本 | diff --git a/comfyui_embedded_docs/docs/LatentComposite/ar.md b/comfyui_embedded_docs/docs/LatentComposite/ar.md index 811194f35..22002e30b 100644 --- a/comfyui_embedded_docs/docs/LatentComposite/ar.md +++ b/comfyui_embedded_docs/docs/LatentComposite/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو تمثيل كامن مركب، يدمج ميزات كل من 'samples_to' و 'samples_from' بناءً على الإحداثيات المحددة وخيار تغيير الحجم. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو تمثيل كامن مركب، يدمج ميزات كل من 'samples_to' و 'samples_from' بناءً على الإحداثيات المحددة وخيار تغيير الحجم. | diff --git a/comfyui_embedded_docs/docs/LatentComposite/pt-BR.md b/comfyui_embedded_docs/docs/LatentComposite/pt-BR.md index 9585aadca..61b8d4a6d 100644 --- a/comfyui_embedded_docs/docs/LatentComposite/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentComposite/pt-BR.md @@ -16,4 +16,4 @@ O nó LatentComposite é projetado para mesclar ou fundir duas representações | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma representação latente composta, mesclando as características das latentes 'samples_to' e 'samples_from' com base nas coordenadas e na opção de redimensionamento especificadas. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma representação latente composta, mesclando as características das latentes 'samples_to' e 'samples_from' com base nas coordenadas e na opção de redimensionamento especificadas. | diff --git a/comfyui_embedded_docs/docs/LatentComposite/tr.md b/comfyui_embedded_docs/docs/LatentComposite/tr.md index b49197a33..d4a339eb7 100644 --- a/comfyui_embedded_docs/docs/LatentComposite/tr.md +++ b/comfyui_embedded_docs/docs/LatentComposite/tr.md @@ -16,4 +16,4 @@ LatentComposite düğümü, iki gizli temsili birleştirmek veya tek bir çıkt | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, belirtilen koordinatlara ve yeniden boyutlandırma seçeneğine dayanarak hem 'samples_to' hem de 'samples_from' gizli temsillerinin özelliklerini harmanlayan bir kompozit gizli temsildir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, belirtilen koordinatlara ve yeniden boyutlandırma seçeneğine dayanarak hem 'samples_to' hem de 'samples_from' gizli temsillerinin özelliklerini harmanlayan bir kompozit gizli temsildir. | diff --git a/comfyui_embedded_docs/docs/LatentComposite/zh-TW.md b/comfyui_embedded_docs/docs/LatentComposite/zh-TW.md index d4d67fd23..aa66fa4a6 100644 --- a/comfyui_embedded_docs/docs/LatentComposite/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentComposite/zh-TW.md @@ -16,4 +16,4 @@ LatentComposite 節點旨在將兩個潛在表徵混合或合併為單一輸出 | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `latent` | `LATENT` | 輸出為複合潛在表徵,根據指定的座標和調整大小選項,混合了 'samples_to' 和 'samples_from' 潛在表徵的特徵。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出為複合潛在表徵,根據指定的座標和調整大小選項,混合了 'samples_to' 和 'samples_from' 潛在表徵的特徵。 | diff --git a/comfyui_embedded_docs/docs/LatentCompositeMasked/ar.md b/comfyui_embedded_docs/docs/LatentCompositeMasked/ar.md index 4dba2c77d..0dd2263db 100644 --- a/comfyui_embedded_docs/docs/LatentCompositeMasked/ar.md +++ b/comfyui_embedded_docs/docs/LatentCompositeMasked/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `latent` | `LATENT` | التمثيل الكامن الناتج بعد دمج المصدر على الوجهة، مع إمكانية استخدام قناع للدمج الانتقائي. | \ No newline at end of file +| `latent` | `LATENT` | التمثيل الكامن الناتج بعد دمج المصدر على الوجهة، مع إمكانية استخدام قناع للدمج الانتقائي. | diff --git a/comfyui_embedded_docs/docs/LatentCompositeMasked/pt-BR.md b/comfyui_embedded_docs/docs/LatentCompositeMasked/pt-BR.md index f57e6acf4..3b9dd4dc8 100644 --- a/comfyui_embedded_docs/docs/LatentCompositeMasked/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentCompositeMasked/pt-BR.md @@ -17,4 +17,4 @@ O nó LatentCompositeMasked é projetado para mesclar duas representações late | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A representação latente resultante após compor a origem sobre o destino, potencialmente usando uma máscara para mesclagem seletiva. | \ No newline at end of file +| `latent` | `LATENT` | A representação latente resultante após compor a origem sobre o destino, potencialmente usando uma máscara para mesclagem seletiva. | diff --git a/comfyui_embedded_docs/docs/LatentCompositeMasked/tr.md b/comfyui_embedded_docs/docs/LatentCompositeMasked/tr.md index 033ac0bee..9335c0b5f 100644 --- a/comfyui_embedded_docs/docs/LatentCompositeMasked/tr.md +++ b/comfyui_embedded_docs/docs/LatentCompositeMasked/tr.md @@ -17,4 +17,4 @@ LatentCompositeMasked düğümü, iki gizli temsili belirtilen koordinatlarda bi | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Kaynağı hedef üzerine, seçici birleştirme için potansiyel olarak bir maske kullanarak birleştirdikten sonra ortaya çıkan gizli temsil. | \ No newline at end of file +| `latent` | `LATENT` | Kaynağı hedef üzerine, seçici birleştirme için potansiyel olarak bir maske kullanarak birleştirdikten sonra ortaya çıkan gizli temsil. | diff --git a/comfyui_embedded_docs/docs/LatentCompositeMasked/zh-TW.md b/comfyui_embedded_docs/docs/LatentCompositeMasked/zh-TW.md index cd186ea13..e3c4af38c 100644 --- a/comfyui_embedded_docs/docs/LatentCompositeMasked/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentCompositeMasked/zh-TW.md @@ -17,4 +17,4 @@ LatentCompositeMasked 節點專為將兩個潛在表徵在指定座標位置進 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 將來源潛在表徵合成到目標後產生的結果潛在表徵,可能使用遮罩進行選擇性混合。 | \ No newline at end of file +| `latent` | `LATENT` | 將來源潛在表徵合成到目標後產生的結果潛在表徵,可能使用遮罩進行選擇性混合。 | diff --git a/comfyui_embedded_docs/docs/LatentConcat/ar.md b/comfyui_embedded_docs/docs/LatentConcat/ar.md index 49e8eeaa1..3e3ce06ec 100644 --- a/comfyui_embedded_docs/docs/LatentConcat/ar.md +++ b/comfyui_embedded_docs/docs/LatentConcat/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | العينات الكامنة المربطة الناتجة عن دمج العينتين المدخلة على البعد المحدد | \ No newline at end of file +| `output` | LATENT | العينات الكامنة المربطة الناتجة عن دمج العينتين المدخلة على البعد المحدد | diff --git a/comfyui_embedded_docs/docs/LatentConcat/pt-BR.md b/comfyui_embedded_docs/docs/LatentConcat/pt-BR.md index f87972418..1826bf617 100644 --- a/comfyui_embedded_docs/docs/LatentConcat/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentConcat/pt-BR.md @@ -16,4 +16,4 @@ O nó LatentConcat combina duas amostras latentes ao longo de uma dimensão espe | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | As amostras latentes concatenadas resultantes da combinação das duas amostras de entrada ao longo da dimensão especificada | \ No newline at end of file +| `output` | LATENT | As amostras latentes concatenadas resultantes da combinação das duas amostras de entrada ao longo da dimensão especificada | diff --git a/comfyui_embedded_docs/docs/LatentConcat/tr.md b/comfyui_embedded_docs/docs/LatentConcat/tr.md index 97de9ec6f..5fb75e2e7 100644 --- a/comfyui_embedded_docs/docs/LatentConcat/tr.md +++ b/comfyui_embedded_docs/docs/LatentConcat/tr.md @@ -16,4 +16,4 @@ LatentConcat düğümü, iki gizli örneği belirtilen bir boyut boyunca birleş | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | İki girdi örneğinin belirtilen boyut boyunca birleştirilmesi sonucu oluşan birleştirilmiş gizli örnekler | \ No newline at end of file +| `output` | LATENT | İki girdi örneğinin belirtilen boyut boyunca birleştirilmesi sonucu oluşan birleştirilmiş gizli örnekler | diff --git a/comfyui_embedded_docs/docs/LatentConcat/zh-TW.md b/comfyui_embedded_docs/docs/LatentConcat/zh-TW.md index 3621f929c..d576e9296 100644 --- a/comfyui_embedded_docs/docs/LatentConcat/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentConcat/zh-TW.md @@ -16,4 +16,4 @@ LatentConcat 節點會沿著指定的維度合併兩個潛空間樣本。它接 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | LATENT | 沿指定維度合併兩個輸入樣本後所產生的串接潛空間樣本 | \ No newline at end of file +| `output` | LATENT | 沿指定維度合併兩個輸入樣本後所產生的串接潛空間樣本 | diff --git a/comfyui_embedded_docs/docs/LatentCrop/ar.md b/comfyui_embedded_docs/docs/LatentCrop/ar.md index f16bae3e2..9eeb0a912 100644 --- a/comfyui_embedded_docs/docs/LatentCrop/ar.md +++ b/comfyui_embedded_docs/docs/LatentCrop/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو تمثيل كامن معدل مع تطبيق القص المحدد. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو تمثيل كامن معدل مع تطبيق القص المحدد. | diff --git a/comfyui_embedded_docs/docs/LatentCrop/pt-BR.md b/comfyui_embedded_docs/docs/LatentCrop/pt-BR.md index a9804b9b9..572aebdd1 100644 --- a/comfyui_embedded_docs/docs/LatentCrop/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentCrop/pt-BR.md @@ -16,4 +16,4 @@ O nó LatentCrop é projetado para realizar operações de recorte em representa | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma representação latente modificada com o recorte especificado aplicado. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma representação latente modificada com o recorte especificado aplicado. | diff --git a/comfyui_embedded_docs/docs/LatentCrop/tr.md b/comfyui_embedded_docs/docs/LatentCrop/tr.md index ab264c7fe..8b0ac9cf3 100644 --- a/comfyui_embedded_docs/docs/LatentCrop/tr.md +++ b/comfyui_embedded_docs/docs/LatentCrop/tr.md @@ -16,4 +16,4 @@ LatentCrop düğümü, görüntülerin gizli temsilleri üzerinde kırpma işlem | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, belirtilen kırpma işleminin uygulandığı değiştirilmiş bir gizli temsildir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, belirtilen kırpma işleminin uygulandığı değiştirilmiş bir gizli temsildir. | diff --git a/comfyui_embedded_docs/docs/LatentCrop/zh-TW.md b/comfyui_embedded_docs/docs/LatentCrop/zh-TW.md index afe89d396..9922becad 100644 --- a/comfyui_embedded_docs/docs/LatentCrop/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentCrop/zh-TW.md @@ -16,4 +16,4 @@ LatentCrop 節點專門用於對圖像的潛在表示進行裁剪操作。它允 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出為經過指定裁剪處理後的修改版潛在表示。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出為經過指定裁剪處理後的修改版潛在表示。 | diff --git a/comfyui_embedded_docs/docs/LatentCut/ar.md b/comfyui_embedded_docs/docs/LatentCut/ar.md index 71202989d..1004cf2b8 100644 --- a/comfyui_embedded_docs/docs/LatentCut/ar.md +++ b/comfyui_embedded_docs/docs/LatentCut/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | الجزء المستخرج من العينات الكامنة | \ No newline at end of file +| `output` | LATENT | الجزء المستخرج من العينات الكامنة | diff --git a/comfyui_embedded_docs/docs/LatentCut/pt-BR.md b/comfyui_embedded_docs/docs/LatentCut/pt-BR.md index 96ec3c52c..27db38758 100644 --- a/comfyui_embedded_docs/docs/LatentCut/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentCut/pt-BR.md @@ -15,4 +15,4 @@ O nó LatentCut extrai uma seção específica de amostras latentes ao longo de | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | A porção extraída das amostras latentes | \ No newline at end of file +| `output` | LATENT | A porção extraída das amostras latentes | diff --git a/comfyui_embedded_docs/docs/LatentCut/tr.md b/comfyui_embedded_docs/docs/LatentCut/tr.md index 7e75a5ea9..bf5604854 100644 --- a/comfyui_embedded_docs/docs/LatentCut/tr.md +++ b/comfyui_embedded_docs/docs/LatentCut/tr.md @@ -15,4 +15,4 @@ LatentCut düğümü, gizli örneklerden belirli bir boyut boyunca bir bölüm | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | Gizli örneklerden çıkarılan bölüm | \ No newline at end of file +| `output` | LATENT | Gizli örneklerden çıkarılan bölüm | diff --git a/comfyui_embedded_docs/docs/LatentCut/zh-TW.md b/comfyui_embedded_docs/docs/LatentCut/zh-TW.md index 3ab300f35..ea2ba1d7d 100644 --- a/comfyui_embedded_docs/docs/LatentCut/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentCut/zh-TW.md @@ -15,4 +15,4 @@ LatentCut 節點沿著選定的維度從潛在樣本中提取特定區段。它 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | LATENT | 提取的潛在樣本部分 | \ No newline at end of file +| `output` | LATENT | 提取的潛在樣本部分 | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/ar.md b/comfyui_embedded_docs/docs/LatentCutToBatch/ar.md index b1fc8c040..04e4542b9 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/ar.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `samples` | LATENT | دفعة العينات الكامنة الناتجة، والتي تحتوي على العينات المقسمة والمجمعة. | \ No newline at end of file +| `samples` | LATENT | دفعة العينات الكامنة الناتجة، والتي تحتوي على العينات المقسمة والمجمعة. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/en.md b/comfyui_embedded_docs/docs/LatentCutToBatch/en.md index daaf8bcb5..6116f5c6d 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/en.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/en.md @@ -14,4 +14,4 @@ The LatentCutToBatch node takes a latent representation and splits it along a sp | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `samples` | LATENT | The resulting latent batch, containing the sliced and stacked samples. | \ No newline at end of file +| `samples` | LATENT | The resulting latent batch, containing the sliced and stacked samples. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/es.md b/comfyui_embedded_docs/docs/LatentCutToBatch/es.md index 118cade61..96e67f34b 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/es.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/es.md @@ -14,4 +14,4 @@ El nodo LatentCutToBatch toma una representación latente y la divide a lo largo | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `samples` | LATENT | El lote latente resultante, que contiene las muestras segmentadas y apiladas. | \ No newline at end of file +| `samples` | LATENT | El lote latente resultante, que contiene las muestras segmentadas y apiladas. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/fr.md b/comfyui_embedded_docs/docs/LatentCutToBatch/fr.md index 71b569eb8..d743573b4 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/fr.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/fr.md @@ -14,4 +14,4 @@ Le nœud LatentCutToBatch prend une représentation latente et la découpe selon | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `samples` | LATENT | Le lot latent résultant, contenant les échantillons découpés et empilés. | \ No newline at end of file +| `samples` | LATENT | Le lot latent résultant, contenant les échantillons découpés et empilés. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/ja.md b/comfyui_embedded_docs/docs/LatentCutToBatch/ja.md index 7b0301d2c..4289feeb3 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/ja.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/ja.md @@ -14,4 +14,4 @@ LatentCutToBatchノードは、潜在表現を受け取り、指定された次 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `samples` | LATENT | スライスされ積み上げられたサンプルを含む、結果の潜在バッチです。 | \ No newline at end of file +| `samples` | LATENT | スライスされ積み上げられたサンプルを含む、結果の潜在バッチです。 | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/ko.md b/comfyui_embedded_docs/docs/LatentCutToBatch/ko.md index a3dada828..41bc89401 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/ko.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/ko.md @@ -14,4 +14,4 @@ LatentCutToBatch 노드는 잠재 표현(latent representation)을 가져와 지 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `samples` | LATENT | 조각내어 쌓은 샘플들을 포함하는 결과 잠재 배치입니다. | \ No newline at end of file +| `samples` | LATENT | 조각내어 쌓은 샘플들을 포함하는 결과 잠재 배치입니다. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/pt-BR.md b/comfyui_embedded_docs/docs/LatentCutToBatch/pt-BR.md index dd503e9d1..12a1091c9 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/pt-BR.md @@ -14,4 +14,4 @@ O nó LatentCutToBatch recebe uma representação latente e a divide ao longo de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `samples` | LATENT | O lote latente resultante, contendo as amostras fatiadas e empilhadas. | \ No newline at end of file +| `samples` | LATENT | O lote latente resultante, contendo as amostras fatiadas e empilhadas. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/ru.md b/comfyui_embedded_docs/docs/LatentCutToBatch/ru.md index b32ec08a5..0b16452a8 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/ru.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/ru.md @@ -14,4 +14,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `samples` | LATENT | Результирующий латентный пакет, содержащий разрезанные и объединённые образцы. | \ No newline at end of file +| `samples` | LATENT | Результирующий латентный пакет, содержащий разрезанные и объединённые образцы. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/tr.md b/comfyui_embedded_docs/docs/LatentCutToBatch/tr.md index dc45ce697..a031821d2 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/tr.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/tr.md @@ -14,4 +14,4 @@ LatentCutToBatch düğümü, bir gizli temsili alır ve belirtilen bir boyut boy | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `samples` | LATENT | Dilimlenmiş ve istiflenmiş örnekleri içeren, ortaya çıkan gizli toplu iş. | \ No newline at end of file +| `samples` | LATENT | Dilimlenmiş ve istiflenmiş örnekleri içeren, ortaya çıkan gizli toplu iş. | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/zh-TW.md b/comfyui_embedded_docs/docs/LatentCutToBatch/zh-TW.md index a75689099..41616612c 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 產生的潛在批次,包含已切片和堆疊的樣本。 | \ No newline at end of file +| `samples` | LATENT | 產生的潛在批次,包含已切片和堆疊的樣本。 | diff --git a/comfyui_embedded_docs/docs/LatentCutToBatch/zh.md b/comfyui_embedded_docs/docs/LatentCutToBatch/zh.md index f6b04d8f9..0bfd1d8a2 100644 --- a/comfyui_embedded_docs/docs/LatentCutToBatch/zh.md +++ b/comfyui_embedded_docs/docs/LatentCutToBatch/zh.md @@ -14,4 +14,4 @@ LatentCutToBatch 节点接收一个潜在表示,并沿着指定维度将其分 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `samples` | LATENT | 处理后的潜在批次,包含切片并堆叠后的样本。 | \ No newline at end of file +| `samples` | LATENT | 处理后的潜在批次,包含切片并堆叠后的样本。 | diff --git a/comfyui_embedded_docs/docs/LatentFlip/ar.md b/comfyui_embedded_docs/docs/LatentFlip/ar.md index 609f7c44e..74d4817d5 100644 --- a/comfyui_embedded_docs/docs/LatentFlip/ar.md +++ b/comfyui_embedded_docs/docs/LatentFlip/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `latent` | `LATENT` | المخرج هو نسخة معدلة من التمثيلات الكامنة المدخلة، بعد أن تم قلبها وفقًا للطريقة المحددة. يمكن أن يُحدث هذا التحويل تغييرات جديدة ضمن الفضاء الكامن. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو نسخة معدلة من التمثيلات الكامنة المدخلة، بعد أن تم قلبها وفقًا للطريقة المحددة. يمكن أن يُحدث هذا التحويل تغييرات جديدة ضمن الفضاء الكامن. | diff --git a/comfyui_embedded_docs/docs/LatentFlip/pt-BR.md b/comfyui_embedded_docs/docs/LatentFlip/pt-BR.md index eae95e446..b33b7dddd 100644 --- a/comfyui_embedded_docs/docs/LatentFlip/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentFlip/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentFlip é projetado para manipular representações latentes, inverten | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, que foram invertidas de acordo com o método especificado. Esta transformação pode introduzir novas variações dentro do espaço latente. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, que foram invertidas de acordo com o método especificado. Esta transformação pode introduzir novas variações dentro do espaço latente. | diff --git a/comfyui_embedded_docs/docs/LatentFlip/tr.md b/comfyui_embedded_docs/docs/LatentFlip/tr.md index 1dd2f5e77..7317d6c1a 100644 --- a/comfyui_embedded_docs/docs/LatentFlip/tr.md +++ b/comfyui_embedded_docs/docs/LatentFlip/tr.md @@ -13,4 +13,4 @@ LatentFlip düğümü, gizli temsilleri dikey veya yatay olarak çevirmek için | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin belirtilen yönteme göre çevrilmiş halidir. Bu dönüşüm, gizli uzay içinde yeni varyasyonlar oluşturabilir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin belirtilen yönteme göre çevrilmiş halidir. Bu dönüşüm, gizli uzay içinde yeni varyasyonlar oluşturabilir. | diff --git a/comfyui_embedded_docs/docs/LatentFlip/zh-TW.md b/comfyui_embedded_docs/docs/LatentFlip/zh-TW.md index e3c509cc1..adc7a5e2c 100644 --- a/comfyui_embedded_docs/docs/LatentFlip/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentFlip/zh-TW.md @@ -13,4 +13,4 @@ LatentFlip 節點旨在透過垂直或水平翻轉來操作潛在表徵。此操 | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `latent` | `LATENT` | 輸出是輸入潛在表徵的修改版本,已根據指定方法進行翻轉。此轉換可在潛在空間中引入新的變化。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是輸入潛在表徵的修改版本,已根據指定方法進行翻轉。此轉換可在潛在空間中引入新的變化。 | diff --git a/comfyui_embedded_docs/docs/LatentFromBatch/ar.md b/comfyui_embedded_docs/docs/LatentFromBatch/ar.md index 433a69739..5cde57cc2 100644 --- a/comfyui_embedded_docs/docs/LatentFromBatch/ar.md +++ b/comfyui_embedded_docs/docs/LatentFromBatch/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `latent` | `LATENT` | المجموعة الفرعية المستخرجة من العينات الكامنة، المتاحة الآن لمزيد من المعالجة أو التحليل. | \ No newline at end of file +| `latent` | `LATENT` | المجموعة الفرعية المستخرجة من العينات الكامنة، المتاحة الآن لمزيد من المعالجة أو التحليل. | diff --git a/comfyui_embedded_docs/docs/LatentFromBatch/pt-BR.md b/comfyui_embedded_docs/docs/LatentFromBatch/pt-BR.md index 74a891bef..fc305754d 100644 --- a/comfyui_embedded_docs/docs/LatentFromBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentFromBatch/pt-BR.md @@ -14,4 +14,4 @@ Este nó foi projetado para extrair um subconjunto específico de amostras laten | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | O subconjunto extraído de amostras latentes, agora disponível para processamento ou análise posterior. | \ No newline at end of file +| `latent` | `LATENT` | O subconjunto extraído de amostras latentes, agora disponível para processamento ou análise posterior. | diff --git a/comfyui_embedded_docs/docs/LatentFromBatch/tr.md b/comfyui_embedded_docs/docs/LatentFromBatch/tr.md index 4003c0932..77daf9063 100644 --- a/comfyui_embedded_docs/docs/LatentFromBatch/tr.md +++ b/comfyui_embedded_docs/docs/LatentFromBatch/tr.md @@ -14,4 +14,4 @@ Bu düğüm, belirli bir toplu işlemden, belirtilen toplu işlem indeksi ve uzu | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Daha fazla işleme veya analiz için artık hazır olan, çıkarılan gizli örnek alt kümesi. | \ No newline at end of file +| `latent` | `LATENT` | Daha fazla işleme veya analiz için artık hazır olan, çıkarılan gizli örnek alt kümesi. | diff --git a/comfyui_embedded_docs/docs/LatentFromBatch/zh-TW.md b/comfyui_embedded_docs/docs/LatentFromBatch/zh-TW.md index 8d3ae2ee7..c7372a3dc 100644 --- a/comfyui_embedded_docs/docs/LatentFromBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentFromBatch/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |---------|-------------|------| -| `latent` | `LATENT` | 提取出的潛在樣本子集,現可供進一步處理或分析使用。 | \ No newline at end of file +| `latent` | `LATENT` | 提取出的潛在樣本子集,現可供進一步處理或分析使用。 | diff --git a/comfyui_embedded_docs/docs/LatentInterpolate/ar.md b/comfyui_embedded_docs/docs/LatentInterpolate/ar.md index 83256a21c..671d06549 100644 --- a/comfyui_embedded_docs/docs/LatentInterpolate/ar.md +++ b/comfyui_embedded_docs/docs/LatentInterpolate/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | الناتج هو مجموعة جديدة من العينات الكامنة تمثل حالة مستوفاة بين مجموعتي الإدخال، بناءً على النسبة المحددة. | \ No newline at end of file +| `latent` | `LATENT` | الناتج هو مجموعة جديدة من العينات الكامنة تمثل حالة مستوفاة بين مجموعتي الإدخال، بناءً على النسبة المحددة. | diff --git a/comfyui_embedded_docs/docs/LatentInterpolate/pt-BR.md b/comfyui_embedded_docs/docs/LatentInterpolate/pt-BR.md index 0fba5a042..e130af294 100644 --- a/comfyui_embedded_docs/docs/LatentInterpolate/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentInterpolate/pt-BR.md @@ -14,4 +14,4 @@ O nó LatentInterpolate é projetado para realizar a interpolação entre dois c | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é um novo conjunto de amostras latentes que representa um estado interpolado entre os dois conjuntos de entrada, com base na proporção especificada. | \ No newline at end of file +| `latent` | `LATENT` | A saída é um novo conjunto de amostras latentes que representa um estado interpolado entre os dois conjuntos de entrada, com base na proporção especificada. | diff --git a/comfyui_embedded_docs/docs/LatentInterpolate/tr.md b/comfyui_embedded_docs/docs/LatentInterpolate/tr.md index 58bdc9662..f1fe8040f 100644 --- a/comfyui_embedded_docs/docs/LatentInterpolate/tr.md +++ b/comfyui_embedded_docs/docs/LatentInterpolate/tr.md @@ -14,4 +14,4 @@ LatentInterpolate düğümü, belirli bir orana dayalı olarak iki gizli örnek | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, belirtilen orana dayalı olarak iki girdi seti arasında enterpole edilmiş bir durumu temsil eden yeni bir gizli örnek setidir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, belirtilen orana dayalı olarak iki girdi seti arasında enterpole edilmiş bir durumu temsil eden yeni bir gizli örnek setidir. | diff --git a/comfyui_embedded_docs/docs/LatentInterpolate/zh-TW.md b/comfyui_embedded_docs/docs/LatentInterpolate/zh-TW.md index 4cbf1c909..93711c7a5 100644 --- a/comfyui_embedded_docs/docs/LatentInterpolate/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentInterpolate/zh-TW.md @@ -14,4 +14,4 @@ LatentInterpolate 節點旨在根據指定的比例對兩組潛在樣本進行 | 參數名稱 | 資料類型 | 描述 | |----------|-------------|------| -| `latent` | `LATENT` | 輸出為一組新的潛在樣本,代表根據指定比例在兩組輸入樣本之間進行插值後的中間狀態。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出為一組新的潛在樣本,代表根據指定比例在兩組輸入樣本之間進行插值後的中間狀態。 | diff --git a/comfyui_embedded_docs/docs/LatentMultiply/ar.md b/comfyui_embedded_docs/docs/LatentMultiply/ar.md index 25a53d387..62688e508 100644 --- a/comfyui_embedded_docs/docs/LatentMultiply/ar.md +++ b/comfyui_embedded_docs/docs/LatentMultiply/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو نسخة معدلة من العينات الكامنة المدخلة، تم قياسها بواسطة المضاعف المحدد. وهذا يسمح باستكشاف الاختلافات داخل الفضاء الكامن من خلال ضبط شدة ميزاته. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو نسخة معدلة من العينات الكامنة المدخلة، تم قياسها بواسطة المضاعف المحدد. وهذا يسمح باستكشاف الاختلافات داخل الفضاء الكامن من خلال ضبط شدة ميزاته. | diff --git a/comfyui_embedded_docs/docs/LatentMultiply/pt-BR.md b/comfyui_embedded_docs/docs/LatentMultiply/pt-BR.md index 5b8bb0d9e..c83b6c6b9 100644 --- a/comfyui_embedded_docs/docs/LatentMultiply/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentMultiply/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentMultiply é projetado para dimensionar a representação latente de | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma versão modificada das amostras latentes de entrada, dimensionadas pelo multiplicador especificado. Isso permite a exploração de variações dentro do espaço latente ajustando a intensidade de suas características. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma versão modificada das amostras latentes de entrada, dimensionadas pelo multiplicador especificado. Isso permite a exploração de variações dentro do espaço latente ajustando a intensidade de suas características. | diff --git a/comfyui_embedded_docs/docs/LatentMultiply/tr.md b/comfyui_embedded_docs/docs/LatentMultiply/tr.md index b0f3e9910..3bcf640ef 100644 --- a/comfyui_embedded_docs/docs/LatentMultiply/tr.md +++ b/comfyui_embedded_docs/docs/LatentMultiply/tr.md @@ -13,4 +13,4 @@ LatentMultiply düğümü, örneklerin gizli temsilini belirtilen bir çarpanla | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, belirtilen çarpanla ölçeklendirilmiş, girdi gizli örneklerinin değiştirilmiş bir versiyonudur. Bu, gizli uzay içindeki çeşitlemelerin, özelliklerinin yoğunluğunu ayarlayarak keşfedilmesine olanak tanır. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, belirtilen çarpanla ölçeklendirilmiş, girdi gizli örneklerinin değiştirilmiş bir versiyonudur. Bu, gizli uzay içindeki çeşitlemelerin, özelliklerinin yoğunluğunu ayarlayarak keşfedilmesine olanak tanır. | diff --git a/comfyui_embedded_docs/docs/LatentMultiply/zh-TW.md b/comfyui_embedded_docs/docs/LatentMultiply/zh-TW.md index 63d9c2e9a..0a99bc3bb 100644 --- a/comfyui_embedded_docs/docs/LatentMultiply/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentMultiply/zh-TW.md @@ -13,4 +13,4 @@ LatentMultiply 節點旨在透過指定的乘數來縮放樣本的潛在表示 | 參數名稱 | 資料類型 | 描述 | |------------|----------|------| -| `latent` | `LATENT` | 輸出是輸入潛在樣本經過指定乘數縮放後的修改版本,可透過調整特徵強度來探索潛在空間內的變異。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是輸入潛在樣本經過指定乘數縮放後的修改版本,可透過調整特徵強度來探索潛在空間內的變異。 | diff --git a/comfyui_embedded_docs/docs/LatentOperationSharpen/ar.md b/comfyui_embedded_docs/docs/LatentOperationSharpen/ar.md index 12ac4541b..2a71b379f 100644 --- a/comfyui_embedded_docs/docs/LatentOperationSharpen/ar.md +++ b/comfyui_embedded_docs/docs/LatentOperationSharpen/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | يُرجع عملية حدة يمكن تطبيقها على البيانات الكامنة | \ No newline at end of file +| `operation` | LATENT_OPERATION | يُرجع عملية حدة يمكن تطبيقها على البيانات الكامنة | diff --git a/comfyui_embedded_docs/docs/LatentOperationSharpen/pt-BR.md b/comfyui_embedded_docs/docs/LatentOperationSharpen/pt-BR.md index 539945299..cbf1fe7a7 100644 --- a/comfyui_embedded_docs/docs/LatentOperationSharpen/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentOperationSharpen/pt-BR.md @@ -14,4 +14,4 @@ O nó LatentOperationSharpen aplica um efeito de nitidez às representações la | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | Retorna uma operação de nitidez que pode ser aplicada a dados latentes | \ No newline at end of file +| `operation` | LATENT_OPERATION | Retorna uma operação de nitidez que pode ser aplicada a dados latentes | diff --git a/comfyui_embedded_docs/docs/LatentOperationSharpen/tr.md b/comfyui_embedded_docs/docs/LatentOperationSharpen/tr.md index d9ac8ef27..9ee29f24e 100644 --- a/comfyui_embedded_docs/docs/LatentOperationSharpen/tr.md +++ b/comfyui_embedded_docs/docs/LatentOperationSharpen/tr.md @@ -14,4 +14,4 @@ LatentOperationSharpen düğümü, Gauss çekirdeği kullanarak gizli temsillere | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | Gizli veriye uygulanabilecek bir keskinleştirme işlemi döndürür | \ No newline at end of file +| `operation` | LATENT_OPERATION | Gizli veriye uygulanabilecek bir keskinleştirme işlemi döndürür | diff --git a/comfyui_embedded_docs/docs/LatentOperationSharpen/zh-TW.md b/comfyui_embedded_docs/docs/LatentOperationSharpen/zh-TW.md index 415f2cb1a..93a56c7f1 100644 --- a/comfyui_embedded_docs/docs/LatentOperationSharpen/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentOperationSharpen/zh-TW.md @@ -14,4 +14,4 @@ LatentOperationSharpen 節點使用高斯核心對潛在表徵應用銳化效果 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | 返回可應用於潛在數據的銳化操作 | \ No newline at end of file +| `operation` | LATENT_OPERATION | 返回可應用於潛在數據的銳化操作 | diff --git a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/ar.md b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/ar.md index e52d06a26..f68f4683b 100644 --- a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/ar.md +++ b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | تُرجع عملية تعيين نطاق يمكن تطبيقها على المتجهات الكامنة | \ No newline at end of file +| `operation` | LATENT_OPERATION | تُرجع عملية تعيين نطاق يمكن تطبيقها على المتجهات الكامنة | diff --git a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/pt-BR.md b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/pt-BR.md index 894844e25..6c382275d 100644 --- a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/pt-BR.md @@ -12,4 +12,4 @@ O nó LatentOperationTonemapReinhard aplica o mapeamento de tons (tonemapping) R | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | Retorna uma operação de mapeamento de tons que pode ser aplicada a vetores latentes | \ No newline at end of file +| `operation` | LATENT_OPERATION | Retorna uma operação de mapeamento de tons que pode ser aplicada a vetores latentes | diff --git a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/tr.md b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/tr.md index 1b2bec8f8..aa62baef5 100644 --- a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/tr.md +++ b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/tr.md @@ -12,4 +12,4 @@ LatentOperationTonemapReinhard düğümü, gizli vektörlere Reinhard ton eşlem | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | Gizli vektörlere uygulanabilen bir ton eşleme işlemi döndürür | \ No newline at end of file +| `operation` | LATENT_OPERATION | Gizli vektörlere uygulanabilen bir ton eşleme işlemi döndürür | diff --git a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/zh-TW.md b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/zh-TW.md index d226af200..04f20e7ca 100644 --- a/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentOperationTonemapReinhard/zh-TW.md @@ -12,4 +12,4 @@ LatentOperationTonemapReinhard 節點對潛在向量應用 Reinhard 色調映射 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `operation` | LATENT_OPERATION | 返回可應用於潛在向量的色調映射操作 | \ No newline at end of file +| `operation` | LATENT_OPERATION | 返回可應用於潛在向量的色調映射操作 | diff --git a/comfyui_embedded_docs/docs/LatentRotate/ar.md b/comfyui_embedded_docs/docs/LatentRotate/ar.md index 5e5def2bc..80a0c3d4e 100644 --- a/comfyui_embedded_docs/docs/LatentRotate/ar.md +++ b/comfyui_embedded_docs/docs/LatentRotate/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو نسخة معدلة من التمثيلات الكامنة المدخلة، بعد تدويرها بالزاوية المحددة. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو نسخة معدلة من التمثيلات الكامنة المدخلة، بعد تدويرها بالزاوية المحددة. | diff --git a/comfyui_embedded_docs/docs/LatentRotate/pt-BR.md b/comfyui_embedded_docs/docs/LatentRotate/pt-BR.md index c9246dee7..e59e58f46 100644 --- a/comfyui_embedded_docs/docs/LatentRotate/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentRotate/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentRotate é projetado para rotacionar representações latentes de ima | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, rotacionadas pelo ângulo especificado. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, rotacionadas pelo ângulo especificado. | diff --git a/comfyui_embedded_docs/docs/LatentRotate/tr.md b/comfyui_embedded_docs/docs/LatentRotate/tr.md index dad8b68bf..646796615 100644 --- a/comfyui_embedded_docs/docs/LatentRotate/tr.md +++ b/comfyui_embedded_docs/docs/LatentRotate/tr.md @@ -13,4 +13,4 @@ LatentRotate düğümü, görüntülerin gizli temsillerini belirtilen açılarl | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin, belirtilen açıyla döndürülmüş halidir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin, belirtilen açıyla döndürülmüş halidir. | diff --git a/comfyui_embedded_docs/docs/LatentRotate/zh-TW.md b/comfyui_embedded_docs/docs/LatentRotate/zh-TW.md index b05656ac7..a37bc8cd4 100644 --- a/comfyui_embedded_docs/docs/LatentRotate/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentRotate/zh-TW.md @@ -13,4 +13,4 @@ LatentRotate 節點專為將圖片的潛在表徵按指定角度旋轉而設計 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出為輸入潛在表徵經過指定角度旋轉後的修改版本。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出為輸入潛在表徵經過指定角度旋轉後的修改版本。 | diff --git a/comfyui_embedded_docs/docs/LatentSubtract/ar.md b/comfyui_embedded_docs/docs/LatentSubtract/ar.md index 0b4b7b69c..8ff7ecf33 100644 --- a/comfyui_embedded_docs/docs/LatentSubtract/ar.md +++ b/comfyui_embedded_docs/docs/LatentSubtract/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | نتيجة طرح المجموعة الثانية من العينات الكامنة من المجموعة الأولى. يمكن استخدام هذا التمثيل الكامن المعدل لمهام توليدية لاحقة. | \ No newline at end of file +| `latent` | `LATENT` | نتيجة طرح المجموعة الثانية من العينات الكامنة من المجموعة الأولى. يمكن استخدام هذا التمثيل الكامن المعدل لمهام توليدية لاحقة. | diff --git a/comfyui_embedded_docs/docs/LatentSubtract/pt-BR.md b/comfyui_embedded_docs/docs/LatentSubtract/pt-BR.md index 24db6ae3b..e7c1d380e 100644 --- a/comfyui_embedded_docs/docs/LatentSubtract/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentSubtract/pt-BR.md @@ -13,4 +13,4 @@ O nó LatentSubtract é projetado para subtrair uma representação latente de o | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | O resultado da subtração do segundo conjunto de amostras latentes do primeiro. Esta representação latente modificada pode ser usada para tarefas generativas subsequentes. | \ No newline at end of file +| `latent` | `LATENT` | O resultado da subtração do segundo conjunto de amostras latentes do primeiro. Esta representação latente modificada pode ser usada para tarefas generativas subsequentes. | diff --git a/comfyui_embedded_docs/docs/LatentSubtract/tr.md b/comfyui_embedded_docs/docs/LatentSubtract/tr.md index c611c78c7..8895a3e45 100644 --- a/comfyui_embedded_docs/docs/LatentSubtract/tr.md +++ b/comfyui_embedded_docs/docs/LatentSubtract/tr.md @@ -13,4 +13,4 @@ LatentSubtract düğümü, bir gizli temsili diğerinden çıkarmak için tasarl | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | İkinci gizli örnekler kümesinin birinciden çıkarılması sonucu. Bu değiştirilmiş gizli temsil, ileri üretken görevler için kullanılabilir. | \ No newline at end of file +| `latent` | `LATENT` | İkinci gizli örnekler kümesinin birinciden çıkarılması sonucu. Bu değiştirilmiş gizli temsil, ileri üretken görevler için kullanılabilir. | diff --git a/comfyui_embedded_docs/docs/LatentSubtract/zh-TW.md b/comfyui_embedded_docs/docs/LatentSubtract/zh-TW.md index 4a5a4e6ea..3837f4d64 100644 --- a/comfyui_embedded_docs/docs/LatentSubtract/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentSubtract/zh-TW.md @@ -13,4 +13,4 @@ LatentSubtract 節點專為從一個潛在表示中減去另一個潛在表示 | 參數名稱 | 資料類型 | 描述 | |----------|-------------|------| -| `latent` | `LATENT` | 從第一組潛在樣本中減去第二組潛在樣本的結果。此修改後的潛在表示可用於後續的生成任務。 | \ No newline at end of file +| `latent` | `LATENT` | 從第一組潛在樣本中減去第二組潛在樣本的結果。此修改後的潛在表示可用於後續的生成任務。 | diff --git a/comfyui_embedded_docs/docs/LatentUpscale/ar.md b/comfyui_embedded_docs/docs/LatentUpscale/ar.md index d745d7a38..92ffc99e8 100644 --- a/comfyui_embedded_docs/docs/LatentUpscale/ar.md +++ b/comfyui_embedded_docs/docs/LatentUpscale/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | التمثيل الكامن المحسن الدقة للصورة، الجاهز لمزيد من المعالجة أو التوليد. | \ No newline at end of file +| `latent` | `LATENT` | التمثيل الكامن المحسن الدقة للصورة، الجاهز لمزيد من المعالجة أو التوليد. | diff --git a/comfyui_embedded_docs/docs/LatentUpscale/pt-BR.md b/comfyui_embedded_docs/docs/LatentUpscale/pt-BR.md index 9f0d77daa..8b7659e6a 100644 --- a/comfyui_embedded_docs/docs/LatentUpscale/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentUpscale/pt-BR.md @@ -16,4 +16,4 @@ O nó LatentUpscale é projetado para aumentar a escala de representações late | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A representação latente da imagem após o aumento de escala, pronta para processamento ou geração posterior. | \ No newline at end of file +| `latent` | `LATENT` | A representação latente da imagem após o aumento de escala, pronta para processamento ou geração posterior. | diff --git a/comfyui_embedded_docs/docs/LatentUpscale/tr.md b/comfyui_embedded_docs/docs/LatentUpscale/tr.md index 8a45df8c4..6e6592e58 100644 --- a/comfyui_embedded_docs/docs/LatentUpscale/tr.md +++ b/comfyui_embedded_docs/docs/LatentUpscale/tr.md @@ -16,4 +16,4 @@ LatentUpscale düğümü, görüntülerin gizli temsillerini (latent representat | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Daha fazla işlemeye veya oluşturmaya (generation) hazır olan, büyütülmüş gizli görüntü temsili. | \ No newline at end of file +| `latent` | `LATENT` | Daha fazla işlemeye veya oluşturmaya (generation) hazır olan, büyütülmüş gizli görüntü temsili. | diff --git a/comfyui_embedded_docs/docs/LatentUpscale/zh-TW.md b/comfyui_embedded_docs/docs/LatentUpscale/zh-TW.md index 4d0047a7d..cc2549a50 100644 --- a/comfyui_embedded_docs/docs/LatentUpscale/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentUpscale/zh-TW.md @@ -16,4 +16,4 @@ LatentUpscale 節點專為放大圖片的潛在表示而設計。它允許調整 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 經過放大的圖片潛在表示,已準備好進行後續處理或生成。 | \ No newline at end of file +| `latent` | `LATENT` | 經過放大的圖片潛在表示,已準備好進行後續處理或生成。 | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleBy/ar.md b/comfyui_embedded_docs/docs/LatentUpscaleBy/ar.md index ff08f563a..09c7c81cc 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleBy/ar.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleBy/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |--------|-----------|--------| -| `latent` | `LATENT` | التمثيل الكامن المحسن، الجاهز لمزيد من المعالجة أو مهام التوليد. يُعد هذا المخرج أساسيًا لتعزيز دقة الصور المُولدة أو للعمليات النموذجية اللاحقة. | \ No newline at end of file +| `latent` | `LATENT` | التمثيل الكامن المحسن، الجاهز لمزيد من المعالجة أو مهام التوليد. يُعد هذا المخرج أساسيًا لتعزيز دقة الصور المُولدة أو للعمليات النموذجية اللاحقة. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleBy/pt-BR.md b/comfyui_embedded_docs/docs/LatentUpscaleBy/pt-BR.md index 8c0ac6a1e..222fa9da7 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleBy/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleBy/pt-BR.md @@ -14,4 +14,4 @@ O nó LatentUpscaleBy é projetado para aumentar a escala (upscaling) de represe | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A representação latente com a escala aumentada, pronta para processamento adicional ou tarefas de geração. Esta saída é essencial para aprimorar a resolução de imagens geradas ou para operações subsequentes do modelo. | \ No newline at end of file +| `latent` | `LATENT` | A representação latente com a escala aumentada, pronta para processamento adicional ou tarefas de geração. Esta saída é essencial para aprimorar a resolução de imagens geradas ou para operações subsequentes do modelo. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleBy/tr.md b/comfyui_embedded_docs/docs/LatentUpscaleBy/tr.md index a11a673b1..92c8b5c65 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleBy/tr.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleBy/tr.md @@ -14,4 +14,4 @@ LatentUpscaleBy düğümü, görüntülerin gizli temsillerini büyütmek için | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Daha fazla işleme veya oluşturma görevleri için hazır olan büyütülmüş gizli temsil. Bu çıktı, oluşturulan görüntülerin çözünürlüğünü artırmak veya sonraki model işlemleri için gereklidir. | \ No newline at end of file +| `latent` | `LATENT` | Daha fazla işleme veya oluşturma görevleri için hazır olan büyütülmüş gizli temsil. Bu çıktı, oluşturulan görüntülerin çözünürlüğünü artırmak veya sonraki model işlemleri için gereklidir. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleBy/zh-TW.md b/comfyui_embedded_docs/docs/LatentUpscaleBy/zh-TW.md index 33bbb7d63..ff63b7f59 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleBy/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleBy/zh-TW.md @@ -14,4 +14,4 @@ LatentUpscaleBy 節點專為放大圖片的潛在表徵而設計。它允許調 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 經過放大的潛在表徵,已準備好用於進一步處理或生成任務。此輸出對於提升生成圖片的解析度或後續模型操作至關重要。 | \ No newline at end of file +| `latent` | `LATENT` | 經過放大的潛在表徵,已準備好用於進一步處理或生成任務。此輸出對於提升生成圖片的解析度或後續模型操作至關重要。 | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ar.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ar.md index 614c99059..ccd18a50b 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ar.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | نموذج زيادة الدقة الكامنة المحمّل، والمكون والجاهز للاستخدام. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | نموذج زيادة الدقة الكامنة المحمّل، والمكون والجاهز للاستخدام. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/en.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/en.md index 9214329bb..c7d893f5a 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/en.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/en.md @@ -12,4 +12,4 @@ The LatentUpscaleModelLoader node loads a specialized model designed for upscali | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | The loaded latent upscale model, configured and ready for use. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | The loaded latent upscale model, configured and ready for use. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/es.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/es.md index 7862bb447..714dc6f63 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/es.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/es.md @@ -12,4 +12,4 @@ El nodo LatentUpscaleModelLoader carga un modelo especializado diseñado para au | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | El modelo de aumento de escala latente cargado, configurado y listo para usar. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | El modelo de aumento de escala latente cargado, configurado y listo para usar. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/fr.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/fr.md index ebf42d4ab..5f5dc649e 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/fr.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/fr.md @@ -14,4 +14,4 @@ Le nœud **LatentUpscaleModelLoader** charge un modèle spécialisé conçu pour | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | Le modèle de suréchantillonnage latent chargé, configuré et prêt à l'emploi. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | Le modèle de suréchantillonnage latent chargé, configuré et prêt à l'emploi. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ja.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ja.md index 13ef51a2b..cf68e9165 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ja.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ja.md @@ -12,4 +12,4 @@ LatentUpscaleModelLoaderノードは、潜在表現のアップスケーリン | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | 読み込まれ、設定済みで使用準備が整った潜在アップスケールモデルです。 | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | 読み込まれ、設定済みで使用準備が整った潜在アップスケールモデルです。 | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ko.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ko.md index 5108949e5..47a61c10f 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ko.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ko.md @@ -12,4 +12,4 @@ LatentUpscaleModelLoader 노드는 잠재 표현(latent representation) 업스 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | 불러온 잠재 업스케일 모델로, 구성이 완료되어 사용 준비가 된 상태입니다. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | 불러온 잠재 업스케일 모델로, 구성이 완료되어 사용 준비가 된 상태입니다. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/pt-BR.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/pt-BR.md index 064214c54..ea0961030 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/pt-BR.md @@ -12,4 +12,4 @@ O nó LatentUpscaleModelLoader carrega um modelo especializado projetado para au | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | O modelo de upscale latente carregado, configurado e pronto para uso. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | O modelo de upscale latente carregado, configurado e pronto para uso. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ru.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ru.md index 1ce2ad52d..345236b6e 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ru.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | Загруженная модель для апскейла латентных представлений, настроенная и готовая к использованию. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | Загруженная модель для апскейла латентных представлений, настроенная и готовая к использованию. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/tr.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/tr.md index 78f431b15..728f1f271 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/tr.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/tr.md @@ -12,4 +12,4 @@ LatentUpscaleModelLoader düğümü, gizli (latent) temsilleri büyütmek için | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | Yüklenen, yapılandırılan ve kullanıma hazır hale getirilen gizli büyütme modeli. | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | Yüklenen, yapılandırılan ve kullanıma hazır hale getirilen gizli büyütme modeli. | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh-TW.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh-TW.md index 0d087de4d..6294b00b3 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | 已載入的潛在放大模型,已配置並準備就緒可供使用。 | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | 已載入的潛在放大模型,已配置並準備就緒可供使用。 | diff --git a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh.md b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh.md index 4cfa50ad2..19e996b46 100644 --- a/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh.md +++ b/comfyui_embedded_docs/docs/LatentUpscaleModelLoader/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `model` | LATENT_UPSCALE_MODEL | 已加载并配置好、可供使用的潜空间放大模型。 | \ No newline at end of file +| `model` | LATENT_UPSCALE_MODEL | 已加载并配置好、可供使用的潜空间放大模型。 | diff --git a/comfyui_embedded_docs/docs/LazyCache/ar.md b/comfyui_embedded_docs/docs/LazyCache/ar.md index 19eb0c12d..e479c4f41 100644 --- a/comfyui_embedded_docs/docs/LazyCache/ar.md +++ b/comfyui_embedded_docs/docs/LazyCache/ar.md @@ -16,4 +16,4 @@ LazyCache هو نسخة محلية التطوير من EasyCache توفر تنف | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج مع إضافة وظيفة LazyCache. | \ No newline at end of file +| `model` | MODEL | النموذج مع إضافة وظيفة LazyCache. | diff --git a/comfyui_embedded_docs/docs/LazyCache/pt-BR.md b/comfyui_embedded_docs/docs/LazyCache/pt-BR.md index 7239e1e22..bf7edc734 100644 --- a/comfyui_embedded_docs/docs/LazyCache/pt-BR.md +++ b/comfyui_embedded_docs/docs/LazyCache/pt-BR.md @@ -16,4 +16,4 @@ LazyCache é uma versão caseira do EasyCache que oferece uma implementação ai | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com a funcionalidade LazyCache adicionada. | \ No newline at end of file +| `model` | MODEL | O modelo com a funcionalidade LazyCache adicionada. | diff --git a/comfyui_embedded_docs/docs/LazyCache/tr.md b/comfyui_embedded_docs/docs/LazyCache/tr.md index 5ee7f69a8..28b30fd0d 100644 --- a/comfyui_embedded_docs/docs/LazyCache/tr.md +++ b/comfyui_embedded_docs/docs/LazyCache/tr.md @@ -16,4 +16,4 @@ LazyCache, daha kolay bir uygulama sağlayan EasyCache'in ev yapımı bir versiy | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | LazyCache işlevselliği eklenmiş model. | \ No newline at end of file +| `model` | MODEL | LazyCache işlevselliği eklenmiş model. | diff --git a/comfyui_embedded_docs/docs/LazyCache/zh-TW.md b/comfyui_embedded_docs/docs/LazyCache/zh-TW.md index bd7cf7f68..7a08046b5 100644 --- a/comfyui_embedded_docs/docs/LazyCache/zh-TW.md +++ b/comfyui_embedded_docs/docs/LazyCache/zh-TW.md @@ -16,4 +16,4 @@ LazyCache 是 EasyCache 的自製版本,提供了更簡易的實作方式。 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已加入 LazyCache 功能的模型。 | \ No newline at end of file +| `model` | MODEL | 已加入 LazyCache 功能的模型。 | diff --git a/comfyui_embedded_docs/docs/Load3d/ar.md b/comfyui_embedded_docs/docs/Load3D/ar.md similarity index 99% rename from comfyui_embedded_docs/docs/Load3d/ar.md rename to comfyui_embedded_docs/docs/Load3D/ar.md index b5f9f078b..e6862c60b 100644 --- a/comfyui_embedded_docs/docs/Load3d/ar.md +++ b/comfyui_embedded_docs/docs/Load3D/ar.md @@ -131,4 +131,4 @@ تحتوي القائمة اليمنى على وظيفتين رئيسيتين: 1. **إعادة تعيين نسبة العرض**: بعد النقر على الزر، سيقوم العرض بضبط نسبة منطقة عرض لوحة الرسم وفقًا للعرض والارتفاع المحددين -2. **تسجيل الفيديو**: يسمح لك بتسجيل عمليات العرض ثلاثي الأبعاد الحالية كفيديو، يسمح بالاستيراد، ويمكن إخراجه كـ `recording_video` إلى العُقد اللاحقة \ No newline at end of file +2. **تسجيل الفيديو**: يسمح لك بتسجيل عمليات العرض ثلاثي الأبعاد الحالية كفيديو، يسمح بالاستيراد، ويمكن إخراجه كـ `recording_video` إلى العُقد اللاحقة diff --git a/comfyui_embedded_docs/docs/Load3d/asset/load3d_outputs.webp b/comfyui_embedded_docs/docs/Load3D/asset/load3d_outputs.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/load3d_outputs.webp rename to comfyui_embedded_docs/docs/Load3D/asset/load3d_outputs.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/load3d_ui.jpg b/comfyui_embedded_docs/docs/Load3D/asset/load3d_ui.jpg similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/load3d_ui.jpg rename to comfyui_embedded_docs/docs/Load3D/asset/load3d_ui.jpg diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu_camera.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu_camera.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu_camera.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu_camera.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu_export.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu_export.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu_light.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu_light.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu_light.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu_light.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu_model.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu_model.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu_model.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu_model.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/menu_scene.webp b/comfyui_embedded_docs/docs/Load3D/asset/menu_scene.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/menu_scene.webp rename to comfyui_embedded_docs/docs/Load3D/asset/menu_scene.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/recording.mp4 b/comfyui_embedded_docs/docs/Load3D/asset/recording.mp4 similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/recording.mp4 rename to comfyui_embedded_docs/docs/Load3D/asset/recording.mp4 diff --git a/comfyui_embedded_docs/docs/Load3d/asset/render_mode.webp b/comfyui_embedded_docs/docs/Load3D/asset/render_mode.webp similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/render_mode.webp rename to comfyui_embedded_docs/docs/Load3D/asset/render_mode.webp diff --git a/comfyui_embedded_docs/docs/Load3d/asset/view_operations.mp4 b/comfyui_embedded_docs/docs/Load3D/asset/view_operations.mp4 similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/asset/view_operations.mp4 rename to comfyui_embedded_docs/docs/Load3D/asset/view_operations.mp4 diff --git a/comfyui_embedded_docs/docs/Load3d/en.md b/comfyui_embedded_docs/docs/Load3D/en.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/en.md rename to comfyui_embedded_docs/docs/Load3D/en.md diff --git a/comfyui_embedded_docs/docs/Load3d/es.md b/comfyui_embedded_docs/docs/Load3D/es.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/es.md rename to comfyui_embedded_docs/docs/Load3D/es.md diff --git a/comfyui_embedded_docs/docs/Load3d/fr.md b/comfyui_embedded_docs/docs/Load3D/fr.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/fr.md rename to comfyui_embedded_docs/docs/Load3D/fr.md diff --git a/comfyui_embedded_docs/docs/Load3d/ja.md b/comfyui_embedded_docs/docs/Load3D/ja.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/ja.md rename to comfyui_embedded_docs/docs/Load3D/ja.md diff --git a/comfyui_embedded_docs/docs/Load3d/ko.md b/comfyui_embedded_docs/docs/Load3D/ko.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/ko.md rename to comfyui_embedded_docs/docs/Load3D/ko.md diff --git a/comfyui_embedded_docs/docs/Load3d/pt-BR.md b/comfyui_embedded_docs/docs/Load3D/pt-BR.md similarity index 99% rename from comfyui_embedded_docs/docs/Load3d/pt-BR.md rename to comfyui_embedded_docs/docs/Load3D/pt-BR.md index 955c382dd..79f78ddd4 100644 --- a/comfyui_embedded_docs/docs/Load3d/pt-BR.md +++ b/comfyui_embedded_docs/docs/Load3D/pt-BR.md @@ -131,4 +131,4 @@ Este menu fornece a capacidade de converter e exportar rapidamente formatos de m O menu direito tem duas funções principais: 1. **Redefinir proporção da visualização**: Após clicar no botão, a visualização ajustará a proporção da área de renderização da tela de acordo com a largura e altura definidas -2. **Gravação de vídeo**: Permite gravar as operações atuais da visualização 3D como vídeo, permite importação e pode ser enviado como `recording_video` para nós subsequentes \ No newline at end of file +2. **Gravação de vídeo**: Permite gravar as operações atuais da visualização 3D como vídeo, permite importação e pode ser enviado como `recording_video` para nós subsequentes diff --git a/comfyui_embedded_docs/docs/Load3d/ru.md b/comfyui_embedded_docs/docs/Load3D/ru.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/ru.md rename to comfyui_embedded_docs/docs/Load3D/ru.md diff --git a/comfyui_embedded_docs/docs/Load3d/tr.md b/comfyui_embedded_docs/docs/Load3D/tr.md similarity index 99% rename from comfyui_embedded_docs/docs/Load3d/tr.md rename to comfyui_embedded_docs/docs/Load3D/tr.md index fa4199b35..76d2d3908 100644 --- a/comfyui_embedded_docs/docs/Load3d/tr.md +++ b/comfyui_embedded_docs/docs/Load3D/tr.md @@ -131,4 +131,4 @@ Bu menü, model biçimlerini hızlıca dönüştürme ve dışa aktarma yeteneğ Sağ menünün iki ana işlevi vardır: 1. **Görünüm oranını sıfırla**: Düğmeye tıklandıktan sonra, görünüm ayarlanan genişlik ve yüksekliğe göre tuval işleme alanı oranını ayarlayacaktır -2. **Video kaydı**: Mevcut 3B görünüm işlemlerini video olarak kaydetmenize olanak tanır, içe aktarmaya izin verir ve `recording_video` olarak sonraki düğümlere çıktı verebilir \ No newline at end of file +2. **Video kaydı**: Mevcut 3B görünüm işlemlerini video olarak kaydetmenize olanak tanır, içe aktarmaya izin verir ve `recording_video` olarak sonraki düğümlere çıktı verebilir diff --git a/comfyui_embedded_docs/docs/Load3d/zh-TW.md b/comfyui_embedded_docs/docs/Load3D/zh-TW.md similarity index 99% rename from comfyui_embedded_docs/docs/Load3d/zh-TW.md rename to comfyui_embedded_docs/docs/Load3D/zh-TW.md index 835e61ef0..0489a809f 100644 --- a/comfyui_embedded_docs/docs/Load3d/zh-TW.md +++ b/comfyui_embedded_docs/docs/Load3D/zh-TW.md @@ -131,4 +131,4 @@ Load3D 節點的畫布區域包含眾多檢視操作,包括: 右側選單有兩個主要功能: 1. **重設檢視比例**:點擊按鈕後,檢視將根據設定的寬度和高度調整畫布渲染區域比例 -2. **影片錄製**:允許您將目前的 3D 檢視操作錄製為影片,允許匯入,並可作為 `recording_video` 輸出到後續節點 \ No newline at end of file +2. **影片錄製**:允許您將目前的 3D 檢視操作錄製為影片,允許匯入,並可作為 `recording_video` 輸出到後續節點 diff --git a/comfyui_embedded_docs/docs/Load3d/zh.md b/comfyui_embedded_docs/docs/Load3D/zh.md similarity index 100% rename from comfyui_embedded_docs/docs/Load3d/zh.md rename to comfyui_embedded_docs/docs/Load3D/zh.md diff --git a/comfyui_embedded_docs/docs/Load3DAnimation/ar.md b/comfyui_embedded_docs/docs/Load3DAnimation/ar.md index 036e8b24b..15a8ba940 100644 --- a/comfyui_embedded_docs/docs/Load3DAnimation/ar.md +++ b/comfyui_embedded_docs/docs/Load3DAnimation/ar.md @@ -134,4 +134,4 @@ تحتوي القائمة اليمنى على وظيفتين رئيسيتين: 1. **إعادة تعيين نسبة العرض**: بعد النقر على الزر، سيقوم العرض بتعديل نسبة منطقة تقديم لوحة الرسم وفقاً للعرض والارتفاع المُعينين -2. **تسجيل الفيديو**: يسمح لك بتسجيل عمليات العرض ثلاثية الأبعاد الحالية كفيديو، يسمح بالاستيراد، ويمكن إخراجه كـ `recording_video` إلى العُقد اللاحقة \ No newline at end of file +2. **تسجيل الفيديو**: يسمح لك بتسجيل عمليات العرض ثلاثية الأبعاد الحالية كفيديو، يسمح بالاستيراد، ويمكن إخراجه كـ `recording_video` إلى العُقد اللاحقة diff --git a/comfyui_embedded_docs/docs/Load3DAnimation/pt-BR.md b/comfyui_embedded_docs/docs/Load3DAnimation/pt-BR.md index 5deb02185..8660b6cbd 100644 --- a/comfyui_embedded_docs/docs/Load3DAnimation/pt-BR.md +++ b/comfyui_embedded_docs/docs/Load3DAnimation/pt-BR.md @@ -134,4 +134,4 @@ Este menu fornece a capacidade de converter e exportar rapidamente formatos de m O menu direito tem duas funções principais: 1. **Redefinir proporção da visualização**: Após clicar no botão, a visualização ajustará a proporção da área de renderização da tela de acordo com a largura e altura definidas -2. **Gravação de vídeo**: Permite gravar as operações atuais da visualização 3D como vídeo, permite importação e pode ser enviado como `recording_video` para nós subsequentes \ No newline at end of file +2. **Gravação de vídeo**: Permite gravar as operações atuais da visualização 3D como vídeo, permite importação e pode ser enviado como `recording_video` para nós subsequentes diff --git a/comfyui_embedded_docs/docs/Load3DAnimation/tr.md b/comfyui_embedded_docs/docs/Load3DAnimation/tr.md index 53d4211d9..8ad759b85 100644 --- a/comfyui_embedded_docs/docs/Load3DAnimation/tr.md +++ b/comfyui_embedded_docs/docs/Load3DAnimation/tr.md @@ -134,4 +134,4 @@ Bu menü, model biçimlerini hızlıca dönüştürme ve dışa aktarma yeteneğ Sağ menünün iki ana işlevi vardır: 1. **Görünüm oranını sıfırla**: Düğmeye tıklandıktan sonra, görünüm ayarlanmış genişlik ve yüksekliğe göre tuval işleme alanı oranını ayarlayacaktır -2. **Video kaydı**: Mevcut 3D görünüm işlemlerini video olarak kaydetmenize izin verir, içe aktarmaya izin verir ve `recording_video` olarak sonraki düğümlere çıktı verebilir \ No newline at end of file +2. **Video kaydı**: Mevcut 3D görünüm işlemlerini video olarak kaydetmenize izin verir, içe aktarmaya izin verir ve `recording_video` olarak sonraki düğümlere çıktı verebilir diff --git a/comfyui_embedded_docs/docs/Load3DAnimation/zh-TW.md b/comfyui_embedded_docs/docs/Load3DAnimation/zh-TW.md index 2f1ed6c87..b6e1e89d9 100644 --- a/comfyui_embedded_docs/docs/Load3DAnimation/zh-TW.md +++ b/comfyui_embedded_docs/docs/Load3DAnimation/zh-TW.md @@ -134,4 +134,4 @@ Load3D 節點的畫布區域包含眾多檢視操作,包括: 右側選單有兩個主要功能: 1. **重設檢視比例**:點擊按鈕後,檢視將根據設定的寬度和高度調整畫布渲染區域比例 -2. **影片錄製**:允許您將當前的 3D 檢視操作錄製為影片,允許匯入,並可作為 `recording_video` 輸出到後續節點 \ No newline at end of file +2. **影片錄製**:允許您將當前的 3D 檢視操作錄製為影片,允許匯入,並可作為 `recording_video` 輸出到後續節點 diff --git a/comfyui_embedded_docs/docs/LoadAudio/ar.md b/comfyui_embedded_docs/docs/LoadAudio/ar.md index 9f069439a..ccd408581 100644 --- a/comfyui_embedded_docs/docs/LoadAudio/ar.md +++ b/comfyui_embedded_docs/docs/LoadAudio/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | بيانات الصوت التي تحتوي على معلومات الموجة الصوتية ومعدل العينة | \ No newline at end of file +| `AUDIO` | AUDIO | بيانات الصوت التي تحتوي على معلومات الموجة الصوتية ومعدل العينة | diff --git a/comfyui_embedded_docs/docs/LoadAudio/pt-BR.md b/comfyui_embedded_docs/docs/LoadAudio/pt-BR.md index d079b0741..b214868ce 100644 --- a/comfyui_embedded_docs/docs/LoadAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadAudio/pt-BR.md @@ -14,4 +14,4 @@ O nó LoadAudio carrega arquivos de áudio do diretório de entrada e os convert | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Dados de áudio contendo informações da forma de onda e da taxa de amostragem | \ No newline at end of file +| `AUDIO` | AUDIO | Dados de áudio contendo informações da forma de onda e da taxa de amostragem | diff --git a/comfyui_embedded_docs/docs/LoadAudio/tr.md b/comfyui_embedded_docs/docs/LoadAudio/tr.md index 66fda439c..6fdac7e89 100644 --- a/comfyui_embedded_docs/docs/LoadAudio/tr.md +++ b/comfyui_embedded_docs/docs/LoadAudio/tr.md @@ -14,4 +14,4 @@ LoadAudio düğümü, giriş dizininden ses dosyalarını yükler ve ComfyUI'dek | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Dalga formu ve örnekleme hızı bilgilerini içeren ses verisi | \ No newline at end of file +| `AUDIO` | AUDIO | Dalga formu ve örnekleme hızı bilgilerini içeren ses verisi | diff --git a/comfyui_embedded_docs/docs/LoadAudio/zh-TW.md b/comfyui_embedded_docs/docs/LoadAudio/zh-TW.md index a1806342f..f03d2fa05 100644 --- a/comfyui_embedded_docs/docs/LoadAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadAudio/zh-TW.md @@ -14,4 +14,4 @@ LoadAudio 節點會從輸入目錄載入音訊檔案,並將其轉換為可供 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 包含波形和取樣率資訊的音訊資料 | \ No newline at end of file +| `AUDIO` | AUDIO | 包含波形和取樣率資訊的音訊資料 | diff --git a/comfyui_embedded_docs/docs/LoadImage/ar.md b/comfyui_embedded_docs/docs/LoadImage/ar.md index 30e5019d8..35df58851 100644 --- a/comfyui_embedded_docs/docs/LoadImage/ar.md +++ b/comfyui_embedded_docs/docs/LoadImage/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|-------| | `صورة` | `IMAGE` | الصورة المُعالجة، مع تطبيع قيم البكسل وتطبيق التحويلات اللازمة. وهي جاهزة للمعالجة أو التحليل الإضافي. | -| `mask` | `MASK` | مخرج اختياري يُوفر قناعًا للصورة، مفيد في السيناريوهات التي تحتوي فيها الصورة على قناة ألفا للشفافية. | \ No newline at end of file +| `mask` | `MASK` | مخرج اختياري يُوفر قناعًا للصورة، مفيد في السيناريوهات التي تحتوي فيها الصورة على قناة ألفا للشفافية. | diff --git a/comfyui_embedded_docs/docs/LoadImage/pt-BR.md b/comfyui_embedded_docs/docs/LoadImage/pt-BR.md index 13606b1cb..b451de4a7 100644 --- a/comfyui_embedded_docs/docs/LoadImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImage/pt-BR.md @@ -13,4 +13,4 @@ O nó LoadImage foi projetado para carregar e pré-processar imagens de um camin | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| | `image` | `IMAGE` | A imagem processada, com valores de pixel normalizados e transformações aplicadas conforme necessário. Está pronta para processamento ou análise posterior. | -| `mask` | `MASK` | Uma saída opcional que fornece uma máscara para a imagem, útil em cenários onde a imagem inclui um canal alfa para transparência. | \ No newline at end of file +| `mask` | `MASK` | Uma saída opcional que fornece uma máscara para a imagem, útil em cenários onde a imagem inclui um canal alfa para transparência. | diff --git a/comfyui_embedded_docs/docs/LoadImage/tr.md b/comfyui_embedded_docs/docs/LoadImage/tr.md index 67fe11857..5c3e1de50 100644 --- a/comfyui_embedded_docs/docs/LoadImage/tr.md +++ b/comfyui_embedded_docs/docs/LoadImage/tr.md @@ -13,4 +13,4 @@ LoadImage düğümü, belirli bir yoldan görüntüleri yüklemek ve ön işleme | Parametre | Veri Tipi | Açıklama | |-----------|-----------|-------------| | `görüntü` | `IMAGE` | Piksel değerleri normalleştirilmiş ve gerekli dönüşümler uygulanmış işlenmiş görüntü. İleri işleme veya analiz için hazırdır. | -| `mask` | `MASK` | Görüntünün şeffaflık için bir alfa kanalı içerdiği senaryolarda kullanışlı olan, görüntü için isteğe bağlı bir maske çıktısı sağlar. | \ No newline at end of file +| `mask` | `MASK` | Görüntünün şeffaflık için bir alfa kanalı içerdiği senaryolarda kullanışlı olan, görüntü için isteğe bağlı bir maske çıktısı sağlar. | diff --git a/comfyui_embedded_docs/docs/LoadImage/zh-TW.md b/comfyui_embedded_docs/docs/LoadImage/zh-TW.md index cae8a992c..30058f56f 100644 --- a/comfyui_embedded_docs/docs/LoadImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImage/zh-TW.md @@ -13,4 +13,4 @@ LoadImage 節點旨在從指定路徑載入並預處理影像。它能夠處理 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| | `影像` | `IMAGE` | 經過處理的影像,其像素值已正規化並根據需要套用了轉換。此影像已準備好用於後續處理或分析。 | -| `mask` | `MASK` | 一個可選的輸出,提供影像的遮罩,在影像包含用於透明度的 alpha 通道時非常有用。 | \ No newline at end of file +| `mask` | `MASK` | 一個可選的輸出,提供影像的遮罩,在影像包含用於透明度的 alpha 通道時非常有用。 | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ar.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ar.md index c5507f9be..2c97e2981 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `images` | IMAGE | قائمة بالصور المحملة. يحمل العقد جميع ملفات الصور الصالحة (PNG, JPG, JPEG, WEBP) الموجودة في المجلد المحدد. | \ No newline at end of file +| `images` | IMAGE | قائمة بالصور المحملة. يحمل العقد جميع ملفات الصور الصالحة (PNG, JPG, JPEG, WEBP) الموجودة في المجلد المحدد. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/en.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/en.md index fe3a912a1..02efdf0d7 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/en.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/en.md @@ -12,4 +12,4 @@ This node loads multiple images from a specified subfolder within ComfyUI's inpu | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `images` | IMAGE | List of loaded images. The node loads all valid image files (PNG, JPG, JPEG, WEBP) found in the selected folder. | \ No newline at end of file +| `images` | IMAGE | List of loaded images. The node loads all valid image files (PNG, JPG, JPEG, WEBP) found in the selected folder. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/es.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/es.md index d96cdeab3..19e104e48 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/es.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/es.md @@ -12,4 +12,4 @@ Este nodo carga múltiples imágenes desde una subcarpeta específica dentro del | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `images` | IMAGE | Lista de imágenes cargadas. El nodo carga todos los archivos de imagen válidos (PNG, JPG, JPEG, WEBP) encontrados en la carpeta seleccionada. | \ No newline at end of file +| `images` | IMAGE | Lista de imágenes cargadas. El nodo carga todos los archivos de imagen válidos (PNG, JPG, JPEG, WEBP) encontrados en la carpeta seleccionada. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/fr.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/fr.md index a8b95fd5c..c096b0cb4 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/fr.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/fr.md @@ -12,4 +12,4 @@ Ce nœud charge plusieurs images à partir d'un sous-dossier spécifié dans le | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `images` | IMAGE | Liste des images chargées. Le nœud charge tous les fichiers image valides (PNG, JPG, JPEG, WEBP) trouvés dans le dossier sélectionné. | \ No newline at end of file +| `images` | IMAGE | Liste des images chargées. Le nœud charge tous les fichiers image valides (PNG, JPG, JPEG, WEBP) trouvés dans le dossier sélectionné. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ja.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ja.md index 85cba323e..8b31f63d6 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ja.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `images` | IMAGE | 読み込まれた画像のリストです。このノードは、選択したフォルダ内で見つかったすべての有効な画像ファイル(PNG、JPG、JPEG、WEBP)を読み込みます。 | \ No newline at end of file +| `images` | IMAGE | 読み込まれた画像のリストです。このノードは、選択したフォルダ内で見つかったすべての有効な画像ファイル(PNG、JPG、JPEG、WEBP)を読み込みます。 | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ko.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ko.md index 81269bd35..9c316e960 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ko.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `images` | IMAGE | 불러온 이미지 목록입니다. 이 노드는 선택한 폴더에서 발견된 모든 유효한 이미지 파일(PNG, JPG, JPEG, WEBP)을 불러옵니다. | \ No newline at end of file +| `images` | IMAGE | 불러온 이미지 목록입니다. 이 노드는 선택한 폴더에서 발견된 모든 유효한 이미지 파일(PNG, JPG, JPEG, WEBP)을 불러옵니다. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/pt-BR.md index 14205abe9..8f43e47d9 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/pt-BR.md @@ -12,4 +12,4 @@ Este nó carrega múltiplas imagens de uma subpasta específica dentro do diret | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `images` | IMAGE | Lista de imagens carregadas. O nó carrega todos os arquivos de imagem válidos (PNG, JPG, JPEG, WEBP) encontrados na pasta selecionada. | \ No newline at end of file +| `images` | IMAGE | Lista de imagens carregadas. O nó carrega todos os arquivos de imagem válidos (PNG, JPG, JPEG, WEBP) encontrados na pasta selecionada. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ru.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ru.md index d4867acdc..c0edaa4f5 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ru.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `images` | IMAGE | Список загруженных изображений. Узел загружает все найденные в выбранной папке файлы изображений допустимых типов (PNG, JPG, JPEG, WEBP). | \ No newline at end of file +| `images` | IMAGE | Список загруженных изображений. Узел загружает все найденные в выбранной папке файлы изображений допустимых типов (PNG, JPG, JPEG, WEBP). | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/tr.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/tr.md index 56dee1092..07c5795e4 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/tr.md @@ -12,4 +12,4 @@ Bu düğüm, ComfyUI'nin giriş dizini içinde belirtilen bir alt klasörden bir | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `images` | IMAGE | Yüklenen görüntülerin listesi. Düğüm, seçilen klasörde bulunan tüm geçerli görüntü dosyalarını (PNG, JPG, JPEG, WEBP) yükler. | \ No newline at end of file +| `images` | IMAGE | Yüklenen görüntülerin listesi. Düğüm, seçilen klasörde bulunan tüm geçerli görüntü dosyalarını (PNG, JPG, JPEG, WEBP) yükler. | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh-TW.md index 249f7f14d..df76fa110 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 已載入的圖片清單。此節點會載入在所選資料夾中找到的所有有效圖片檔案(PNG、JPG、JPEG、WEBP)。 | \ No newline at end of file +| `images` | IMAGE | 已載入的圖片清單。此節點會載入在所選資料夾中找到的所有有效圖片檔案(PNG、JPG、JPEG、WEBP)。 | diff --git a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh.md b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh.md index 196fd1aec..449d1a1e7 100644 --- a/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh.md +++ b/comfyui_embedded_docs/docs/LoadImageDataSetFromFolder/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 已加载图像的列表。该节点会加载在所选文件夹中找到的所有有效图像文件(PNG、JPG、JPEG、WEBP)。 | \ No newline at end of file +| `images` | IMAGE | 已加载图像的列表。该节点会加载在所选文件夹中找到的所有有效图像文件(PNG、JPG、JPEG、WEBP)。 | diff --git a/comfyui_embedded_docs/docs/LoadImageMask/ar.md b/comfyui_embedded_docs/docs/LoadImageMask/ar.md index f3cdb61d8..c8717aaf4 100644 --- a/comfyui_embedded_docs/docs/LoadImageMask/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageMask/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|-------| -| `mask` | `MASK` | تخرج هذه العُقدة القناع المُنشأ من الصورة والقناة المحددة، والمُجهز بتنسيق موحد مناسب للمعالجة الإضافية في مهام التلاعب بالصور. | \ No newline at end of file +| `mask` | `MASK` | تخرج هذه العُقدة القناع المُنشأ من الصورة والقناة المحددة، والمُجهز بتنسيق موحد مناسب للمعالجة الإضافية في مهام التلاعب بالصور. | diff --git a/comfyui_embedded_docs/docs/LoadImageMask/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageMask/pt-BR.md index f02151bce..b726079bd 100644 --- a/comfyui_embedded_docs/docs/LoadImageMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageMask/pt-BR.md @@ -13,4 +13,4 @@ O nó LoadImageMask foi projetado para carregar imagens e suas máscaras associa | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `mask` | `MASK` | Este nó gera como saída a máscara criada a partir da imagem e do canal especificados, preparada em um formato padronizado adequado para processamento posterior em tarefas de manipulação de imagem. | \ No newline at end of file +| `mask` | `MASK` | Este nó gera como saída a máscara criada a partir da imagem e do canal especificados, preparada em um formato padronizado adequado para processamento posterior em tarefas de manipulação de imagem. | diff --git a/comfyui_embedded_docs/docs/LoadImageMask/tr.md b/comfyui_embedded_docs/docs/LoadImageMask/tr.md index 51831d2b7..acedba730 100644 --- a/comfyui_embedded_docs/docs/LoadImageMask/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageMask/tr.md @@ -13,4 +13,4 @@ LoadImageMask düğümü, belirli bir yoldan görüntüleri ve bunlarla ilişkil | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `mask` | `MASK` | Bu düğüm, belirtilen görüntü ve kanaldan oluşturulan, görüntü işleme görevlerinde daha fazla işleme uygun standart formatta hazırlanmış maskeyi çıkarır. | \ No newline at end of file +| `mask` | `MASK` | Bu düğüm, belirtilen görüntü ve kanaldan oluşturulan, görüntü işleme görevlerinde daha fazla işleme uygun standart formatta hazırlanmış maskeyi çıkarır. | diff --git a/comfyui_embedded_docs/docs/LoadImageMask/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageMask/zh-TW.md index 96c1aa348..e29509903 100644 --- a/comfyui_embedded_docs/docs/LoadImageMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageMask/zh-TW.md @@ -13,4 +13,4 @@ LoadImageMask 節點專門用於從指定路徑載入影像及其相關遮罩, | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `mask` | `MASK` | 此節點輸出從指定影像和通道生成的遮罩,該遮罩已準備成標準化格式,適合在影像處理任務中進行後續處理。 | \ No newline at end of file +| `mask` | `MASK` | 此節點輸出從指定影像和通道生成的遮罩,該遮罩已準備成標準化格式,適合在影像處理任務中進行後續處理。 | diff --git a/comfyui_embedded_docs/docs/LoadImageOutput/ar.md b/comfyui_embedded_docs/docs/LoadImageOutput/ar.md index 0997743ad..d0c9a2e55 100644 --- a/comfyui_embedded_docs/docs/LoadImageOutput/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageOutput/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `صورة` | IMAGE | الصورة المحملة من مجلد الإخراج | -| `mask` | MASK | القناع المرتبط بالصورة المحملة | \ No newline at end of file +| `mask` | MASK | القناع المرتبط بالصورة المحملة | diff --git a/comfyui_embedded_docs/docs/LoadImageOutput/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageOutput/pt-BR.md index a8e3e5be0..c5032dea9 100644 --- a/comfyui_embedded_docs/docs/LoadImageOutput/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageOutput/pt-BR.md @@ -13,4 +13,4 @@ O nó LoadImageOutput carrega imagens da pasta de saída. Quando você clica no | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `image` | IMAGE | A imagem carregada da pasta de saída | -| `mask` | MASK | A máscara associada à imagem carregada | \ No newline at end of file +| `mask` | MASK | A máscara associada à imagem carregada | diff --git a/comfyui_embedded_docs/docs/LoadImageOutput/tr.md b/comfyui_embedded_docs/docs/LoadImageOutput/tr.md index 91896756d..e5fe68030 100644 --- a/comfyui_embedded_docs/docs/LoadImageOutput/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageOutput/tr.md @@ -13,4 +13,4 @@ LoadImageOutput düğümü, çıktı klasöründen görüntüleri yükler. Yenil | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `görüntü` | IMAGE | Çıktı klasöründen yüklenen görüntü | -| `mask` | MASK | Yüklenen görüntüyle ilişkili maske | \ No newline at end of file +| `mask` | MASK | Yüklenen görüntüyle ilişkili maske | diff --git a/comfyui_embedded_docs/docs/LoadImageOutput/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageOutput/zh-TW.md index 1d31b9d11..bc96c90de 100644 --- a/comfyui_embedded_docs/docs/LoadImageOutput/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageOutput/zh-TW.md @@ -15,4 +15,4 @@ LoadImageOutput 節點從輸出資料夾載入圖片。當您點擊重新整理 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `影像` | IMAGE | 從輸出資料夾載入的圖片 | -| `mask` | MASK | 與載入圖片相關聯的遮罩 | \ No newline at end of file +| `mask` | MASK | 與載入圖片相關聯的遮罩 | diff --git a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/ar.md b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/ar.md index 67a0f5113..6714a060a 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | دفعة الصور المحملة كموتر واحد. | \ No newline at end of file +| `IMAGE` | IMAGE | دفعة الصور المحملة كموتر واحد. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/pt-BR.md index a7e4f1a59..92a939065 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/pt-BR.md @@ -13,4 +13,4 @@ O LoadImageSetFromFolderNode carrega múltiplas imagens de um diretório de past | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | O lote de imagens carregadas como um único tensor. | \ No newline at end of file +| `IMAGE` | IMAGE | O lote de imagens carregadas como um único tensor. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/tr.md b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/tr.md index f8a1ebbd9..6202e2ca8 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/tr.md @@ -13,4 +13,4 @@ LoadImageSetFromFolderNode, eğitim amaçları için belirtilen bir klasör dizi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Tek bir tensör olarak yüklenen görüntülerin toplu işi. | \ No newline at end of file +| `IMAGE` | IMAGE | Tek bir tensör olarak yüklenen görüntülerin toplu işi. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/zh-TW.md index 110bd6ee1..e0a47b636 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageSetFromFolderNode/zh-TW.md @@ -15,4 +15,4 @@ LoadImageSetFromFolderNode 從指定的資料夾目錄載入多張影像,用 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 載入的影像批次,以單一張量形式呈現。 | \ No newline at end of file +| `IMAGE` | IMAGE | 載入的影像批次,以單一張量形式呈現。 | diff --git a/comfyui_embedded_docs/docs/LoadImageSetNode/ar.md b/comfyui_embedded_docs/docs/LoadImageSetNode/ar.md index e2f86e381..9db5173d5 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetNode/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageSetNode/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | مُتّجه يحتوي على جميع الصور المحملة كدفعة واحدة لمزيد من المعالجة. | \ No newline at end of file +| `IMAGE` | IMAGE | مُتّجه يحتوي على جميع الصور المحملة كدفعة واحدة لمزيد من المعالجة. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetNode/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageSetNode/pt-BR.md index 15226eca2..eceaaf8bb 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageSetNode/pt-BR.md @@ -13,4 +13,4 @@ O LoadImageSetNode carrega múltiplas imagens do diretório de entrada para fins | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Um tensor contendo todas as imagens carregadas como um lote para processamento posterior. | \ No newline at end of file +| `IMAGE` | IMAGE | Um tensor contendo todas as imagens carregadas como um lote para processamento posterior. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetNode/tr.md b/comfyui_embedded_docs/docs/LoadImageSetNode/tr.md index b92ad7e5b..f43c9c295 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetNode/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageSetNode/tr.md @@ -13,4 +13,4 @@ LoadImageSetNode, toplu işleme ve eğitim amaçları için giriş dizininden bi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Daha fazla işleme için yüklenen tüm görüntüleri bir toplu iş olarak içeren bir tensör. | \ No newline at end of file +| `IMAGE` | IMAGE | Daha fazla işleme için yüklenen tüm görüntüleri bir toplu iş olarak içeren bir tensör. | diff --git a/comfyui_embedded_docs/docs/LoadImageSetNode/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageSetNode/zh-TW.md index 1f9431c39..2e12bc87e 100644 --- a/comfyui_embedded_docs/docs/LoadImageSetNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageSetNode/zh-TW.md @@ -13,4 +13,4 @@ LoadImageSetNode 從輸入目錄載入多張影像,用於批次處理和訓練 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 包含所有載入影像的張量,作為批次供後續處理使用。 | \ No newline at end of file +| `IMAGE` | IMAGE | 包含所有載入影像的張量,作為批次供後續處理使用。 | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ar.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ar.md index f5c6bc634..aec82a35f 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `images` | IMAGE | قائمة من موترات الصور المحملة. | -| `texts` | STRING | قائمة من نصوص التسميات التوضيحية المقابلة لكل صورة محملة. | \ No newline at end of file +| `texts` | STRING | قائمة من نصوص التسميات التوضيحية المقابلة لكل صورة محملة. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/en.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/en.md index 1823cd0bb..daa8dd241 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/en.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/en.md @@ -15,4 +15,4 @@ This node loads a dataset of images and their corresponding text captions from a | Output Name | Data Type | Description | |-------------|-----------|-------------| | `images` | IMAGE | A list of loaded image tensors. | -| `texts` | STRING | A list of text captions corresponding to each loaded image. | \ No newline at end of file +| `texts` | STRING | A list of text captions corresponding to each loaded image. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/es.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/es.md index 7ceda873b..fde893215 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/es.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/es.md @@ -15,4 +15,4 @@ Este nodo carga un conjunto de datos de imágenes y sus correspondientes descrip | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `images` | IMAGE | Una lista de tensores de imagen cargados. | -| `texts` | STRING | Una lista de descripciones de texto correspondientes a cada imagen cargada. | \ No newline at end of file +| `texts` | STRING | Una lista de descripciones de texto correspondientes a cada imagen cargada. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/fr.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/fr.md index f94bfedf5..ad6a2e689 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/fr.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/fr.md @@ -15,4 +15,4 @@ Ce nœud charge un jeu de données d'images et de leurs légendes textuelles cor | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| | `images` | IMAGE | Une liste de tenseurs d'images chargées. | -| `texts` | STRING | Une liste de légendes textuelles correspondant à chaque image chargée. | \ No newline at end of file +| `texts` | STRING | Une liste de légendes textuelles correspondant à chaque image chargée. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ja.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ja.md index bda343684..8c11260cb 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ja.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ja.md @@ -15,4 +15,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `images` | IMAGE | 読み込まれた画像テンソルのリストです。 | -| `texts` | STRING | 読み込まれた各画像に対応するテキストキャプションのリストです。 | \ No newline at end of file +| `texts` | STRING | 読み込まれた各画像に対応するテキストキャプションのリストです。 | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ko.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ko.md index dea659cba..ff706f10f 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ko.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ko.md @@ -15,4 +15,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `images` | IMAGE | 불러온 이미지 텐서 목록입니다. | -| `texts` | STRING | 불러온 각 이미지에 해당하는 텍스트 캡션 목록입니다. | \ No newline at end of file +| `texts` | STRING | 불러온 각 이미지에 해당하는 텍스트 캡션 목록입니다. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/pt-BR.md index f0490610e..d4441d7fc 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/pt-BR.md @@ -15,4 +15,4 @@ Este nó carrega um conjunto de dados de imagens e suas legendas de texto corres | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `images` | IMAGE | Uma lista de tensores de imagem carregados. | -| `texts` | STRING | Uma lista de legendas de texto correspondentes a cada imagem carregada. | \ No newline at end of file +| `texts` | STRING | Uma lista de legendas de texto correspondentes a cada imagem carregada. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ru.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ru.md index 7425ef824..01f52da06 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ru.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `images` | IMAGE | Список загруженных тензоров изображений. | -| `texts` | STRING | Список текстовых описаний, соответствующих каждому загруженному изображению. | \ No newline at end of file +| `texts` | STRING | Список текстовых описаний, соответствующих каждому загруженному изображению. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/tr.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/tr.md index abce46c02..5b7ee357d 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/tr.md @@ -15,4 +15,4 @@ Bu düğüm, belirtilen bir klasörden görüntüler ve bunlara karşılık gele | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `images` | IMAGE | Yüklenen görüntü tensörlerinin bir listesi. | -| `texts` | STRING | Yüklenen her görüntüye karşılık gelen metin açıklamalarının bir listesi. | \ No newline at end of file +| `texts` | STRING | Yüklenen her görüntüye karşılık gelen metin açıklamalarının bir listesi. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh-TW.md index 8c253c7db..fc23f9b12 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `images` | IMAGE | 已載入的影像張量列表。 | -| `texts` | STRING | 對應於每個已載入影像的文字描述列表。 | \ No newline at end of file +| `texts` | STRING | 對應於每個已載入影像的文字描述列表。 | diff --git a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh.md b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh.md index 52a4c5413..ae71a0159 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh.md +++ b/comfyui_embedded_docs/docs/LoadImageTextDataSetFromFolder/zh.md @@ -15,4 +15,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `images` | IMAGE | 已加载的图像张量列表。 | -| `texts` | STRING | 与每个已加载图像对应的文本描述列表。 | \ No newline at end of file +| `texts` | STRING | 与每个已加载图像对应的文本描述列表。 | diff --git a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/ar.md b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/ar.md index 480ac594c..86a0afe97 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/ar.md +++ b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `IMAGE` | IMAGE | مجموعة الصور المحملة والمعالجة. | -| `CONDITIONING` | CONDITIONING | بيانات التكييف المشفرة الناتجة من نصوص التسميات التوضيحية. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المشفرة الناتجة من نصوص التسميات التوضيحية. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/pt-BR.md b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/pt-BR.md index 7934cf38a..bfc5e487c 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/pt-BR.md @@ -19,4 +19,4 @@ Carrega um lote de imagens e suas legendas de texto correspondentes de um diret | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `IMAGE` | IMAGE | O lote de imagens carregadas e processadas. | -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento codificados a partir das legendas de texto. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento codificados a partir das legendas de texto. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/tr.md b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/tr.md index 569d9dd97..ea1d78938 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/tr.md +++ b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/tr.md @@ -19,4 +19,4 @@ Belirtilen bir dizinden eğitim amacıyla bir grup görüntüyü ve bunlara kar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `IMAGE` | IMAGE | Yüklenen ve işlenen görüntülerin grubu. | -| `CONDITIONING` | CONDITIONING | Metin açıklamalarından elde edilen kodlanmış koşullandırma verileri. | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Metin açıklamalarından elde edilen kodlanmış koşullandırma verileri. | diff --git a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/zh-TW.md b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/zh-TW.md index 4e8d7a85c..5e21e7deb 100644 --- a/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadImageTextSetFromFolderNode/zh-TW.md @@ -19,4 +19,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `IMAGE` | IMAGE | 已載入並處理完成的影像批次。 | -| `CONDITIONING` | CONDITIONING | 從文字描述編碼而來的條件化資料。 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 從文字描述編碼而來的條件化資料。 | diff --git a/comfyui_embedded_docs/docs/LoadLatent/ar.md b/comfyui_embedded_docs/docs/LoadLatent/ar.md index 34bde1818..2232064a7 100644 --- a/comfyui_embedded_docs/docs/LoadLatent/ar.md +++ b/comfyui_embedded_docs/docs/LoadLatent/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `LATENT` | LATENT | يُرجع بيانات التمثيل الكامن التي تم تحميلها من الملف المحدد | \ No newline at end of file +| `LATENT` | LATENT | يُرجع بيانات التمثيل الكامن التي تم تحميلها من الملف المحدد | diff --git a/comfyui_embedded_docs/docs/LoadLatent/pt-BR.md b/comfyui_embedded_docs/docs/LoadLatent/pt-BR.md index 4ecaa40ed..b7eb2a659 100644 --- a/comfyui_embedded_docs/docs/LoadLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadLatent/pt-BR.md @@ -12,4 +12,4 @@ O nó LoadLatent carrega representações latentes previamente salvas a partir d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | Retorna os dados da representação latente carregados a partir do arquivo selecionado | \ No newline at end of file +| `LATENT` | LATENT | Retorna os dados da representação latente carregados a partir do arquivo selecionado | diff --git a/comfyui_embedded_docs/docs/LoadLatent/tr.md b/comfyui_embedded_docs/docs/LoadLatent/tr.md index bc86db733..78164da55 100644 --- a/comfyui_embedded_docs/docs/LoadLatent/tr.md +++ b/comfyui_embedded_docs/docs/LoadLatent/tr.md @@ -12,4 +12,4 @@ LoadLatent düğümü, giriş dizinindeki .latent dosyalarından önceden kayded | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Seçilen dosyadan yüklenen gizli temsil verilerini döndürür | \ No newline at end of file +| `LATENT` | LATENT | Seçilen dosyadan yüklenen gizli temsil verilerini döndürür | diff --git a/comfyui_embedded_docs/docs/LoadLatent/zh-TW.md b/comfyui_embedded_docs/docs/LoadLatent/zh-TW.md index 75f6790c3..050cdb44e 100644 --- a/comfyui_embedded_docs/docs/LoadLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadLatent/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 從所選檔案返回已載入的潛在表示資料 | \ No newline at end of file +| `LATENT` | LATENT | 從所選檔案返回已載入的潛在表示資料 | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/ar.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/ar.md index 56b9802e7..690cc101b 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/ar.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `latents` | LATENT | قائمة بقواميس الكمون، حيث يحتوي كل قاموس على مفتاح `"samples"` مع موتر. | -| `conditioning` | CONDITIONING | قائمة بقوائم التكييف، حيث تحتوي كل قائمة داخلية على بيانات تكييف للعينة المقابلة. | \ No newline at end of file +| `conditioning` | CONDITIONING | قائمة بقوائم التكييف، حيث تحتوي كل قائمة داخلية على بيانات تكييف للعينة المقابلة. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/en.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/en.md index 13698d8cb..d7e070822 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/en.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/en.md @@ -13,4 +13,4 @@ This node loads an encoded training dataset that has been previously saved to di | Output Name | Data Type | Description | |-------------|-----------|-------------| | `latents` | LATENT | A list of latent dictionaries, where each dictionary contains a `"samples"` key with a tensor. | -| `conditioning` | CONDITIONING | A list of conditioning lists, where each inner list contains conditioning data for a corresponding sample. | \ No newline at end of file +| `conditioning` | CONDITIONING | A list of conditioning lists, where each inner list contains conditioning data for a corresponding sample. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/es.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/es.md index 6887aa4ca..1bd16b45a 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/es.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/es.md @@ -13,4 +13,4 @@ Este nodo carga un conjunto de datos de entrenamiento codificado que ha sido pre | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `latents` | LATENT | Una lista de diccionarios latentes, donde cada diccionario contiene una clave `"samples"` con un tensor. | -| `conditioning` | CONDITIONING | Una lista de listas de condicionamiento, donde cada lista interna contiene datos de condicionamiento para una muestra correspondiente. | \ No newline at end of file +| `conditioning` | CONDITIONING | Una lista de listas de condicionamiento, donde cada lista interna contiene datos de condicionamiento para una muestra correspondiente. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/fr.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/fr.md index c10cf35cd..3c3c81b01 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/fr.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/fr.md @@ -13,4 +13,4 @@ Ce nœud charge un jeu de données d'entraînement encodé précédemment enregi | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `latents` | LATENT | Une liste de dictionnaires latents, où chaque dictionnaire contient une clé `"samples"` avec un tenseur. | -| `conditioning` | CONDITIONING | Une liste de listes de conditionnement, où chaque liste interne contient les données de conditionnement pour un échantillon correspondant. | \ No newline at end of file +| `conditioning` | CONDITIONING | Une liste de listes de conditionnement, où chaque liste interne contient les données de conditionnement pour un échantillon correspondant. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/ja.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/ja.md index 1e1c16ccb..0d350e509 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/ja.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/ja.md @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `latents` | LATENT | 潜在表現の辞書のリストです。各辞書はテンソルを含む `"samples"` キーを持ちます。 | -| `conditioning` | CONDITIONING | コンディショニングデータのリストのリストです。各内側のリストは対応するサンプルのコンディショニングデータを含みます。 | \ No newline at end of file +| `conditioning` | CONDITIONING | コンディショニングデータのリストのリストです。各内側のリストは対応するサンプルのコンディショニングデータを含みます。 | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/ko.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/ko.md index 8f2a732f0..492b84841 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/ko.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `latents` | LATENT | 잠재 딕셔너리 목록으로, 각 딕셔너리는 텐서를 가진 `"samples"` 키를 포함합니다. | -| `conditioning` | CONDITIONING | 조건화 목록의 목록으로, 각 내부 목록은 해당 샘플에 대한 조건화 데이터를 포함합니다. | \ No newline at end of file +| `conditioning` | CONDITIONING | 조건화 목록의 목록으로, 각 내부 목록은 해당 샘플에 대한 조건화 데이터를 포함합니다. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/pt-BR.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/pt-BR.md index 148831ecd..b8f887003 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/pt-BR.md @@ -13,4 +13,4 @@ Este nó carrega um conjunto de dados de treinamento codificado que foi previame | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `latents` | LATENT | Uma lista de dicionários latentes, onde cada dicionário contém uma chave `"samples"` com um tensor. | -| `conditioning` | CONDITIONING | Uma lista de listas de condicionamento, onde cada lista interna contém dados de condicionamento para uma amostra correspondente. | \ No newline at end of file +| `conditioning` | CONDITIONING | Uma lista de listas de condicionamento, onde cada lista interna contém dados de condicionamento para uma amostra correspondente. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/ru.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/ru.md index ea2780686..ce9e820eb 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/ru.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `latents` | LATENT | Список латентных словарей, где каждый словарь содержит ключ `"samples"` с тензором. | -| `conditioning` | CONDITIONING | Список списков кондиционирования, где каждый внутренний список содержит данные кондиционирования для соответствующего сэмпла. | \ No newline at end of file +| `conditioning` | CONDITIONING | Список списков кондиционирования, где каждый внутренний список содержит данные кондиционирования для соответствующего сэмпла. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/tr.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/tr.md index b369be235..d54c4fd4e 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/tr.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/tr.md @@ -13,4 +13,4 @@ Bu düğüm, daha önce diske kaydedilmiş kodlanmış bir eğitim veri kümesin | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `latents` | LATENT | Her bir sözlüğün bir tensör içeren `"samples"` anahtarına sahip olduğu, gizli vektör sözlüklerinin bir listesi. | -| `conditioning` | CONDITIONING | Her bir iç listenin, karşılık gelen bir örnek için koşullandırma verisi içerdiği, koşullandırma listelerinin bir listesi. | \ No newline at end of file +| `conditioning` | CONDITIONING | Her bir iç listenin, karşılık gelen bir örnek için koşullandırma verisi içerdiği, koşullandırma listelerinin bir listesi. | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/zh-TW.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/zh-TW.md index a46b49772..77890d6c6 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 潛在字典的清單,其中每個字典包含一個帶有張量的 `"samples"` 鍵。 | -| `conditioning` | CONDITIONING | 條件清單的清單,其中每個內部清單包含對應樣本的條件資料。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 條件清單的清單,其中每個內部清單包含對應樣本的條件資料。 | diff --git a/comfyui_embedded_docs/docs/LoadTrainingDataset/zh.md b/comfyui_embedded_docs/docs/LoadTrainingDataset/zh.md index 9f153a653..c41fc549a 100644 --- a/comfyui_embedded_docs/docs/LoadTrainingDataset/zh.md +++ b/comfyui_embedded_docs/docs/LoadTrainingDataset/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 一个潜在字典列表,其中每个字典包含一个带有张量的 `"samples"` 键。 | -| `conditioning` | CONDITIONING | 一个条件列表的列表,其中每个内部列表包含对应样本的条件数据。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 一个条件列表的列表,其中每个内部列表包含对应样本的条件数据。 | diff --git a/comfyui_embedded_docs/docs/LoadVideo/ar.md b/comfyui_embedded_docs/docs/LoadVideo/ar.md index 46a33e5e9..0169f1f6e 100644 --- a/comfyui_embedded_docs/docs/LoadVideo/ar.md +++ b/comfyui_embedded_docs/docs/LoadVideo/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | بيانات الفيديو المحملة التي يمكن تمريرها إلى عُقد معالجة الفيديو الأخرى | \ No newline at end of file +| `video` | VIDEO | بيانات الفيديو المحملة التي يمكن تمريرها إلى عُقد معالجة الفيديو الأخرى | diff --git a/comfyui_embedded_docs/docs/LoadVideo/pt-BR.md b/comfyui_embedded_docs/docs/LoadVideo/pt-BR.md index c21de4948..e6cb01928 100644 --- a/comfyui_embedded_docs/docs/LoadVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoadVideo/pt-BR.md @@ -14,4 +14,4 @@ O nó Load Video carrega arquivos de vídeo do diretório de entrada e os dispon | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | Os dados de vídeo carregados que podem ser passados para outros nós de processamento de vídeo | \ No newline at end of file +| `video` | VIDEO | Os dados de vídeo carregados que podem ser passados para outros nós de processamento de vídeo | diff --git a/comfyui_embedded_docs/docs/LoadVideo/tr.md b/comfyui_embedded_docs/docs/LoadVideo/tr.md index 0feefc141..dc473f7df 100644 --- a/comfyui_embedded_docs/docs/LoadVideo/tr.md +++ b/comfyui_embedded_docs/docs/LoadVideo/tr.md @@ -14,4 +14,4 @@ Video Yükle düğümü, giriş dizininden video dosyalarını yükler ve iş ak | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | Diğer video işleme düğümlerine aktarılabilen yüklenmiş video verisi | \ No newline at end of file +| `video` | VIDEO | Diğer video işleme düğümlerine aktarılabilen yüklenmiş video verisi | diff --git a/comfyui_embedded_docs/docs/LoadVideo/zh-TW.md b/comfyui_embedded_docs/docs/LoadVideo/zh-TW.md index 2e3fe7069..dbf7a39c2 100644 --- a/comfyui_embedded_docs/docs/LoadVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoadVideo/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 已載入的視訊資料,可傳遞給其他視訊處理節點 | \ No newline at end of file +| `video` | VIDEO | 已載入的視訊資料,可傳遞給其他視訊處理節點 | diff --git a/comfyui_embedded_docs/docs/LoraLoader/ar.md b/comfyui_embedded_docs/docs/LoraLoader/ar.md index 812f85270..595326457 100644 --- a/comfyui_embedded_docs/docs/LoraLoader/ar.md +++ b/comfyui_embedded_docs/docs/LoraLoader/ar.md @@ -26,4 +26,4 @@ | المعامل | نوع البيانات | الوصف | | --- | --- | --- | | `النموذج` | MODEL | النموذج مع تطبيق تعديلات LoRA عليه | -| `CLIP` | CLIP | نسخة CLIP مع تطبيق تعديلات LoRA عليها | \ No newline at end of file +| `CLIP` | CLIP | نسخة CLIP مع تطبيق تعديلات LoRA عليها | diff --git a/comfyui_embedded_docs/docs/LoraLoader/pt-BR.md b/comfyui_embedded_docs/docs/LoraLoader/pt-BR.md index 7acdfeb5d..8e22c427e 100644 --- a/comfyui_embedded_docs/docs/LoraLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoraLoader/pt-BR.md @@ -26,4 +26,4 @@ Se você precisar carregar vários modelos LoRA, pode conectar vários nós dire | Parâmetro | Tipo de Dado | Descrição | | --- | --- | --- | | `model` | MODEL | O modelo com os ajustes LoRA aplicados | -| `clip` | CLIP | A instância CLIP com os ajustes LoRA aplicados | \ No newline at end of file +| `clip` | CLIP | A instância CLIP com os ajustes LoRA aplicados | diff --git a/comfyui_embedded_docs/docs/LoraLoader/tr.md b/comfyui_embedded_docs/docs/LoraLoader/tr.md index 0c01b1d96..16dcf5253 100644 --- a/comfyui_embedded_docs/docs/LoraLoader/tr.md +++ b/comfyui_embedded_docs/docs/LoraLoader/tr.md @@ -26,4 +26,4 @@ Birden fazla LoRA modeli yüklemeniz gerekiyorsa, aşağıda gösterildiği gibi | Parametre | Veri Türü | Açıklama | | --- | --- | --- | | `model` | MODEL | LoRA ayarlamaları uygulanmış model | -| `clip` | CLIP | LoRA ayarlamaları uygulanmış CLIP örneği | \ No newline at end of file +| `clip` | CLIP | LoRA ayarlamaları uygulanmış CLIP örneği | diff --git a/comfyui_embedded_docs/docs/LoraLoader/zh-TW.md b/comfyui_embedded_docs/docs/LoraLoader/zh-TW.md index c3d48eb62..0b71c08f1 100644 --- a/comfyui_embedded_docs/docs/LoraLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoraLoader/zh-TW.md @@ -26,4 +26,4 @@ LoRA 載入器節點主要用於載入 LoRA 模型。您可以將 LoRA 模型視 | 參數名稱 | 資料類型 | 描述 | | --- | --- | --- | | `model` | MODEL | 已套用 LoRA 調整的模型 | -| `clip` | CLIP | 已套用 LoRA 調整的 CLIP 實例 | \ No newline at end of file +| `clip` | CLIP | 已套用 LoRA 調整的 CLIP 實例 | diff --git a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/ar.md b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/ar.md index 756040127..42e6fa158 100644 --- a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/ar.md +++ b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/ar.md @@ -16,4 +16,4 @@ | الحقل | نوع البيانات | الوصف | |---------|-------------|--------------------------------------------------------------------------| -| `النموذج` | `MODEL` | النموذج المعدل مع تطبيق تعديلات LoRA عليه، مما يعكس التغييرات في سلوك النموذج أو قدراته. | \ No newline at end of file +| `النموذج` | `MODEL` | النموذج المعدل مع تطبيق تعديلات LoRA عليه، مما يعكس التغييرات في سلوك النموذج أو قدراته. | diff --git a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/pt-BR.md b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/pt-BR.md index dc74c937c..1d6113ce2 100644 --- a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/pt-BR.md @@ -16,4 +16,4 @@ Este nó é especializado em carregar um modelo LoRA sem exigir um modelo CLIP, | Campo | Tipo de Dados | Descrição | |---------|-------------|--------------------------------------------------------------------------| -| `model` | `MODEL` | O modelo modificado com os ajustes LoRA aplicados, refletindo mudanças no comportamento ou capacidades do modelo. | \ No newline at end of file +| `model` | `MODEL` | O modelo modificado com os ajustes LoRA aplicados, refletindo mudanças no comportamento ou capacidades do modelo. | diff --git a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/tr.md b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/tr.md index addde2861..2d144d474 100644 --- a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/tr.md +++ b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/tr.md @@ -16,4 +16,4 @@ Bu düğüm, bir CLIP modeli gerektirmeden bir LoRA modeli yüklemekte uzmanlaş | Alan | Veri Türü | Açıklama | |---------|-------------|--------------------------------------------------------------------------| -| `model` | `MODEL` | Model davranışındaki veya yeteneklerindeki değişiklikleri yansıtan, LoRA ayarları uygulanmış değiştirilmiş model. | \ No newline at end of file +| `model` | `MODEL` | Model davranışındaki veya yeteneklerindeki değişiklikleri yansıtan, LoRA ayarları uygulanmış değiştirilmiş model. | diff --git a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/zh-TW.md b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/zh-TW.md index d1a886739..f596ba545 100644 --- a/comfyui_embedded_docs/docs/LoraLoaderModelOnly/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoraLoaderModelOnly/zh-TW.md @@ -16,4 +16,4 @@ | 欄位名稱 | 資料類型 | 描述 | |------------|---------------|----------------------------------------------------------------------| -| `model` | `MODEL` | 已應用 LoRA 調整的修改後模型,反映模型行為或能力的變化。 | \ No newline at end of file +| `model` | `MODEL` | 已應用 LoRA 調整的修改後模型,反映模型行為或能力的變化。 | diff --git a/comfyui_embedded_docs/docs/LoraModelLoader/ar.md b/comfyui_embedded_docs/docs/LoraModelLoader/ar.md index 34fa3f4e7..757bbacfc 100644 --- a/comfyui_embedded_docs/docs/LoraModelLoader/ar.md +++ b/comfyui_embedded_docs/docs/LoraModelLoader/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | نموذج الانتشار المعدل مع تطبيق أوزان LoRA عليه. | \ No newline at end of file +| `model` | MODEL | نموذج الانتشار المعدل مع تطبيق أوزان LoRA عليه. | diff --git a/comfyui_embedded_docs/docs/LoraModelLoader/pt-BR.md b/comfyui_embedded_docs/docs/LoraModelLoader/pt-BR.md index 2b77a05a4..e21bdc564 100644 --- a/comfyui_embedded_docs/docs/LoraModelLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoraModelLoader/pt-BR.md @@ -16,4 +16,4 @@ O nó LoraModelLoader aplica pesos LoRA (Low-Rank Adaptation) treinados a um mod | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo de difusão modificado com os pesos LoRA aplicados. | \ No newline at end of file +| `model` | MODEL | O modelo de difusão modificado com os pesos LoRA aplicados. | diff --git a/comfyui_embedded_docs/docs/LoraModelLoader/tr.md b/comfyui_embedded_docs/docs/LoraModelLoader/tr.md index 2d86f1735..471512ca4 100644 --- a/comfyui_embedded_docs/docs/LoraModelLoader/tr.md +++ b/comfyui_embedded_docs/docs/LoraModelLoader/tr.md @@ -16,4 +16,4 @@ LoraModelLoader düğümü, eğitilmiş LoRA (Düşük Dereceli Uyarlama) ağır | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | LoRA ağırlıkları uygulanmış, değiştirilmiş difüzyon modeli. | \ No newline at end of file +| `model` | MODEL | LoRA ağırlıkları uygulanmış, değiştirilmiş difüzyon modeli. | diff --git a/comfyui_embedded_docs/docs/LoraModelLoader/zh-TW.md b/comfyui_embedded_docs/docs/LoraModelLoader/zh-TW.md index 7035b39b8..f833e060b 100644 --- a/comfyui_embedded_docs/docs/LoraModelLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoraModelLoader/zh-TW.md @@ -16,4 +16,4 @@ LoraModelLoader 節點會將訓練過的 LoRA(低秩適應)權重應用至 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 LoRA 權重的修改後擴散模型。 | \ No newline at end of file +| `model` | MODEL | 已應用 LoRA 權重的修改後擴散模型。 | diff --git a/comfyui_embedded_docs/docs/LoraSave/ar.md b/comfyui_embedded_docs/docs/LoraSave/ar.md index fa2b6ed68..7c0192a10 100644 --- a/comfyui_embedded_docs/docs/LoraSave/ar.md +++ b/comfyui_embedded_docs/docs/LoraSave/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| - | - | تقوم هذه العقدة بحفظ ملف LoRA في دليل الإخراج ولكنها لا تُرجع أي بيانات عبر سير العمل | \ No newline at end of file +| - | - | تقوم هذه العقدة بحفظ ملف LoRA في دليل الإخراج ولكنها لا تُرجع أي بيانات عبر سير العمل | diff --git a/comfyui_embedded_docs/docs/LoraSave/pt-BR.md b/comfyui_embedded_docs/docs/LoraSave/pt-BR.md index b9e1f290b..d3f5888a8 100644 --- a/comfyui_embedded_docs/docs/LoraSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/LoraSave/pt-BR.md @@ -19,4 +19,4 @@ O nó LoraSave extrai e salva arquivos LoRA (Low-Rank Adaptation) a partir de di | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| - | - | Este nó salva um arquivo LoRA no diretório de saída, mas não retorna nenhum dado através do fluxo de trabalho | \ No newline at end of file +| - | - | Este nó salva um arquivo LoRA no diretório de saída, mas não retorna nenhum dado através do fluxo de trabalho | diff --git a/comfyui_embedded_docs/docs/LoraSave/tr.md b/comfyui_embedded_docs/docs/LoraSave/tr.md index a85539811..be48169fa 100644 --- a/comfyui_embedded_docs/docs/LoraSave/tr.md +++ b/comfyui_embedded_docs/docs/LoraSave/tr.md @@ -19,4 +19,4 @@ LoraSave düğümü, model farklılıklarından LoRA (Low-Rank Adaptation) dosya | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| - | - | Bu düğüm, bir LoRA dosyasını çıktı dizinine kaydeder ancak iş akışı üzerinden herhangi bir veri döndürmez | \ No newline at end of file +| - | - | Bu düğüm, bir LoRA dosyasını çıktı dizinine kaydeder ancak iş akışı üzerinden herhangi bir veri döndürmez | diff --git a/comfyui_embedded_docs/docs/LoraSave/zh-TW.md b/comfyui_embedded_docs/docs/LoraSave/zh-TW.md index efb74598e..e16c560f9 100644 --- a/comfyui_embedded_docs/docs/LoraSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/LoraSave/zh-TW.md @@ -19,4 +19,4 @@ LoraSave 節點從模型差異中提取並儲存 LoRA(低秩適應)檔案。 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| - | - | 此節點會將 LoRA 檔案儲存到輸出目錄,但不會透過工作流程返回任何資料 | \ No newline at end of file +| - | - | 此節點會將 LoRA 檔案儲存到輸出目錄,但不會透過工作流程返回任何資料 | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/ar.md b/comfyui_embedded_docs/docs/LossGraphNode/ar.md index b1cfd02ee..416fe3a54 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/ar.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `ui.images` | IMAGE | صورة الرسم البياني للخسارة المُنشأة والمحفوظة في الدليل المؤقت | \ No newline at end of file +| `ui.images` | IMAGE | صورة الرسم البياني للخسارة المُنشأة والمحفوظة في الدليل المؤقت | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/es.md b/comfyui_embedded_docs/docs/LossGraphNode/es.md index 43d19ec84..51744f70e 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/es.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/es.md @@ -15,4 +15,4 @@ El LossGraphNode crea un gráfico visual de los valores de pérdida de entrenami | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `ui.images` | IMAGE | La imagen del gráfico de pérdida generada guardada en el directorio temporal | \ No newline at end of file +| `ui.images` | IMAGE | La imagen del gráfico de pérdida generada guardada en el directorio temporal | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/fr.md b/comfyui_embedded_docs/docs/LossGraphNode/fr.md index 7d88880a8..05ac1cf06 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/fr.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/fr.md @@ -15,4 +15,4 @@ Le LossGraphNode crée un graphique visuel des valeurs de perte d'entraînement | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `ui.images` | IMAGE | L'image du graphique de perte générée enregistrée dans le répertoire temporaire | \ No newline at end of file +| `ui.images` | IMAGE | L'image du graphique de perte générée enregistrée dans le répertoire temporaire | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/ja.md b/comfyui_embedded_docs/docs/LossGraphNode/ja.md index 33886ec1b..3d16e00cc 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/ja.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/ja.md @@ -15,4 +15,4 @@ LossGraphNodeは、トレーニング損失値の経時変化を視覚的なグ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `ui.images` | IMAGE | 一時ディレクトリに保存された生成された損失グラフ画像 | \ No newline at end of file +| `ui.images` | IMAGE | 一時ディレクトリに保存された生成された損失グラフ画像 | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/ko.md b/comfyui_embedded_docs/docs/LossGraphNode/ko.md index 6b5ce7dfc..83be56589 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/ko.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/ko.md @@ -15,4 +15,4 @@ LossGraphNode는 훈련 손실 값의 시간에 따른 변화를 시각적인 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `ui.images` | IMAGE | 임시 디렉토리에 저장된 생성된 손실 그래프 이미지 | \ No newline at end of file +| `ui.images` | IMAGE | 임시 디렉토리에 저장된 생성된 손실 그래프 이미지 | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/pt-BR.md b/comfyui_embedded_docs/docs/LossGraphNode/pt-BR.md index f4e610ea5..0257efce7 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/pt-BR.md @@ -15,4 +15,4 @@ O LossGraphNode cria um gráfico visual dos valores de perda (loss) do treinamen | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `ui.images` | IMAGE | A imagem do gráfico de perda gerada, salva no diretório temporário | \ No newline at end of file +| `ui.images` | IMAGE | A imagem do gráfico de perda gerada, salva no diretório temporário | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/tr.md b/comfyui_embedded_docs/docs/LossGraphNode/tr.md index 1091c140d..99ed7abcb 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/tr.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/tr.md @@ -15,4 +15,4 @@ LossGraphNode, eğitim kayıp değerlerinin zaman içindeki değişimini görsel | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui.images` | IMAGE | Geçici dizine kaydedilen oluşturulmuş kayıp grafiği görüntüsü | \ No newline at end of file +| `ui.images` | IMAGE | Geçici dizine kaydedilen oluşturulmuş kayıp grafiği görüntüsü | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/zh-TW.md b/comfyui_embedded_docs/docs/LossGraphNode/zh-TW.md index e7562aef1..cc3f3beb4 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/zh-TW.md @@ -15,4 +15,4 @@ LossGraphNode 會建立訓練損失值隨時間變化的視覺化圖表,並將 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `ui.images` | IMAGE | 已儲存到臨時目錄的生成損失圖表影像 | \ No newline at end of file +| `ui.images` | IMAGE | 已儲存到臨時目錄的生成損失圖表影像 | diff --git a/comfyui_embedded_docs/docs/LossGraphNode/zh.md b/comfyui_embedded_docs/docs/LossGraphNode/zh.md index f51f6380a..6c8ac805f 100644 --- a/comfyui_embedded_docs/docs/LossGraphNode/zh.md +++ b/comfyui_embedded_docs/docs/LossGraphNode/zh.md @@ -15,4 +15,4 @@ LossGraphNode 可创建训练损失值随时间变化的可视化图表,并将 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `ui.images` | IMAGE | 已保存到临时目录的生成损失图表图像 | \ No newline at end of file +| `ui.images` | IMAGE | 已保存到临时目录的生成损失图表图像 | diff --git a/comfyui_embedded_docs/docs/LotusConditioning/ar.md b/comfyui_embedded_docs/docs/LotusConditioning/ar.md index 283fa6188..7d696a725 100644 --- a/comfyui_embedded_docs/docs/LotusConditioning/ar.md +++ b/comfyui_embedded_docs/docs/LotusConditioning/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | تضمينات التوجيه المُحسَّبة مسبقًا لنموذج Lotus، تحتوي على تضمينات أوامر ثابتة وقاموس فارغ. | \ No newline at end of file +| `conditioning` | CONDITIONING | تضمينات التوجيه المُحسَّبة مسبقًا لنموذج Lotus، تحتوي على تضمينات أوامر ثابتة وقاموس فارغ. | diff --git a/comfyui_embedded_docs/docs/LotusConditioning/pt-BR.md b/comfyui_embedded_docs/docs/LotusConditioning/pt-BR.md index 949229db8..1d91a7f91 100644 --- a/comfyui_embedded_docs/docs/LotusConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/LotusConditioning/pt-BR.md @@ -12,4 +12,4 @@ O nó LotusConditioning fornece embeddings de condicionamento pré-computados pa | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os embeddings de condicionamento pré-computados para o modelo Lotus, contendo embeddings de prompt fixos e um dicionário vazio. | \ No newline at end of file +| `conditioning` | CONDITIONING | Os embeddings de condicionamento pré-computados para o modelo Lotus, contendo embeddings de prompt fixos e um dicionário vazio. | diff --git a/comfyui_embedded_docs/docs/LotusConditioning/tr.md b/comfyui_embedded_docs/docs/LotusConditioning/tr.md index c45883f02..3e28b84f4 100644 --- a/comfyui_embedded_docs/docs/LotusConditioning/tr.md +++ b/comfyui_embedded_docs/docs/LotusConditioning/tr.md @@ -12,4 +12,4 @@ LotusConditioning düğümü, Lotus modeli için önceden hesaplanmış koşulla | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Lotus modeli için önceden hesaplanmış koşullandırma gömüleri; sabit prompt gömülerini ve boş bir sözlük içerir. | \ No newline at end of file +| `conditioning` | CONDITIONING | Lotus modeli için önceden hesaplanmış koşullandırma gömüleri; sabit prompt gömülerini ve boş bir sözlük içerir. | diff --git a/comfyui_embedded_docs/docs/LotusConditioning/zh-TW.md b/comfyui_embedded_docs/docs/LotusConditioning/zh-TW.md index 422c6bd88..9c370d0ac 100644 --- a/comfyui_embedded_docs/docs/LotusConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/LotusConditioning/zh-TW.md @@ -12,4 +12,4 @@ LotusConditioning 節點為 Lotus 模型提供預先計算的條件嵌入。它 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | 為 Lotus 模型預先計算的條件嵌入,包含固定的提示嵌入和一個空字典。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 為 Lotus 模型預先計算的條件嵌入,包含固定的提示嵌入和一個空字典。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ar.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ar.md index cc9ebb584..d62c056d6 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ar.md @@ -13,12 +13,13 @@ | `generate_audio` | BOOLEAN | لا | - | عند تفعيله (True)، سيتضمن الفيديو المُنشأ صوتًا مُولَّدًا بالذكاء الاصطناعي يتناسب مع المشهد (القيمة الافتراضية: False). | **قيود هامة:** -* يجب أن يحتوي مدخل `image` على صورة واحدة بالضبط. -* يجب أن يكون طول `prompt` بين 1 و 10,000 حرف. -* إذا اخترت `duration` أطول من 10 ثوانٍ، فيجب عليك استخدام نموذج **"LTX-2 (Fast)"** ودقة **"1920x1080"** و **25** إطارًا في الثانية. هذا المزيج مطلوب لمقاطع الفيديو الطويلة. + +* يجب أن يحتوي مدخل `image` على صورة واحدة بالضبط. +* يجب أن يكون طول `prompt` بين 1 و 10,000 حرف. +* إذا اخترت `duration` أطول من 10 ثوانٍ، فيجب عليك استخدام نموذج **"LTX-2 (Fast)"** ودقة **"1920x1080"** و **25** إطارًا في الثانية. هذا المزيج مطلوب لمقاطع الفيديو الطويلة. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `video` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/en.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/en.md index d0f42b152..d92049fb3 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/en.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/en.md @@ -15,12 +15,13 @@ The LTXV Image To Video node generates a professional-quality video from a singl | `generate_audio` | BOOLEAN | No | - | When true, the generated video will include AI-generated audio matching the scene (default: False). | **Important Constraints:** -* The `image` input must contain exactly one image. -* The `prompt` must be between 1 and 10,000 characters long. -* If you select a `duration` longer than 10 seconds, you must use the **"LTX-2 (Fast)"** model, a **"1920x1080"** resolution, and **25** FPS. This combination is required for longer videos. + +* The `image` input must contain exactly one image. +* The `prompt` must be between 1 and 10,000 characters long. +* If you select a `duration` longer than 10 seconds, you must use the **"LTX-2 (Fast)"** model, a **"1920x1080"** resolution, and **25** FPS. This combination is required for longer videos. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `video` | VIDEO | The generated video file. | \ No newline at end of file +| `video` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/es.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/es.md index d83b3cbfa..e4a52bb16 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/es.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/es.md @@ -15,12 +15,13 @@ El nodo LTXV Image To Video genera un video de calidad profesional a partir de u | `generate_audio` | BOOLEAN | No | - | Cuando es verdadero, el video generado incluirá audio generado por IA que coincide con la escena (por defecto: Falso). | **Restricciones Importantes:** -* La entrada `image` debe contener exactamente una imagen. -* El `prompt` debe tener entre 1 y 10,000 caracteres de longitud. -* Si selecciona una `duration` mayor a 10 segundos, debe usar el modelo **"LTX-2 (Fast)"**, una resolución de **"1920x1080"** y **25** FPS. Esta combinación es obligatoria para videos más largos. + +* La entrada `image` debe contener exactamente una imagen. +* El `prompt` debe tener entre 1 y 10,000 caracteres de longitud. +* Si selecciona una `duration` mayor a 10 segundos, debe usar el modelo **"LTX-2 (Fast)"**, una resolución de **"1920x1080"** y **25** FPS. Esta combinación es obligatoria para videos más largos. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `video` | VIDEO | El archivo de video generado. | \ No newline at end of file +| `video` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/fr.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/fr.md index 059ffb911..9a4efc824 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/fr.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/fr.md @@ -15,12 +15,13 @@ Le nœud LTXV Image To Video génère une vidéo de qualité professionnelle à | `generate_audio` | BOOLEAN | Non | - | Lorsque vrai, la vidéo générée inclura un audio généré par IA correspondant à la scène (par défaut : Faux). | **Contraintes importantes :** -* L'entrée `image` doit contenir exactement une image. -* Le `prompt` doit comporter entre 1 et 10 000 caractères. -* Si vous sélectionnez une `duration` supérieure à 10 secondes, vous devez utiliser le modèle **"LTX-2 (Fast)"**, une résolution **"1920x1080"** et **25** FPS. Cette combinaison est requise pour les vidéos plus longues. + +* L'entrée `image` doit contenir exactement une image. +* Le `prompt` doit comporter entre 1 et 10 000 caractères. +* Si vous sélectionnez une `duration` supérieure à 10 secondes, vous devez utiliser le modèle **"LTX-2 (Fast)"**, une résolution **"1920x1080"** et **25** FPS. Cette combinaison est requise pour les vidéos plus longues. ## Sorties | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `video` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `video` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ja.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ja.md index b86bdc59c..f46d71df6 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ja.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ja.md @@ -15,12 +15,13 @@ LTXV Image To Videoノードは、単一の開始画像からプロ品質の動 | `generate_audio` | BOOLEAN | いいえ | - | Trueに設定すると、生成される動画にシーンに合ったAI生成のオーディオが含まれます(デフォルト: False)。 | **重要な制約事項:** -* `image`入力には、正確に1枚の画像が含まれている必要があります。 -* `prompt`は1文字以上10,000文字以下である必要があります。 -* 10秒を超える`duration`を選択する場合、**"LTX-2 (Fast)"** モデル、**"1920x1080"** 解像度、および **25** FPSを使用する必要があります。この組み合わせは長い動画に必須です。 + +* `image`入力には、正確に1枚の画像が含まれている必要があります。 +* `prompt`は1文字以上10,000文字以下である必要があります。 +* 10秒を超える`duration`を選択する場合、**"LTX-2 (Fast)"** モデル、**"1920x1080"** 解像度、および **25** FPSを使用する必要があります。この組み合わせは長い動画に必須です。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成された動画ファイル。 | \ No newline at end of file +| `video` | VIDEO | 生成された動画ファイル。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ko.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ko.md index bd3bb6e26..b07c988a5 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ko.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ko.md @@ -15,12 +15,13 @@ LTXV Image To Video 노드는 단일 시작 이미지에서 전문적인 품질 | `generate_audio` | BOOLEAN | 아니요 | - | true로 설정하면 생성된 동영상에 장면과 일치하는 AI 생성 오디오가 포함됩니다 (기본값: False). | **중요 제약 사항:** -* `image` 입력은 정확히 하나의 이미지를 포함해야 합니다. -* `prompt`는 1자에서 10,000자 사이여야 합니다. -* 10초보다 긴 `duration`을 선택하는 경우, **"LTX-2 (Fast)"** 모델, **"1920x1080"** 해상도 및 **25** FPS를 사용해야 합니다. 이 조합은 긴 동영상에 필요합니다. + +* `image` 입력은 정확히 하나의 이미지를 포함해야 합니다. +* `prompt`는 1자에서 10,000자 사이여야 합니다. +* 10초보다 긴 `duration`을 선택하는 경우, **"LTX-2 (Fast)"** 모델, **"1920x1080"** 해상도 및 **25** FPS를 사용해야 합니다. 이 조합은 긴 동영상에 필요합니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `video` | VIDEO | 생성된 동영상 파일입니다. | \ No newline at end of file +| `video` | VIDEO | 생성된 동영상 파일입니다. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/pt-BR.md index 5fcde4c21..3e45ffdb7 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/pt-BR.md @@ -15,12 +15,13 @@ O nó LTXV Image To Video gera um vídeo de qualidade profissional a partir de u | `generate_audio` | BOOLEAN | Não | - | Quando verdadeiro, o vídeo gerado incluirá áudio gerado por IA que combina com a cena (padrão: Falso). | **Restrições Importantes:** -* A entrada `image` deve conter exatamente uma imagem. -* O `prompt` deve ter entre 1 e 10.000 caracteres. -* Se você selecionar uma `duration` maior que 10 segundos, deverá usar o modelo **"LTX-2 (Fast)"**, a resolução **"1920x1080"** e **25** FPS. Esta combinação é obrigatória para vídeos mais longos. + +* A entrada `image` deve conter exatamente uma imagem. +* O `prompt` deve ter entre 1 e 10.000 caracteres. +* Se você selecionar uma `duration` maior que 10 segundos, deverá usar o modelo **"LTX-2 (Fast)"**, a resolução **"1920x1080"** e **25** FPS. Esta combinação é obrigatória para vídeos mais longos. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `video` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ru.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ru.md index 66be8f62e..ddff35278 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ru.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/ru.md @@ -15,12 +15,13 @@ | `generate_audio` | BOOLEAN | Нет | - | Если установлено в true, сгенерированное видео будет включать созданный ИИ звук, соответствующий сцене (по умолчанию: False). | **Важные ограничения:** -* Входной параметр `image` должен содержать ровно одно изображение. -* Промпт `prompt` должен содержать от 1 до 10 000 символов. -* Если вы выбрали `duration` длиннее 10 секунд, вы должны использовать модель **"LTX-2 (Fast)"**, разрешение **"1920x1080"** и частоту кадров **25** FPS. Эта комбинация обязательна для более длинных видео. + +* Входной параметр `image` должен содержать ровно одно изображение. +* Промпт `prompt` должен содержать от 1 до 10 000 символов. +* Если вы выбрали `duration` длиннее 10 секунд, вы должны использовать модель **"LTX-2 (Fast)"**, разрешение **"1920x1080"** и частоту кадров **25** FPS. Эта комбинация обязательна для более длинных видео. ## Выходные данные | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `video` | VIDEO | Сгенерированный видеофайл. | \ No newline at end of file +| `video` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/tr.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/tr.md index bb9a81178..945ec78d0 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/tr.md @@ -15,12 +15,13 @@ LTXV Image To Video düğümü, tek bir başlangıç görselinden profesyonel ka | `generate_audio` | BOOLEAN | Hayır | - | True olduğunda, oluşturulan video sahneye uyan AI tarafından üretilmiş sesi içerecektir (varsayılan: False). | **Önemli Kısıtlamalar:** -* `image` girişi tam olarak bir görsel içermelidir. -* `prompt` 1 ile 10.000 karakter arasında bir uzunlukta olmalıdır. -* 10 saniyeden uzun bir `duration` seçerseniz, **"LTX-2 (Hızlı)"** modelini, **"1920x1080"** çözünürlüğünü ve **25** FPS değerini kullanmalısınız. Bu kombinasyon daha uzun videolar için gereklidir. + +* `image` girişi tam olarak bir görsel içermelidir. +* `prompt` 1 ile 10.000 karakter arasında bir uzunlukta olmalıdır. +* 10 saniyeden uzun bir `duration` seçerseniz, **"LTX-2 (Hızlı)"** modelini, **"1920x1080"** çözünürlüğünü ve **25** FPS değerini kullanmalısınız. Bu kombinasyon daha uzun videolar için gereklidir. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `video` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh-TW.md index c064dc97a..f0b3ba6bd 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh-TW.md @@ -15,12 +15,13 @@ LTXV 圖片轉影片節點能從單張起始圖片生成專業品質的影片。 | `generate_audio` | BOOLEAN | 否 | - | 設為 true 時,生成的影片將包含與場景匹配的 AI 生成音訊(預設值:False)。 | **重要限制:** -* `image` 輸入必須恰好包含一張圖片。 -* `prompt` 的長度必須在 1 到 10,000 個字元之間。 -* 如果您選擇的 `duration` 超過 10 秒,則必須使用 **"LTX-2 (Fast)"** 模型、**"1920x1080"** 解析度和 **25** FPS。此組合是生成較長影片的必要條件。 + +* `image` 輸入必須恰好包含一張圖片。 +* `prompt` 的長度必須在 1 到 10,000 個字元之間。 +* 如果您選擇的 `duration` 超過 10 秒,則必須使用 **"LTX-2 (Fast)"** 模型、**"1920x1080"** 解析度和 **25** FPS。此組合是生成較長影片的必要條件。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `video` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh.md b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh.md index b595ab399..2dc2087e4 100644 --- a/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh.md +++ b/comfyui_embedded_docs/docs/LtxvApiImageToVideo/zh.md @@ -15,12 +15,13 @@ LTXV 图像转视频节点能够从单张起始图像生成专业质量的视频 | `generate_audio` | BOOLEAN | 否 | - | 为 True 时,生成的视频将包含与场景匹配的 AI 生成音频(默认值:False)。 | **重要限制:** -* `image` 输入必须恰好包含一张图像。 -* `prompt` 的长度必须在 1 到 10,000 个字符之间。 -* 如果您选择的 `duration` 超过 10 秒,则必须使用 **"LTX-2 (Fast)"** 模型、**"1920x1080"** 分辨率和 **25** FPS。此组合是生成长视频的必要条件。 + +* `image` 输入必须恰好包含一张图像。 +* `prompt` 的长度必须在 1 到 10,000 个字符之间。 +* 如果您选择的 `duration` 超过 10 秒,则必须使用 **"LTX-2 (Fast)"** 模型、**"1920x1080"** 分辨率和 **25** FPS。此组合是生成长视频的必要条件。 ## 输出结果 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `video` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ar.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ar.md index 35e4733eb..f02262ee8 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ar.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ar.md @@ -12,11 +12,12 @@ | `generate_audio` | BOOLEAN | لا | - | عند التمكين، سيتضمن الفيديو المُنشأ صوتًا مُولّدًا بالذكاء الاصطناعي يتناسب مع المشهد (القيمة الافتراضية: False). | **قيود مهمة:** -* يجب أن يكون طول النص في `prompt` بين 1 و 10,000 حرف. -* إذا اخترت `duration` أكبر من 10 ثوانٍ، فيجب عليك أيضًا استخدام نموذج `"LTX-2 (Fast)"` ودقة `"1920x1080"` و `fps` بقيمة `25`. هذا المزيج مطلوب لمقاطع الفيديو الأطول. + +* يجب أن يكون طول النص في `prompt` بين 1 و 10,000 حرف. +* إذا اخترت `duration` أكبر من 10 ثوانٍ، فيجب عليك أيضًا استخدام نموذج `"LTX-2 (Fast)"` ودقة `"1920x1080"` و `fps` بقيمة `25`. هذا المزيج مطلوب لمقاطع الفيديو الأطول. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/en.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/en.md index b3342a794..d74f4684f 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/en.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/en.md @@ -14,11 +14,12 @@ The LTXV Text To Video node generates professional-quality videos from a text de | `generate_audio` | BOOLEAN | No | - | When enabled, the generated video will include AI-generated audio matching the scene (default: False). | **Important Constraints:** -* The `prompt` must be between 1 and 10,000 characters long. -* If you select a `duration` greater than 10 seconds, you must also use the `"LTX-2 (Fast)"` model, a resolution of `"1920x1080"`, and an `fps` of `25`. This combination is required for longer videos. + +* The `prompt` must be between 1 and 10,000 characters long. +* If you select a `duration` greater than 10 seconds, you must also use the `"LTX-2 (Fast)"` model, a resolution of `"1920x1080"`, and an `fps` of `25`. This combination is required for longer videos. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video file. | \ No newline at end of file +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/es.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/es.md index 7b4c36c34..360001016 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/es.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/es.md @@ -14,11 +14,12 @@ El nodo LTXV Text To Video genera videos de calidad profesional a partir de una | `generate_audio` | BOOLEAN | No | - | Cuando está habilitado, el video generado incluirá audio generado por IA que coincida con la escena (por defecto: Falso). | **Restricciones Importantes:** -* El `prompt` debe tener entre 1 y 10,000 caracteres de longitud. -* Si seleccionas una `duration` mayor a 10 segundos, también debes usar el modelo `"LTX-2 (Fast)"`, una resolución de `"1920x1080"` y un `fps` de `25`. Esta combinación es obligatoria para videos más largos. + +* El `prompt` debe tener entre 1 y 10,000 caracteres de longitud. +* Si seleccionas una `duration` mayor a 10 segundos, también debes usar el modelo `"LTX-2 (Fast)"`, una resolución de `"1920x1080"` y un `fps` de `25`. Esta combinación es obligatoria para videos más largos. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de video generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/fr.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/fr.md index 2b0d6891a..e8ca69d22 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/fr.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/fr.md @@ -12,11 +12,12 @@ | `generate_audio` | BOOLEAN | Non | - | Lorsqu'activé, la vidéo générée inclura un audio généré par IA correspondant à la scène (par défaut : Faux). | **Contraintes importantes :** -* Le `prompt` doit contenir entre 1 et 10 000 caractères. -* Si vous sélectionnez une `duration` supérieure à 10 secondes, vous devez également utiliser le modèle `"LTX-2 (Fast)"`, une résolution de `"1920x1080"` et un `fps` de `25`. Cette combinaison est requise pour les vidéos plus longues. + +* Le `prompt` doit contenir entre 1 et 10 000 caractères. +* Si vous sélectionnez une `duration` supérieure à 10 secondes, vous devez également utiliser le modèle `"LTX-2 (Fast)"`, une résolution de `"1920x1080"` et un `fps` de `25`. Cette combinaison est requise pour les vidéos plus longues. ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ja.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ja.md index 3b63bece2..428161480 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ja.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ja.md @@ -14,11 +14,12 @@ LTXV Text To Video ノードは、テキストの説明からプロ品質の動 | `generate_audio` | BOOLEAN | いいえ | - | 有効にすると、生成された動画にシーンに合ったAI生成の音声が含まれます(デフォルト: False)。 | **重要な制約事項:** -* `prompt` は1文字以上10,000文字以下である必要があります。 -* `duration` に10秒より長い値を選択した場合、`"LTX-2 (Fast)"` モデル、`"1920x1080"` の解像度、`25` の `fps` を併用する必要があります。この組み合わせは長い動画に必須です。 + +* `prompt` は1文字以上10,000文字以下である必要があります。 +* `duration` に10秒より長い値を選択した場合、`"LTX-2 (Fast)"` モデル、`"1920x1080"` の解像度、`25` の `fps` を併用する必要があります。この組み合わせは長い動画に必須です。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成された動画ファイルです。 | \ No newline at end of file +| `output` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ko.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ko.md index 73e3e2830..5e7ba8e4f 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ko.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ko.md @@ -14,11 +14,12 @@ LTXV 텍스트-비디오 노드는 텍스트 설명으로 전문가 수준의 | `generate_audio` | BOOLEAN | 아니요 | - | 활성화하면 생성된 비디오에 장면과 일치하는 AI 생성 오디오가 포함됩니다 (기본값: False). | **중요 제약사항:** -* `prompt`는 1자에서 10,000자 사이여야 합니다. -* `duration`을 10초보다 길게 선택한 경우, 반드시 `"LTX-2 (Fast)"` 모델, `"1920x1080"` 해상도 및 `fps` 값 `25`를 함께 사용해야 합니다. 이 조합은 긴 비디오에 필수적입니다. + +* `prompt`는 1자에서 10,000자 사이여야 합니다. +* `duration`을 10초보다 길게 선택한 경우, 반드시 `"LTX-2 (Fast)"` 모델, `"1920x1080"` 해상도 및 `fps` 값 `25`를 함께 사용해야 합니다. 이 조합은 긴 비디오에 필수적입니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 생성된 비디오 파일입니다. | \ No newline at end of file +| `output` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/pt-BR.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/pt-BR.md index 571fac622..fa30028eb 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/pt-BR.md @@ -14,11 +14,12 @@ O nó LTXV Text To Video gera vídeos de qualidade profissional a partir de uma | `generate_audio` | BOOLEAN | Não | - | Quando ativado, o vídeo gerado incluirá áudio gerado por IA que combina com a cena (padrão: Falso). | **Restrições Importantes:** -* O `prompt` deve ter entre 1 e 10.000 caracteres. -* Se você selecionar uma `duration` maior que 10 segundos, também deverá usar o modelo `"LTX-2 (Fast)"`, uma resolução de `"1920x1080"` e um `fps` de `25`. Esta combinação é obrigatória para vídeos mais longos. + +* O `prompt` deve ter entre 1 e 10.000 caracteres. +* Se você selecionar uma `duration` maior que 10 segundos, também deverá usar o modelo `"LTX-2 (Fast)"`, uma resolução de `"1920x1080"` e um `fps` de `25`. Esta combinação é obrigatória para vídeos mais longos. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ru.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ru.md index e772d3604..78c01cfbb 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ru.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/ru.md @@ -14,11 +14,12 @@ | `generate_audio` | BOOLEAN | Нет | - | При включении в сгенерированное видео будет добавлено аудио, созданное искусственным интеллектом и соответствующее сцене (по умолчанию: False). | **Важные ограничения:** -* Длина `prompt` должна составлять от 1 до 10 000 символов. -* Если выбрана `duration` больше 10 секунд, необходимо также использовать модель `"LTX-2 (Fast)"`, разрешение `"1920x1080"` и `fps` равный `25`. Эта комбинация обязательна для создания длинных видео. + +* Длина `prompt` должна составлять от 1 до 10 000 символов. +* Если выбрана `duration` больше 10 секунд, необходимо также использовать модель `"LTX-2 (Fast)"`, разрешение `"1920x1080"` и `fps` равный `25`. Эта комбинация обязательна для создания длинных видео. ## Выходные данные | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированный видеофайл. | \ No newline at end of file +| `output` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/tr.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/tr.md index 8132ceadf..52cd5705b 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/tr.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/tr.md @@ -14,11 +14,12 @@ LTXV Metinden Videoya düğümü, metin açıklamasından profesyonel kalitede v | `generate_audio` | BOOLEAN | Hayır | - | Etkinleştirildiğinde, oluşturulan video sahneye uyan AI tarafından oluşturulmuş ses içerecektir (varsayılan: False). | **Önemli Kısıtlamalar:** -* `prompt` 1 ile 10.000 karakter arasında olmalıdır. -* 10 saniyeden uzun bir `duration` seçerseniz, aynı zamanda `"LTX-2 (Hızlı)"` modelini, `"1920x1080"` çözünürlüğünü ve `25` `fps` değerini kullanmalısınız. Bu kombinasyon daha uzun videolar için gereklidir. + +* `prompt` 1 ile 10.000 karakter arasında olmalıdır. +* 10 saniyeden uzun bir `duration` seçerseniz, aynı zamanda `"LTX-2 (Hızlı)"` modelini, `"1920x1080"` çözünürlüğünü ve `25` `fps` değerini kullanmalısınız. Bu kombinasyon daha uzun videolar için gereklidir. ## Çıktılar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh-TW.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh-TW.md index a758d18bf..110942c70 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh-TW.md @@ -14,11 +14,12 @@ LTXV Text To Video 節點能根據文字描述生成專業品質的影片。它 | `generate_audio` | BOOLEAN | 否 | - | 啟用後,生成的影片將包含與場景匹配的 AI 生成音訊(預設值:False)。 | **重要限制:** -* `prompt` 的長度必須介於 1 到 10,000 個字元之間。 -* 如果您選擇的 `duration` 超過 10 秒,則必須同時使用 `"LTX-2 (Fast)"` 模型、`"1920x1080"` 的解析度以及 `25` 的 `fps`。此組合是生成較長影片的必要條件。 + +* `prompt` 的長度必須介於 1 到 10,000 個字元之間。 +* 如果您選擇的 `duration` 超過 10 秒,則必須同時使用 `"LTX-2 (Fast)"` 模型、`"1920x1080"` 的解析度以及 `25` 的 `fps`。此組合是生成較長影片的必要條件。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh.md b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh.md index d515bd0dc..7d32e5cf1 100644 --- a/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh.md +++ b/comfyui_embedded_docs/docs/LtxvApiTextToVideo/zh.md @@ -16,11 +16,12 @@ LTXV Text To Video 节点能够根据文本描述生成专业质量的视频。 | `generate_audio` | BOOLEAN | 否 | - | 启用后,生成的视频将包含与场景匹配的 AI 生成音频(默认:False)。 | **重要限制:** -* `prompt` 的长度必须在 1 到 10,000 个字符之间。 -* 如果您选择的 `duration` 大于 10 秒,则必须同时使用 `"LTX-2 (Fast)"` 模型、`"1920x1080"` 分辨率和 `25` 的 `fps`。此组合是生成长视频的必要条件。 + +* `prompt` 的长度必须在 1 到 10,000 个字符之间。 +* 如果您选择的 `duration` 大于 10 秒,则必须同时使用 `"LTX-2 (Fast)"` 模型、`"1920x1080"` 分辨率和 `25` 的 `fps`。此组合是生成长视频的必要条件。 ## 输出 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/LumaConceptsNode/ar.md b/comfyui_embedded_docs/docs/LumaConceptsNode/ar.md index 436b48634..f68497393 100644 --- a/comfyui_embedded_docs/docs/LumaConceptsNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaConceptsNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `مفاهيم لومة` | LUMA_CONCEPTS | سلسلة مفاهيم الكاميرا المجمعة التي تحتوي على جميع المفاهيم المحددة | \ No newline at end of file +| `مفاهيم لومة` | LUMA_CONCEPTS | سلسلة مفاهيم الكاميرا المجمعة التي تحتوي على جميع المفاهيم المحددة | diff --git a/comfyui_embedded_docs/docs/LumaConceptsNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaConceptsNode/pt-BR.md index 2f66cd978..260ddbaaa 100644 --- a/comfyui_embedded_docs/docs/LumaConceptsNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaConceptsNode/pt-BR.md @@ -18,4 +18,4 @@ Armazena um ou mais Conceitos de Câmera para uso com os nós Luma Text to Video | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `luma_concepts` | LUMA_CONCEPTS | Cadeia de conceitos de câmera combinada contendo todos os conceitos selecionados | \ No newline at end of file +| `luma_concepts` | LUMA_CONCEPTS | Cadeia de conceitos de câmera combinada contendo todos os conceitos selecionados | diff --git a/comfyui_embedded_docs/docs/LumaConceptsNode/tr.md b/comfyui_embedded_docs/docs/LumaConceptsNode/tr.md index 017bf1d8c..47a59be45 100644 --- a/comfyui_embedded_docs/docs/LumaConceptsNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaConceptsNode/tr.md @@ -18,4 +18,4 @@ Luma Text to Video ve Luma Image to Video düğümleriyle kullanılmak üzere bi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `luma_kavramları` | LUMA_CONCEPTS | Seçilen tüm konseptleri içeren birleştirilmiş kamera konsepti zinciri | \ No newline at end of file +| `luma_kavramları` | LUMA_CONCEPTS | Seçilen tüm konseptleri içeren birleştirilmiş kamera konsepti zinciri | diff --git a/comfyui_embedded_docs/docs/LumaConceptsNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaConceptsNode/zh-TW.md index 49f14ef2e..7328f8ea0 100644 --- a/comfyui_embedded_docs/docs/LumaConceptsNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaConceptsNode/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `luma_concepts` | LUMA_CONCEPTS | 包含所有選定概念的組合攝影機概念鏈 | \ No newline at end of file +| `luma_concepts` | LUMA_CONCEPTS | 包含所有選定概念的組合攝影機概念鏈 | diff --git a/comfyui_embedded_docs/docs/LumaImageModifyNode/ar.md b/comfyui_embedded_docs/docs/LumaImageModifyNode/ar.md index f0e51954a..022ef6d03 100644 --- a/comfyui_embedded_docs/docs/LumaImageModifyNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaImageModifyNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `صورة` | IMAGE | الصورة المعدلة التي تم إنشاؤها بواسطة نموذج Luma | \ No newline at end of file +| `صورة` | IMAGE | الصورة المعدلة التي تم إنشاؤها بواسطة نموذج Luma | diff --git a/comfyui_embedded_docs/docs/LumaImageModifyNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaImageModifyNode/pt-BR.md index 4a7194030..e92e18967 100644 --- a/comfyui_embedded_docs/docs/LumaImageModifyNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaImageModifyNode/pt-BR.md @@ -16,4 +16,4 @@ Modifica imagens de forma síncrona com base em um prompt e na proporção de as | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem modificada gerada pelo modelo Luma | \ No newline at end of file +| `image` | IMAGE | A imagem modificada gerada pelo modelo Luma | diff --git a/comfyui_embedded_docs/docs/LumaImageModifyNode/tr.md b/comfyui_embedded_docs/docs/LumaImageModifyNode/tr.md index 6afb6c564..532e669fb 100644 --- a/comfyui_embedded_docs/docs/LumaImageModifyNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaImageModifyNode/tr.md @@ -16,4 +16,4 @@ Görüntüleri eşzamanlı olarak prompt ve en-boy oranına dayalı şekilde de | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Luma modeli tarafından oluşturulan değiştirilmiş görüntü | \ No newline at end of file +| `görüntü` | IMAGE | Luma modeli tarafından oluşturulan değiştirilmiş görüntü | diff --git a/comfyui_embedded_docs/docs/LumaImageModifyNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaImageModifyNode/zh-TW.md index 1b76df1e8..ee8f60f04 100644 --- a/comfyui_embedded_docs/docs/LumaImageModifyNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaImageModifyNode/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 由Luma模型生成的修改後圖像 | \ No newline at end of file +| `影像` | IMAGE | 由Luma模型生成的修改後圖像 | diff --git a/comfyui_embedded_docs/docs/LumaImageNode/ar.md b/comfyui_embedded_docs/docs/LumaImageNode/ar.md index 8c4bfbf7f..46b942253 100644 --- a/comfyui_embedded_docs/docs/LumaImageNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaImageNode/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | الصورة المُنشأة استنادًا إلى المعاملات المدخلة | \ No newline at end of file +| `output` | IMAGE | الصورة المُنشأة استنادًا إلى المعاملات المدخلة | diff --git a/comfyui_embedded_docs/docs/LumaImageNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaImageNode/pt-BR.md index 5134f560a..dbcd2e3b5 100644 --- a/comfyui_embedded_docs/docs/LumaImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaImageNode/pt-BR.md @@ -26,4 +26,4 @@ Gera imagens de forma síncrona com base em um prompt e em uma proporção de as | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem gerada com base nos parâmetros de entrada | \ No newline at end of file +| `output` | IMAGE | A imagem gerada com base nos parâmetros de entrada | diff --git a/comfyui_embedded_docs/docs/LumaImageNode/tr.md b/comfyui_embedded_docs/docs/LumaImageNode/tr.md index d49906eb7..7d8aff06d 100644 --- a/comfyui_embedded_docs/docs/LumaImageNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaImageNode/tr.md @@ -26,4 +26,4 @@ Görüntüleri eşzamanlı olarak prompt ve en-boy oranına dayalı olarak oluş | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görüntü | \ No newline at end of file +| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/LumaImageNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaImageNode/zh-TW.md index 91daa0824..f2b6fecab 100644 --- a/comfyui_embedded_docs/docs/LumaImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaImageNode/zh-TW.md @@ -26,4 +26,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 根據輸入參數生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 根據輸入參數生成的圖像 | diff --git a/comfyui_embedded_docs/docs/LumaImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/LumaImageToVideoNode/ar.md index ad306309f..54b8144e8 100644 --- a/comfyui_embedded_docs/docs/LumaImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaImageToVideoNode/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/LumaImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaImageToVideoNode/pt-BR.md index af81137a7..beb304a17 100644 --- a/comfyui_embedded_docs/docs/LumaImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaImageToVideoNode/pt-BR.md @@ -22,4 +22,4 @@ Gera vídeos de forma síncrona com base em um prompt, imagens de entrada e um t | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/LumaImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/LumaImageToVideoNode/tr.md index 7f373b96a..d7b7898ef 100644 --- a/comfyui_embedded_docs/docs/LumaImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaImageToVideoNode/tr.md @@ -22,4 +22,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/LumaImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaImageToVideoNode/zh-TW.md index d1b9c0622..8eb0ee60e 100644 --- a/comfyui_embedded_docs/docs/LumaImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaImageToVideoNode/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/LumaReferenceNode/ar.md b/comfyui_embedded_docs/docs/LumaReferenceNode/ar.md index bb1ea8fc4..8cf99e1c9 100644 --- a/comfyui_embedded_docs/docs/LumaReferenceNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaReferenceNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `مرجع لومة` | LUMA_REF | سلسلة المراجع Luma التي تحتوي على الصورة والوزن. | \ No newline at end of file +| `مرجع لومة` | LUMA_REF | سلسلة المراجع Luma التي تحتوي على الصورة والوزن. | diff --git a/comfyui_embedded_docs/docs/LumaReferenceNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaReferenceNode/pt-BR.md index 47806959a..9d99c8d18 100644 --- a/comfyui_embedded_docs/docs/LumaReferenceNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaReferenceNode/pt-BR.md @@ -14,4 +14,4 @@ Este nó mantém uma imagem e um valor de peso para uso com o nó Luma Generate | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `luma_ref` | LUMA_REF | A cadeia de referência Luma contendo a imagem e o peso. | \ No newline at end of file +| `luma_ref` | LUMA_REF | A cadeia de referência Luma contendo a imagem e o peso. | diff --git a/comfyui_embedded_docs/docs/LumaReferenceNode/tr.md b/comfyui_embedded_docs/docs/LumaReferenceNode/tr.md index 28d5da82e..7a033a6fb 100644 --- a/comfyui_embedded_docs/docs/LumaReferenceNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaReferenceNode/tr.md @@ -14,4 +14,4 @@ Bu düğüm, Luma Görüntü Oluştur düğümüyle kullanılmak üzere bir gör | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `luma_referansı` | LUMA_REF | Görüntüyü ve ağırlığı içeren Luma referans zinciri. | \ No newline at end of file +| `luma_referansı` | LUMA_REF | Görüntüyü ve ağırlığı içeren Luma referans zinciri. | diff --git a/comfyui_embedded_docs/docs/LumaReferenceNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaReferenceNode/zh-TW.md index 15fb7f0e2..10cfc66a7 100644 --- a/comfyui_embedded_docs/docs/LumaReferenceNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaReferenceNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `luma_ref` | LUMA_REF | 包含影像和權重的 Luma 參考鏈。 | \ No newline at end of file +| `luma_ref` | LUMA_REF | 包含影像和權重的 Luma 參考鏈。 | diff --git a/comfyui_embedded_docs/docs/LumaVideoNode/ar.md b/comfyui_embedded_docs/docs/LumaVideoNode/ar.md index 26c400a20..c1b6aaa96 100644 --- a/comfyui_embedded_docs/docs/LumaVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/LumaVideoNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/LumaVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/LumaVideoNode/pt-BR.md index 49247e67b..a568c8479 100644 --- a/comfyui_embedded_docs/docs/LumaVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/LumaVideoNode/pt-BR.md @@ -21,4 +21,4 @@ Gera vídeos de forma síncrona com base no prompt e nas configurações de saí | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/LumaVideoNode/tr.md b/comfyui_embedded_docs/docs/LumaVideoNode/tr.md index 2cc5dfff7..fcfc76f39 100644 --- a/comfyui_embedded_docs/docs/LumaVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/LumaVideoNode/tr.md @@ -21,4 +21,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/LumaVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/LumaVideoNode/zh-TW.md index 64dce5c1f..77b054e27 100644 --- a/comfyui_embedded_docs/docs/LumaVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/LumaVideoNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/Mahiro/ar.md b/comfyui_embedded_docs/docs/Mahiro/ar.md index f86ec25b6..ea7ab5216 100644 --- a/comfyui_embedded_docs/docs/Mahiro/ar.md +++ b/comfyui_embedded_docs/docs/Mahiro/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `patched_model` | MODEL | النموذج المعدّل بعد تطبيق وظيفة توجيه Mahiro عليه | \ No newline at end of file +| `patched_model` | MODEL | النموذج المعدّل بعد تطبيق وظيفة توجيه Mahiro عليه | diff --git a/comfyui_embedded_docs/docs/Mahiro/pt-BR.md b/comfyui_embedded_docs/docs/Mahiro/pt-BR.md index 5b8d0fcb6..dc82c2786 100644 --- a/comfyui_embedded_docs/docs/Mahiro/pt-BR.md +++ b/comfyui_embedded_docs/docs/Mahiro/pt-BR.md @@ -12,4 +12,4 @@ O nó Mahiro modifica a função de orientação (guidance) para focar mais na d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `patched_model` | MODEL | O modelo modificado com a função de orientação Mahiro aplicada | \ No newline at end of file +| `patched_model` | MODEL | O modelo modificado com a função de orientação Mahiro aplicada | diff --git a/comfyui_embedded_docs/docs/Mahiro/tr.md b/comfyui_embedded_docs/docs/Mahiro/tr.md index 26e08baef..be5bbf836 100644 --- a/comfyui_embedded_docs/docs/Mahiro/tr.md +++ b/comfyui_embedded_docs/docs/Mahiro/tr.md @@ -12,4 +12,4 @@ Mahiro düğümü, kılavuzlama işlevini, pozitif ve negatif prompt'lar arasın | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `patched_model` | MODEL | Mahiro kılavuzlama işlevi uygulanmış değiştirilmiş model | \ No newline at end of file +| `patched_model` | MODEL | Mahiro kılavuzlama işlevi uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/Mahiro/zh-TW.md b/comfyui_embedded_docs/docs/Mahiro/zh-TW.md index 0828df276..3cb5848de 100644 --- a/comfyui_embedded_docs/docs/Mahiro/zh-TW.md +++ b/comfyui_embedded_docs/docs/Mahiro/zh-TW.md @@ -12,4 +12,4 @@ Mahiro 節點修改了引導函數,使其更專注於正向提示詞的方向 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 已應用 Mahiro 引導函數的修改後模型 | \ No newline at end of file +| `patched_model` | MODEL | 已應用 Mahiro 引導函數的修改後模型 | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/ar.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/ar.md index e4e25cf2e..416897189 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/ar.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/ar.md @@ -12,11 +12,12 @@ | `texts` | STRING | لا | N/A | قائمة النصوص التوضيحية. يمكن أن يكون طولها n (مطابق لعدد الصور)، أو 1 (يُكرر لجميع الصور)، أو يمكن حذفها (يستخدم نصًا فارغًا). | **قيود المعاملات:** -* يجب أن يكون عدد العناصر في قائمة `texts` إما 0، أو 1، أو مساويًا تمامًا لعدد العناصر في قائمة `images`. إذا كان 0، يُستخدم نص فارغ لجميع الصور. إذا كان 1، يُكرر ذلك النص الواحد لجميع الصور. + +* يجب أن يكون عدد العناصر في قائمة `texts` إما 0، أو 1، أو مساويًا تمامًا لعدد العناصر في قائمة `images`. إذا كان 0، يُستخدم نص فارغ لجميع الصور. إذا كان 1، يُكرر ذلك النص الواحد لجميع الصور. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `latents` | LATENT | قائمة من القواميس للتمثيلات الكامنة. | -| `conditioning` | CONDITIONING | قائمة من قوائم التكييف. | \ No newline at end of file +| `conditioning` | CONDITIONING | قائمة من قوائم التكييف. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/en.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/en.md index c5b812071..12f12fe46 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/en.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/en.md @@ -12,11 +12,12 @@ This node prepares data for training by encoding images and text. It takes a lis | `texts` | STRING | No | N/A | List of text captions. Can be length n (matching images), 1 (repeated for all), or omitted (uses empty string). | **Parameter Constraints:** -* The number of items in the `texts` list must be 0, 1, or exactly match the number of items in the `images` list. If it is 0, an empty string is used for all images. If it is 1, that single text is repeated for all images. + +* The number of items in the `texts` list must be 0, 1, or exactly match the number of items in the `images` list. If it is 0, an empty string is used for all images. If it is 1, that single text is repeated for all images. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| | `latents` | LATENT | List of latent dicts. | -| `conditioning` | CONDITIONING | List of conditioning lists. | \ No newline at end of file +| `conditioning` | CONDITIONING | List of conditioning lists. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/es.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/es.md index 1ec078e31..46dd7b15e 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/es.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/es.md @@ -12,11 +12,12 @@ Este nodo prepara datos para entrenamiento codificando imágenes y texto. Toma u | `texts` | STRING | No | N/A | Lista de descripciones de texto. Puede tener longitud n (igualando imágenes), 1 (repetida para todas), u omitirse (usa cadena vacía). | **Restricciones de Parámetros:** -* El número de elementos en la lista `texts` debe ser 0, 1, o coincidir exactamente con el número de elementos en la lista `images`. Si es 0, se usa una cadena vacía para todas las imágenes. Si es 1, ese texto único se repite para todas las imágenes. + +* El número de elementos en la lista `texts` debe ser 0, 1, o coincidir exactamente con el número de elementos en la lista `images`. Si es 0, se usa una cadena vacía para todas las imágenes. Si es 1, ese texto único se repite para todas las imágenes. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `latents` | LATENT | Lista de diccionarios latentes. | -| `conditioning` | CONDITIONING | Lista de listas de condicionamiento. | \ No newline at end of file +| `conditioning` | CONDITIONING | Lista de listas de condicionamiento. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/fr.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/fr.md index 5056ddbcf..ea071fe2c 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/fr.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/fr.md @@ -12,11 +12,12 @@ Ce nœud prépare des données pour l'entraînement en encodant des images et du | `texts` | STRING | Non | N/A | Liste des légendes textuelles. Peut avoir une longueur n (correspondant aux images), 1 (répétée pour toutes) ou être omise (utilise une chaîne vide). | **Contraintes des paramètres :** -* Le nombre d'éléments dans la liste `texts` doit être 0, 1, ou correspondre exactement au nombre d'éléments dans la liste `images`. S'il est 0, une chaîne vide est utilisée pour toutes les images. S'il est 1, ce texte unique est répété pour toutes les images. + +* Le nombre d'éléments dans la liste `texts` doit être 0, 1, ou correspondre exactement au nombre d'éléments dans la liste `images`. S'il est 0, une chaîne vide est utilisée pour toutes les images. S'il est 1, ce texte unique est répété pour toutes les images. ## Sorties | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| | `latents` | LATENT | Liste de dictionnaires de latents. | -| `conditioning` | CONDITIONING | Liste de listes de conditionnement. | \ No newline at end of file +| `conditioning` | CONDITIONING | Liste de listes de conditionnement. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/ja.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/ja.md index 63357cd11..bdbee9cc5 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/ja.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/ja.md @@ -12,11 +12,12 @@ | `texts` | STRING | いいえ | N/A | テキストキャプションのリスト。長さはn(画像数と一致)、1(すべての画像で繰り返し使用)、または省略(空文字列を使用)が可能です。 | **パラメータ制約:** -* `texts` リストのアイテム数は、0、1、または `images` リストのアイテム数と完全に一致する必要があります。0の場合、すべての画像に対して空の文字列が使用されます。1の場合、その単一のテキストがすべての画像に対して繰り返し使用されます。 + +* `texts` リストのアイテム数は、0、1、または `images` リストのアイテム数と完全に一致する必要があります。0の場合、すべての画像に対して空の文字列が使用されます。1の場合、その単一のテキストがすべての画像に対して繰り返し使用されます。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `latents` | LATENT | 潜在表現辞書のリスト。 | -| `conditioning` | CONDITIONING | コンディショニングリストのリスト。 | \ No newline at end of file +| `conditioning` | CONDITIONING | コンディショニングリストのリスト。 | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/ko.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/ko.md index 0ba4fc44d..d17d2e584 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/ko.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/ko.md @@ -12,11 +12,12 @@ | `texts` | STRING | 아니요 | 해당 없음 | 텍스트 캡션 목록입니다. 길이가 n(이미지 수와 일치), 1(모든 이미지에 반복 적용), 또는 생략(빈 문자열 사용)일 수 있습니다. | **매개변수 제약 조건:** -* `texts` 목록의 항목 수는 0, 1이거나 `images` 목록의 항목 수와 정확히 일치해야 합니다. 0인 경우 모든 이미지에 빈 문자열이 사용됩니다. 1인 경우 해당 단일 텍스트가 모든 이미지에 반복 적용됩니다. + +* `texts` 목록의 항목 수는 0, 1이거나 `images` 목록의 항목 수와 정확히 일치해야 합니다. 0인 경우 모든 이미지에 빈 문자열이 사용됩니다. 1인 경우 해당 단일 텍스트가 모든 이미지에 반복 적용됩니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `latents` | LATENT | 잠재 딕셔너리 목록입니다. | -| `conditioning` | CONDITIONING | 조건화 목록의 목록입니다. | \ No newline at end of file +| `conditioning` | CONDITIONING | 조건화 목록의 목록입니다. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/pt-BR.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/pt-BR.md index f74770665..e507b1481 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/pt-BR.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/pt-BR.md @@ -12,11 +12,12 @@ Este nó prepara dados para treinamento codificando imagens e texto. Ele recebe | `texts` | STRING | Não | N/A | Lista de legendas de texto. Pode ter comprimento n (correspondendo às imagens), 1 (repetido para todas) ou ser omitida (usa string vazia). | **Restrições dos Parâmetros:** -* O número de itens na lista `texts` deve ser 0, 1 ou corresponder exatamente ao número de itens na lista `images`. Se for 0, uma string vazia é usada para todas as imagens. Se for 1, esse texto único é repetido para todas as imagens. + +* O número de itens na lista `texts` deve ser 0, 1 ou corresponder exatamente ao número de itens na lista `images`. Se for 0, uma string vazia é usada para todas as imagens. Se for 1, esse texto único é repetido para todas as imagens. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `latents` | LATENT | Lista de dicionários latentes. | -| `conditioning` | CONDITIONING | Lista de listas de condicionamento. | \ No newline at end of file +| `conditioning` | CONDITIONING | Lista de listas de condicionamento. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/ru.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/ru.md index 3fb9717cb..941a6b2b5 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/ru.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/ru.md @@ -12,11 +12,12 @@ | `texts` | STRING | Нет | N/A | Список текстовых описаний. Может иметь длину n (соответствуя количеству изображений), 1 (повторяется для всех) или быть опущен (используется пустая строка). | **Ограничения параметров:** -* Количество элементов в списке `texts` должно быть 0, 1 или точно соответствовать количеству элементов в списке `images`. Если оно равно 0, для всех изображений используется пустая строка. Если оно равно 1, этот единственный текст повторяется для всех изображений. + +* Количество элементов в списке `texts` должно быть 0, 1 или точно соответствовать количеству элементов в списке `images`. Если оно равно 0, для всех изображений используется пустая строка. Если оно равно 1, этот единственный текст повторяется для всех изображений. ## Выходные данные | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `latents` | LATENT | Список латентных словарей. | -| `conditioning` | CONDITIONING | Список списков кондиционирования. | \ No newline at end of file +| `conditioning` | CONDITIONING | Список списков кондиционирования. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/tr.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/tr.md index c2280d268..f5ff7cda8 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/tr.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/tr.md @@ -12,11 +12,12 @@ Bu düğüm, görüntüleri ve metni kodlayarak eğitim için veri hazırlar. Bi | `texts` | STRING | Hayır | Yok | Metin açıklamaları listesi. Uzunluğu n (görüntülerle eşleşen), 1 (tümü için tekrarlanan) olabilir veya atlanabilir (boş dize kullanılır). | **Parametre Kısıtlamaları:** -* `texts` listesindeki öğe sayısı 0, 1 olmalı veya `images` listesindeki öğe sayısıyla tam olarak eşleşmelidir. 0 ise, tüm görüntüler için boş bir dize kullanılır. 1 ise, o tek metin tüm görüntüler için tekrarlanır. + +* `texts` listesindeki öğe sayısı 0, 1 olmalı veya `images` listesindeki öğe sayısıyla tam olarak eşleşmelidir. 0 ise, tüm görüntüler için boş bir dize kullanılır. 1 ise, o tek metin tüm görüntüler için tekrarlanır. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `latents` | LATENT | Gizli veri sözlüklerinin listesi. | -| `conditioning` | CONDITIONING | Koşullandırma listelerinin listesi. | \ No newline at end of file +| `conditioning` | CONDITIONING | Koşullandırma listelerinin listesi. | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/zh-TW.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/zh-TW.md index 725e9cf67..c72421357 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/zh-TW.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/zh-TW.md @@ -12,11 +12,12 @@ | `texts` | STRING | 否 | N/A | 文字描述列表。長度可以是 n(與圖像數量匹配)、1(重複用於所有圖像)或省略(使用空字串)。 | **參數限制:** -* `texts` 列表中的項目數量必須為 0、1,或與 `images` 列表中的項目數量完全一致。如果為 0,則所有圖像都使用空字串。如果為 1,則該單一文字將重複用於所有圖像。 + +* `texts` 列表中的項目數量必須為 0、1,或與 `images` 列表中的項目數量完全一致。如果為 0,則所有圖像都使用空字串。如果為 1,則該單一文字將重複用於所有圖像。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 潛在字典列表。 | -| `conditioning` | CONDITIONING | 條件資料列表。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 條件資料列表。 | diff --git a/comfyui_embedded_docs/docs/MakeTrainingDataset/zh.md b/comfyui_embedded_docs/docs/MakeTrainingDataset/zh.md index ad8bd9a1e..9b9a5e070 100644 --- a/comfyui_embedded_docs/docs/MakeTrainingDataset/zh.md +++ b/comfyui_embedded_docs/docs/MakeTrainingDataset/zh.md @@ -12,11 +12,12 @@ | `texts` | STRING | 否 | N/A | 文本描述列表。长度可以是 n(与图像数量匹配)、1(为所有图像重复使用)或省略(使用空字符串)。 | **参数约束:** -* `texts` 列表中的项目数必须为 0、1,或与 `images` 列表中的项目数完全匹配。如果为 0,则所有图像都使用空字符串。如果为 1,则该单一文本会为所有图像重复使用。 + +* `texts` 列表中的项目数必须为 0、1,或与 `images` 列表中的项目数完全匹配。如果为 0,则所有图像都使用空字符串。如果为 1,则该单一文本会为所有图像重复使用。 ## 输出结果 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 潜在字典列表。 | -| `conditioning` | CONDITIONING | 条件列表的列表。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 条件列表的列表。 | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/ar.md b/comfyui_embedded_docs/docs/ManualSigmas/ar.md index 3117fef41..6e9c3dd6a 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/ar.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | الموتر الذي يحتوي على تسلسل قيم سيجما المستخرجة من السلسلة النصية المدخلة. | \ No newline at end of file +| `sigmas` | SIGMAS | الموتر الذي يحتوي على تسلسل قيم سيجما المستخرجة من السلسلة النصية المدخلة. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/en.md b/comfyui_embedded_docs/docs/ManualSigmas/en.md index c48227c36..66c78ac28 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/en.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/en.md @@ -12,4 +12,4 @@ The ManualSigmas node allows you to manually define a custom sequence of noise l | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | The tensor containing the sequence of sigma values extracted from the input string. | \ No newline at end of file +| `sigmas` | SIGMAS | The tensor containing the sequence of sigma values extracted from the input string. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/es.md b/comfyui_embedded_docs/docs/ManualSigmas/es.md index 21647f29e..947f83b4a 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/es.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/es.md @@ -12,4 +12,4 @@ El nodo ManualSigmas permite definir manualmente una secuencia personalizada de | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | El tensor que contiene la secuencia de valores sigma extraídos de la cadena de entrada. | \ No newline at end of file +| `sigmas` | SIGMAS | El tensor que contiene la secuencia de valores sigma extraídos de la cadena de entrada. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/fr.md b/comfyui_embedded_docs/docs/ManualSigmas/fr.md index f4f3f2412..3f6335bed 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/fr.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/fr.md @@ -12,4 +12,4 @@ Le nœud ManualSigmas vous permet de définir manuellement une séquence personn | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Le tenseur contenant la séquence de valeurs sigma extraites de la chaîne d'entrée. | \ No newline at end of file +| `sigmas` | SIGMAS | Le tenseur contenant la séquence de valeurs sigma extraites de la chaîne d'entrée. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/ja.md b/comfyui_embedded_docs/docs/ManualSigmas/ja.md index b1403d422..baa67ec5b 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/ja.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/ja.md @@ -12,4 +12,4 @@ ManualSigmasノードは、サンプリングプロセス用のノイズレベ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 入力文字列から抽出されたシグマ値のシーケンスを含むテンソルです。 | \ No newline at end of file +| `sigmas` | SIGMAS | 入力文字列から抽出されたシグマ値のシーケンスを含むテンソルです。 | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/ko.md b/comfyui_embedded_docs/docs/ManualSigmas/ko.md index 58275876e..ffbfee6f1 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/ko.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/ko.md @@ -12,4 +12,4 @@ ManualSigmas 노드를 사용하면 샘플링 과정에 사용할 노이즈 수 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 입력 문자열에서 추출한 시그마 값 시퀀스를 포함하는 텐서입니다. | \ No newline at end of file +| `sigmas` | SIGMAS | 입력 문자열에서 추출한 시그마 값 시퀀스를 포함하는 텐서입니다. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/pt-BR.md b/comfyui_embedded_docs/docs/ManualSigmas/pt-BR.md index 41f75d647..d3a21250d 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/pt-BR.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/pt-BR.md @@ -12,4 +12,4 @@ O nó ManualSigmas permite que você defina manualmente uma sequência personali | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | O tensor contendo a sequência de valores de sigma extraídos da string de entrada. | \ No newline at end of file +| `sigmas` | SIGMAS | O tensor contendo a sequência de valores de sigma extraídos da string de entrada. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/ru.md b/comfyui_embedded_docs/docs/ManualSigmas/ru.md index 928b29b34..689f0085a 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/ru.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Тензор, содержащий последовательность значений сигм, извлечённых из входной строки. | \ No newline at end of file +| `sigmas` | SIGMAS | Тензор, содержащий последовательность значений сигм, извлечённых из входной строки. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/tr.md b/comfyui_embedded_docs/docs/ManualSigmas/tr.md index ee07d90bb..37e37c1ff 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/tr.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/tr.md @@ -12,4 +12,4 @@ ManualSigmas düğümü, örnekleme süreci için özel bir gürültü seviyeler | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Giriş dizesinden çıkarılan sigma değerleri dizisini içeren tensör. | \ No newline at end of file +| `sigmas` | SIGMAS | Giriş dizesinden çıkarılan sigma değerleri dizisini içeren tensör. | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/zh-TW.md b/comfyui_embedded_docs/docs/ManualSigmas/zh-TW.md index f05141413..d12e1a546 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/zh-TW.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 包含從輸入字串中提取的 sigma 值序列的張量。 | \ No newline at end of file +| `sigmas` | SIGMAS | 包含從輸入字串中提取的 sigma 值序列的張量。 | diff --git a/comfyui_embedded_docs/docs/ManualSigmas/zh.md b/comfyui_embedded_docs/docs/ManualSigmas/zh.md index c8a9ef325..d19630923 100644 --- a/comfyui_embedded_docs/docs/ManualSigmas/zh.md +++ b/comfyui_embedded_docs/docs/ManualSigmas/zh.md @@ -12,4 +12,4 @@ ManualSigmas 节点允许您为采样过程手动定义自定义的噪声级别 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 包含从输入字符串中提取的 sigma 值序列的张量。 | \ No newline at end of file +| `sigmas` | SIGMAS | 包含从输入字符串中提取的 sigma 值序列的张量。 | diff --git a/comfyui_embedded_docs/docs/MarkdownNote/ar.md b/comfyui_embedded_docs/docs/MarkdownNote/ar.md index c75514337..5ca29923e 100644 --- a/comfyui_embedded_docs/docs/MarkdownNote/ar.md +++ b/comfyui_embedded_docs/docs/MarkdownNote/ar.md @@ -6,4 +6,4 @@ ## المخرجات -لا تحتوي العُقدة على مخرجات. \ No newline at end of file +لا تحتوي العُقدة على مخرجات. diff --git a/comfyui_embedded_docs/docs/MarkdownNote/pt-BR.md b/comfyui_embedded_docs/docs/MarkdownNote/pt-BR.md index 9a28afbd4..e2c6058d2 100644 --- a/comfyui_embedded_docs/docs/MarkdownNote/pt-BR.md +++ b/comfyui_embedded_docs/docs/MarkdownNote/pt-BR.md @@ -6,4 +6,4 @@ Nó para adicionar anotações a um fluxo de trabalho. Ele suporta formatação ## Saídas -O nó não possui saídas. \ No newline at end of file +O nó não possui saídas. diff --git a/comfyui_embedded_docs/docs/MarkdownNote/tr.md b/comfyui_embedded_docs/docs/MarkdownNote/tr.md index cab3042aa..a1a0cb5dd 100644 --- a/comfyui_embedded_docs/docs/MarkdownNote/tr.md +++ b/comfyui_embedded_docs/docs/MarkdownNote/tr.md @@ -6,4 +6,4 @@ ## Çıkışlar -Düğümün çıkışları yoktur. \ No newline at end of file +Düğümün çıkışları yoktur. diff --git a/comfyui_embedded_docs/docs/MarkdownNote/zh-TW.md b/comfyui_embedded_docs/docs/MarkdownNote/zh-TW.md index 6f0286d75..2b4035295 100644 --- a/comfyui_embedded_docs/docs/MarkdownNote/zh-TW.md +++ b/comfyui_embedded_docs/docs/MarkdownNote/zh-TW.md @@ -6,4 +6,4 @@ ## 輸出參數 -此節點沒有輸出參數。 \ No newline at end of file +此節點沒有輸出參數。 diff --git a/comfyui_embedded_docs/docs/MaskComposite/ar.md b/comfyui_embedded_docs/docs/MaskComposite/ar.md index c40c9c723..a2defb167 100644 --- a/comfyui_embedded_docs/docs/MaskComposite/ar.md +++ b/comfyui_embedded_docs/docs/MaskComposite/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | | --------- | ------------ | ---------------------------------------------------------------------------- | -| `mask` | MASK | القناع الناتج بعد تطبيق العملية المحددة بين أقنعة الوجهة والمصدر، ممثلًا للنتيجة المركبة. | \ No newline at end of file +| `mask` | MASK | القناع الناتج بعد تطبيق العملية المحددة بين أقنعة الوجهة والمصدر، ممثلًا للنتيجة المركبة. | diff --git a/comfyui_embedded_docs/docs/MaskComposite/pt-BR.md b/comfyui_embedded_docs/docs/MaskComposite/pt-BR.md index f2b39c475..c92a27c41 100644 --- a/comfyui_embedded_docs/docs/MaskComposite/pt-BR.md +++ b/comfyui_embedded_docs/docs/MaskComposite/pt-BR.md @@ -16,4 +16,4 @@ Este nó é especializado em combinar duas entradas de máscara por meio de uma | Parâmetro | Tipo de Dados | Descrição | | --------- | ------------ | ---------------------------------------------------------------------------- | -| `mask` | MASK | A máscara resultante após aplicar a operação especificada entre as máscaras de destino e origem, representando o resultado da composição. | \ No newline at end of file +| `mask` | MASK | A máscara resultante após aplicar a operação especificada entre as máscaras de destino e origem, representando o resultado da composição. | diff --git a/comfyui_embedded_docs/docs/MaskComposite/tr.md b/comfyui_embedded_docs/docs/MaskComposite/tr.md index 98fa36145..2340bbeb6 100644 --- a/comfyui_embedded_docs/docs/MaskComposite/tr.md +++ b/comfyui_embedded_docs/docs/MaskComposite/tr.md @@ -16,4 +16,4 @@ Bu düğüm, iki maske girdisini toplama, çıkarma ve mantıksal işlemler gibi | Parametre | Veri Türü | Açıklama | | --------- | ------------ | ---------------------------------------------------------------------------- | -| `mask` | MASK | Hedef ve kaynak maskeleri arasında belirtilen işlem uygulandıktan sonra elde edilen ve kompozit sonucu temsil eden maske. | \ No newline at end of file +| `mask` | MASK | Hedef ve kaynak maskeleri arasında belirtilen işlem uygulandıktan sonra elde edilen ve kompozit sonucu temsil eden maske. | diff --git a/comfyui_embedded_docs/docs/MaskComposite/zh-TW.md b/comfyui_embedded_docs/docs/MaskComposite/zh-TW.md index 46497e023..bbe1a402c 100644 --- a/comfyui_embedded_docs/docs/MaskComposite/zh-TW.md +++ b/comfyui_embedded_docs/docs/MaskComposite/zh-TW.md @@ -16,4 +16,4 @@ | 參數名稱 | 資料類型 | 描述說明 | | -------- | ------------ | ---------------------------------------------------------------------------- | -| `mask` | MASK | 在目標遮罩和來源遮罩之間應用指定操作後產生的結果遮罩,代表合成的最終結果。 | \ No newline at end of file +| `mask` | MASK | 在目標遮罩和來源遮罩之間應用指定操作後產生的結果遮罩,代表合成的最終結果。 | diff --git a/comfyui_embedded_docs/docs/MaskPreview/ar.md b/comfyui_embedded_docs/docs/MaskPreview/ar.md index 1ec58b7ca..69d18737c 100644 --- a/comfyui_embedded_docs/docs/MaskPreview/ar.md +++ b/comfyui_embedded_docs/docs/MaskPreview/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `ui` | DICT | يحتوي على معلومات صورة المعاينة والبيانات الوصفية الخاصة بها لعرضها | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/MaskPreview/pt-BR.md b/comfyui_embedded_docs/docs/MaskPreview/pt-BR.md index fe4a6d799..a08daa617 100644 --- a/comfyui_embedded_docs/docs/MaskPreview/pt-BR.md +++ b/comfyui_embedded_docs/docs/MaskPreview/pt-BR.md @@ -15,4 +15,4 @@ O nó MaskPreview gera uma visualização de uma máscara convertendo-a em um fo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `ui` | DICT | Contém as informações da imagem de visualização e os metadados para exibição | \ No newline at end of file +| `ui` | DICT | Contém as informações da imagem de visualização e os metadados para exibição | diff --git a/comfyui_embedded_docs/docs/MaskPreview/tr.md b/comfyui_embedded_docs/docs/MaskPreview/tr.md index 325a66852..6980fd652 100644 --- a/comfyui_embedded_docs/docs/MaskPreview/tr.md +++ b/comfyui_embedded_docs/docs/MaskPreview/tr.md @@ -15,4 +15,4 @@ MaskPreview düğümü, bir maskeyi 3 kanallı görüntü formatına dönüştü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui` | DICT | Görüntüleme için önizleme görüntüsü bilgisini ve meta verileri içerir | \ No newline at end of file +| `ui` | DICT | Görüntüleme için önizleme görüntüsü bilgisini ve meta verileri içerir | diff --git a/comfyui_embedded_docs/docs/MaskPreview/zh-TW.md b/comfyui_embedded_docs/docs/MaskPreview/zh-TW.md index e485413f9..61678647c 100644 --- a/comfyui_embedded_docs/docs/MaskPreview/zh-TW.md +++ b/comfyui_embedded_docs/docs/MaskPreview/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `ui` | DICT | 包含用於顯示的預覽影像資訊和中繼資料 | \ No newline at end of file +| `ui` | DICT | 包含用於顯示的預覽影像資訊和中繼資料 | diff --git a/comfyui_embedded_docs/docs/MaskToImage/ar.md b/comfyui_embedded_docs/docs/MaskToImage/ar.md index f9ac24233..f6fca3a91 100644 --- a/comfyui_embedded_docs/docs/MaskToImage/ar.md +++ b/comfyui_embedded_docs/docs/MaskToImage/ar.md @@ -12,4 +12,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `image` | `IMAGE` | المخرج هو تمثيل صوري للقناع المدخل، مما يتيح الفحص البصري والمزيد من المعالجات المعتمدة على الصور. | \ No newline at end of file +| `image` | `IMAGE` | المخرج هو تمثيل صوري للقناع المدخل، مما يتيح الفحص البصري والمزيد من المعالجات المعتمدة على الصور. | diff --git a/comfyui_embedded_docs/docs/MaskToImage/pt-BR.md b/comfyui_embedded_docs/docs/MaskToImage/pt-BR.md index a768c1d97..1fdc60978 100644 --- a/comfyui_embedded_docs/docs/MaskToImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/MaskToImage/pt-BR.md @@ -12,4 +12,4 @@ O nó `MaskToImage` é projetado para converter uma máscara em formato de image | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A saída é uma representação em imagem da máscara de entrada, permitindo inspeção visual e manipulações adicionais baseadas em imagem. | \ No newline at end of file +| `image` | `IMAGE` | A saída é uma representação em imagem da máscara de entrada, permitindo inspeção visual e manipulações adicionais baseadas em imagem. | diff --git a/comfyui_embedded_docs/docs/MaskToImage/tr.md b/comfyui_embedded_docs/docs/MaskToImage/tr.md index 0115f1e21..753a722a5 100644 --- a/comfyui_embedded_docs/docs/MaskToImage/tr.md +++ b/comfyui_embedded_docs/docs/MaskToImage/tr.md @@ -12,4 +12,4 @@ | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `image` | `IMAGE` | Çıktı, girdi maskesinin bir görüntü temsilidir ve görsel incelemeye ve daha fazla görüntü tabanlı manipülasyona olanak tanır. | \ No newline at end of file +| `image` | `IMAGE` | Çıktı, girdi maskesinin bir görüntü temsilidir ve görsel incelemeye ve daha fazla görüntü tabanlı manipülasyona olanak tanır. | diff --git a/comfyui_embedded_docs/docs/MaskToImage/zh-TW.md b/comfyui_embedded_docs/docs/MaskToImage/zh-TW.md index c0860469c..ca59522ba 100644 --- a/comfyui_embedded_docs/docs/MaskToImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/MaskToImage/zh-TW.md @@ -12,4 +12,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `image` | `IMAGE` | 輸出是輸入遮罩的影像表示,可進行視覺檢查和進一步的影像處理操作。 | \ No newline at end of file +| `image` | `IMAGE` | 輸出是輸入遮罩的影像表示,可進行視覺檢查和進一步的影像處理操作。 | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/ar.md b/comfyui_embedded_docs/docs/MergeImageLists/ar.md index 12fca71af..0725e816c 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/ar.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `images` | IMAGE | القائمة المدمجة الواحدة التي تحتوي على جميع الصور من كل قائمة مدخلات متصلة. | \ No newline at end of file +| `images` | IMAGE | القائمة المدمجة الواحدة التي تحتوي على جميع الصور من كل قائمة مدخلات متصلة. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/en.md b/comfyui_embedded_docs/docs/MergeImageLists/en.md index 1392be46c..3dac609b2 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/en.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/en.md @@ -14,4 +14,4 @@ The Merge Image Lists node combines multiple separate lists of images into a sin | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `images` | IMAGE | The single, merged list containing all images from every connected input list. | \ No newline at end of file +| `images` | IMAGE | The single, merged list containing all images from every connected input list. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/es.md b/comfyui_embedded_docs/docs/MergeImageLists/es.md index 018a30cbd..f5fdf1df8 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/es.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/es.md @@ -14,4 +14,4 @@ El nodo Merge Image Lists combina múltiples listas separadas de imágenes en un | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `images` | IMAGE | La lista única y fusionada que contiene todas las imágenes de cada lista de entrada conectada. | \ No newline at end of file +| `images` | IMAGE | La lista única y fusionada que contiene todas las imágenes de cada lista de entrada conectada. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/fr.md b/comfyui_embedded_docs/docs/MergeImageLists/fr.md index 11d8946cb..b5d2c6058 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/fr.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/fr.md @@ -14,4 +14,4 @@ Le nœud Merge Image Lists combine plusieurs listes d'images distinctes en une s | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `images` | IMAGE | La liste unique et fusionnée contenant toutes les images de chaque liste d'entrée connectée. | \ No newline at end of file +| `images` | IMAGE | La liste unique et fusionnée contenant toutes les images de chaque liste d'entrée connectée. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/ja.md b/comfyui_embedded_docs/docs/MergeImageLists/ja.md index 4aa0e4e90..b73bb3c72 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/ja.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/ja.md @@ -14,4 +14,4 @@ Merge Image Lists ノードは、複数の個別の画像リストを1つの連 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `images` | IMAGE | 接続されたすべての入力リストからの画像を含む、単一の結合されたリストです。 | \ No newline at end of file +| `images` | IMAGE | 接続されたすべての入力リストからの画像を含む、単一の結合されたリストです。 | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/ko.md b/comfyui_embedded_docs/docs/MergeImageLists/ko.md index c36858296..c016a687f 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/ko.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/ko.md @@ -14,4 +14,4 @@ Merge Image Lists 노드는 여러 개의 별도 이미지 목록을 하나의 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `images` | IMAGE | 연결된 모든 입력 목록의 이미지를 포함하는 단일 병합 목록입니다. | \ No newline at end of file +| `images` | IMAGE | 연결된 모든 입력 목록의 이미지를 포함하는 단일 병합 목록입니다. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/pt-BR.md b/comfyui_embedded_docs/docs/MergeImageLists/pt-BR.md index 76438f719..af9cec792 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/pt-BR.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/pt-BR.md @@ -14,4 +14,4 @@ O nó Merge Image Lists combina várias listas separadas de imagens em uma únic | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `images` | IMAGE | A lista única e mesclada contendo todas as imagens de cada lista de entrada conectada. | \ No newline at end of file +| `images` | IMAGE | A lista única e mesclada contendo todas as imagens de cada lista de entrada conectada. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/ru.md b/comfyui_embedded_docs/docs/MergeImageLists/ru.md index 9f9d5c024..f7cc60a83 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/ru.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `images` | IMAGE | Единый объединенный список, содержащий все изображения из каждого подключенного входного списка. | \ No newline at end of file +| `images` | IMAGE | Единый объединенный список, содержащий все изображения из каждого подключенного входного списка. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/tr.md b/comfyui_embedded_docs/docs/MergeImageLists/tr.md index 2fe42838a..c604c1ac7 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/tr.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/tr.md @@ -14,4 +14,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `images` | IMAGE | Bağlı her girdi listesindeki tüm görüntüleri içeren, birleştirilmiş tek liste. | \ No newline at end of file +| `images` | IMAGE | Bağlı her girdi listesindeki tüm görüntüleri içeren, birleştirilmiş tek liste. | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/zh-TW.md b/comfyui_embedded_docs/docs/MergeImageLists/zh-TW.md index 50c58535e..463fd047f 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/zh-TW.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 單一的合併清單,包含來自每個連接輸入清單的所有影像。 | \ No newline at end of file +| `images` | IMAGE | 單一的合併清單,包含來自每個連接輸入清單的所有影像。 | diff --git a/comfyui_embedded_docs/docs/MergeImageLists/zh.md b/comfyui_embedded_docs/docs/MergeImageLists/zh.md index 5dfb88c2c..ef3cb8346 100644 --- a/comfyui_embedded_docs/docs/MergeImageLists/zh.md +++ b/comfyui_embedded_docs/docs/MergeImageLists/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 包含所有已连接输入列表中所有图像的单一合并列表。 | \ No newline at end of file +| `images` | IMAGE | 包含所有已连接输入列表中所有图像的单一合并列表。 | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/ar.md b/comfyui_embedded_docs/docs/MergeTextLists/ar.md index 044ddad6a..ff345335e 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/ar.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `texts` | STRING | القائمة الموحدة الفردية التي تحتوي على جميع النصوص المدخلة. | \ No newline at end of file +| `texts` | STRING | القائمة الموحدة الفردية التي تحتوي على جميع النصوص المدخلة. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/en.md b/comfyui_embedded_docs/docs/MergeTextLists/en.md index a957b8ad8..ac04e1690 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/en.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/en.md @@ -14,4 +14,4 @@ This node merges multiple text lists into a single, combined list. It is designe | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `texts` | STRING | The single, merged list containing all the input texts. | \ No newline at end of file +| `texts` | STRING | The single, merged list containing all the input texts. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/es.md b/comfyui_embedded_docs/docs/MergeTextLists/es.md index 6784eaf89..ec1a0c995 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/es.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/es.md @@ -14,4 +14,4 @@ Este nodo fusiona múltiples listas de texto en una única lista combinada. Est | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `texts` | STRING | La lista única y fusionada que contiene todos los textos de entrada. | \ No newline at end of file +| `texts` | STRING | La lista única y fusionada que contiene todos los textos de entrada. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/fr.md b/comfyui_embedded_docs/docs/MergeTextLists/fr.md index 9935ee33a..ce3c1fa45 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/fr.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/fr.md @@ -14,4 +14,4 @@ Ce nœud fusionne plusieurs listes de texte en une seule liste combinée. Il est | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `texts` | STRING | La liste unique et fusionnée contenant tous les textes d'entrée. | \ No newline at end of file +| `texts` | STRING | La liste unique et fusionnée contenant tous les textes d'entrée. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/ja.md b/comfyui_embedded_docs/docs/MergeTextLists/ja.md index 337403af7..2c8c4d175 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/ja.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/ja.md @@ -14,4 +14,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `texts` | STRING | すべての入力テキストを含む、単一の結合されたリストです。 | \ No newline at end of file +| `texts` | STRING | すべての入力テキストを含む、単一の結合されたリストです。 | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/ko.md b/comfyui_embedded_docs/docs/MergeTextLists/ko.md index d81d5402f..059e0bc6d 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/ko.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/ko.md @@ -14,4 +14,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `texts` | STRING | 모든 입력 텍스트를 포함하는 단일 병합 목록입니다. | \ No newline at end of file +| `texts` | STRING | 모든 입력 텍스트를 포함하는 단일 병합 목록입니다. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/pt-BR.md b/comfyui_embedded_docs/docs/MergeTextLists/pt-BR.md index 8be439ed8..0cbd62db8 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/pt-BR.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/pt-BR.md @@ -14,4 +14,4 @@ Este nó mescla várias listas de texto em uma única lista combinada. Ele foi p | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `texts` | STRING | A lista única e mesclada contendo todos os textos de entrada. | \ No newline at end of file +| `texts` | STRING | A lista única e mesclada contendo todos os textos de entrada. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/ru.md b/comfyui_embedded_docs/docs/MergeTextLists/ru.md index 8948c9e0c..a06f6c25a 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/ru.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `texts` | STRING | Единый объединённый список, содержащий все входные тексты. | \ No newline at end of file +| `texts` | STRING | Единый объединённый список, содержащий все входные тексты. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/tr.md b/comfyui_embedded_docs/docs/MergeTextLists/tr.md index 0894230a3..139dd0be6 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/tr.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/tr.md @@ -14,4 +14,4 @@ Bu düğüm, birden fazla metin listesini tek bir birleşik listede birleştirir | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `texts` | STRING | Tüm giriş metinlerini içeren tek, birleştirilmiş liste. | \ No newline at end of file +| `texts` | STRING | Tüm giriş metinlerini içeren tek, birleştirilmiş liste. | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/zh-TW.md b/comfyui_embedded_docs/docs/MergeTextLists/zh-TW.md index ba2031297..dd9bd803c 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/zh-TW.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `texts` | STRING | 包含所有輸入文字的單一合併清單。 | \ No newline at end of file +| `texts` | STRING | 包含所有輸入文字的單一合併清單。 | diff --git a/comfyui_embedded_docs/docs/MergeTextLists/zh.md b/comfyui_embedded_docs/docs/MergeTextLists/zh.md index 81c935d24..3818a6a74 100644 --- a/comfyui_embedded_docs/docs/MergeTextLists/zh.md +++ b/comfyui_embedded_docs/docs/MergeTextLists/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `texts` | STRING | 包含所有输入文本的单一合并列表。 | \ No newline at end of file +| `texts` | STRING | 包含所有输入文本的单一合并列表。 | diff --git a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/ar.md b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/ar.md index 6c9c44cf7..f111fc78b 100644 --- a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/pt-BR.md index f49718934..cc9ccff75 100644 --- a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/pt-BR.md @@ -19,4 +19,4 @@ Gera vídeos a partir de prompts de texto usando o modelo MiniMax Hailuo-02. Opc | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/tr.md b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/tr.md index ce8f9a7ba..f456c7632 100644 --- a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/tr.md @@ -19,4 +19,4 @@ MiniMax Hailuo-02 modelini kullanarak metin istemlerinden video oluşturur. İst | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/zh-TW.md index d7130b495..581a344f9 100644 --- a/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MinimaxHailuoVideoNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/ar.md index e7064f13c..e1748cea1 100644 --- a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | مقطع الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | مقطع الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/pt-BR.md index 3040f4197..3bd7d9295 100644 --- a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/pt-BR.md @@ -15,4 +15,4 @@ Gera vídeos de forma síncrona com base em uma imagem, um prompt e parâmetros | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | A saída de vídeo gerada | \ No newline at end of file +| `output` | VIDEO | A saída de vídeo gerada | diff --git a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/tr.md index e5fd39d14..4e7cd9a37 100644 --- a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/tr.md @@ -15,4 +15,4 @@ Bir görüntü, metin açıklaması ve isteğe bağlı parametreler kullanarak M | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video çıktısı | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/zh-TW.md index de06b6cf3..59c058233 100644 --- a/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MinimaxImageToVideoNode/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片輸出 | \ No newline at end of file +| `output` | VIDEO | 生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/ar.md b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/ar.md index 3ba84ddac..1962a5cbc 100644 --- a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى صورة الموضوع المدخلة والموجه النصي | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى صورة الموضوع المدخلة والموجه النصي | diff --git a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/pt-BR.md index 5ef10aa9c..b23e4477d 100644 --- a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/pt-BR.md @@ -15,4 +15,4 @@ Gera vídeos de forma síncrona com base em uma imagem, um prompt e parâmetros | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base na imagem do assunto e no prompt fornecidos | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base na imagem do assunto e no prompt fornecidos | diff --git a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/tr.md b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/tr.md index 4ea3abc51..750a0fe10 100644 --- a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/tr.md @@ -15,4 +15,4 @@ Bir görüntü ve istek metni ile isteğe bağlı parametreleri kullanarak MiniM | Çıktı Adı | Veri Tipi | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi olarak verilen konu görüntüsü ve istek metnine dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Girdi olarak verilen konu görüntüsü ve istek metnine dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/zh-TW.md index 5267c2c09..c42a233d7 100644 --- a/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MinimaxSubjectToVideoNode/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入主題圖像和提示生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據輸入主題圖像和提示生成的影片 | diff --git a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/ar.md index c9273711f..97c5a6dba 100644 --- a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى الموجه النصي المدخل | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى الموجه النصي المدخل | diff --git a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/pt-BR.md index 2dc9dfb60..47895475c 100644 --- a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/pt-BR.md @@ -14,4 +14,4 @@ Gera vídeos de forma síncrona com base em um prompt e parâmetros opcionais us | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base no prompt de entrada | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base no prompt de entrada | diff --git a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/tr.md index 535518ce1..1fd4c2840 100644 --- a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/tr.md @@ -14,4 +14,4 @@ Verilen metin istemine ve isteğe bağlı parametrelere dayanarak MiniMax'in API | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi istemine dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Girdi istemine dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/zh-TW.md index 3146190d1..6efff9a4c 100644 --- a/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MinimaxTextToVideoNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入提示生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據輸入提示生成的影片 | diff --git a/comfyui_embedded_docs/docs/ModelComputeDtype/ar.md b/comfyui_embedded_docs/docs/ModelComputeDtype/ar.md index d877e1984..992ef1451 100644 --- a/comfyui_embedded_docs/docs/ModelComputeDtype/ar.md +++ b/comfyui_embedded_docs/docs/ModelComputeDtype/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `نموذج` | MODEL | النموذج المعدل بعد تطبيق نوع البيانات الحسابية الجديد عليه | \ No newline at end of file +| `نموذج` | MODEL | النموذج المعدل بعد تطبيق نوع البيانات الحسابية الجديد عليه | diff --git a/comfyui_embedded_docs/docs/ModelComputeDtype/pt-BR.md b/comfyui_embedded_docs/docs/ModelComputeDtype/pt-BR.md index 44801076f..7a58838c1 100644 --- a/comfyui_embedded_docs/docs/ModelComputeDtype/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelComputeDtype/pt-BR.md @@ -13,4 +13,4 @@ O nó ModelComputeDtype permite que você altere o tipo de dados computacional u | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com o novo tipo de dados computacional aplicado | \ No newline at end of file +| `model` | MODEL | O modelo modificado com o novo tipo de dados computacional aplicado | diff --git a/comfyui_embedded_docs/docs/ModelComputeDtype/tr.md b/comfyui_embedded_docs/docs/ModelComputeDtype/tr.md index c01549cb6..48913f246 100644 --- a/comfyui_embedded_docs/docs/ModelComputeDtype/tr.md +++ b/comfyui_embedded_docs/docs/ModelComputeDtype/tr.md @@ -13,4 +13,4 @@ ModelComputeDtype düğümü, bir modelin çıkarım sırasında kullandığı h | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Yeni hesaplama veri türü uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Yeni hesaplama veri türü uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelComputeDtype/zh-TW.md b/comfyui_embedded_docs/docs/ModelComputeDtype/zh-TW.md index e76ff3b53..13b8b46e2 100644 --- a/comfyui_embedded_docs/docs/ModelComputeDtype/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelComputeDtype/zh-TW.md @@ -13,4 +13,4 @@ ModelComputeDtype 節點允許您在推理過程中變更模型使用的計算 | 輸出名稱 | 資料型別 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已套用新計算資料型別的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已套用新計算資料型別的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeAdd/ar.md b/comfyui_embedded_docs/docs/ModelMergeAdd/ar.md index c91b30e01..777d75f57 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAdd/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeAdd/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `model` | MODEL | نتيجة دمج نموذجين عن طريق إضافة رقع رئيسية من النموذج الثاني إلى الأول. يجمع هذا النموذج المدمج بين الميزات أو السلوكيات من كلا النموذجين. | \ No newline at end of file +| `model` | MODEL | نتيجة دمج نموذجين عن طريق إضافة رقع رئيسية من النموذج الثاني إلى الأول. يجمع هذا النموذج المدمج بين الميزات أو السلوكيات من كلا النموذجين. | diff --git a/comfyui_embedded_docs/docs/ModelMergeAdd/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeAdd/pt-BR.md index 329adf5a4..409a1ded7 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAdd/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeAdd/pt-BR.md @@ -13,4 +13,4 @@ O nó ModelMergeAdd é projetado para mesclar dois modelos adicionando patches-c | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | O resultado da mesclagem de dois modelos pela adição de patches-chave do segundo modelo ao primeiro. Este modelo mesclado combina características ou comportamentos de ambos os modelos. | \ No newline at end of file +| `model` | MODEL | O resultado da mesclagem de dois modelos pela adição de patches-chave do segundo modelo ao primeiro. Este modelo mesclado combina características ou comportamentos de ambos os modelos. | diff --git a/comfyui_embedded_docs/docs/ModelMergeAdd/tr.md b/comfyui_embedded_docs/docs/ModelMergeAdd/tr.md index 6de9ed239..41f54f48e 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAdd/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeAdd/tr.md @@ -13,4 +13,4 @@ ModelMergeAdd düğümü, bir modelden diğerine anahtar yamalar ekleyerek iki m | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | İkinci modelden alınan anahtar yamaların ilk modele eklenmesiyle elde edilen birleşik model. Bu birleşik model, her iki modelin özelliklerini veya davranışlarını bir araya getirir. | \ No newline at end of file +| `model` | MODEL | İkinci modelden alınan anahtar yamaların ilk modele eklenmesiyle elde edilen birleşik model. Bu birleşik model, her iki modelin özelliklerini veya davranışlarını bir araya getirir. | diff --git a/comfyui_embedded_docs/docs/ModelMergeAdd/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeAdd/zh-TW.md index fb6ff1d8c..3d23cddda 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAdd/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeAdd/zh-TW.md @@ -13,4 +13,4 @@ ModelMergeAdd 節點專為合併兩個模型而設計,透過將一個模型的 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `model` | MODEL | 透過將第二個模型的關鍵修補程式添加到第一個模型後得到的合併結果。此合併模型結合了兩個模型的功能或行為。 | \ No newline at end of file +| `model` | MODEL | 透過將第二個模型的關鍵修補程式添加到第一個模型後得到的合併結果。此合併模型結合了兩個模型的功能或行為。 | diff --git a/comfyui_embedded_docs/docs/ModelMergeAuraflow/ar.md b/comfyui_embedded_docs/docs/ModelMergeAuraflow/ar.md index fe77236ab..798117b67 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAuraflow/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeAuraflow/ar.md @@ -56,4 +56,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لأوزان المزج المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لأوزان المزج المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeAuraflow/tr.md b/comfyui_embedded_docs/docs/ModelMergeAuraflow/tr.md index 93bd3e740..7c2a7b481 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAuraflow/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeAuraflow/tr.md @@ -56,4 +56,4 @@ ModelMergeAuraflow düğümü, iki farklı modeli çeşitli model bileşenleri i | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen karıştırma ağırlıklarına göre her iki girdi modelinden özelliklerin birleştirildiği model | \ No newline at end of file +| `model` | MODEL | Belirtilen karıştırma ağırlıklarına göre her iki girdi modelinden özelliklerin birleştirildiği model | diff --git a/comfyui_embedded_docs/docs/ModelMergeAuraflow/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeAuraflow/zh-TW.md index 40b7aed20..342efafdd 100644 --- a/comfyui_embedded_docs/docs/ModelMergeAuraflow/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeAuraflow/zh-TW.md @@ -56,4 +56,4 @@ ModelMergeAuraflow 節點允許您透過調整不同模型元件的特定混合 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 根據指定的混合權重合併兩個輸入模型特徵後的融合模型 | \ No newline at end of file +| `model` | MODEL | 根據指定的混合權重合併兩個輸入模型特徵後的融合模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeBlocks/ar.md b/comfyui_embedded_docs/docs/ModelMergeBlocks/ar.md index f7e9868b2..90047ca2f 100644 --- a/comfyui_embedded_docs/docs/ModelMergeBlocks/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeBlocks/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `model` | MODEL | النموذج المدمج الناتج، وهو نموذج هجين من النموذجين المدخلين مع تطبيق الرقع وفقًا لنسب المزج المحددة. | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الناتج، وهو نموذج هجين من النموذجين المدخلين مع تطبيق الرقع وفقًا لنسب المزج المحددة. | diff --git a/comfyui_embedded_docs/docs/ModelMergeBlocks/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeBlocks/pt-BR.md index 2a2ac6928..19e37d3cc 100644 --- a/comfyui_embedded_docs/docs/ModelMergeBlocks/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeBlocks/pt-BR.md @@ -16,4 +16,4 @@ O ModelMergeBlocks é projetado para operações avançadas de fusão de modelos | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | O modelo mesclado resultante, que é um híbrido dos dois modelos de entrada com patches aplicados de acordo com as proporções de mesclagem especificadas. | \ No newline at end of file +| `model` | MODEL | O modelo mesclado resultante, que é um híbrido dos dois modelos de entrada com patches aplicados de acordo com as proporções de mesclagem especificadas. | diff --git a/comfyui_embedded_docs/docs/ModelMergeBlocks/tr.md b/comfyui_embedded_docs/docs/ModelMergeBlocks/tr.md index 5826a570f..1fd7ca4e7 100644 --- a/comfyui_embedded_docs/docs/ModelMergeBlocks/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeBlocks/tr.md @@ -16,4 +16,4 @@ ModelMergeBlocks, iki modelin farklı bölümleri için özelleştirilebilir kar | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | Belirtilen karıştırma oranlarına göre yamalar uygulanmış, iki girdi modelinin melezi olan ortaya çıkan birleştirilmiş model. | \ No newline at end of file +| `model` | MODEL | Belirtilen karıştırma oranlarına göre yamalar uygulanmış, iki girdi modelinin melezi olan ortaya çıkan birleştirilmiş model. | diff --git a/comfyui_embedded_docs/docs/ModelMergeBlocks/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeBlocks/zh-TW.md index 778cb887b..1e16b6c1c 100644 --- a/comfyui_embedded_docs/docs/ModelMergeBlocks/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeBlocks/zh-TW.md @@ -16,4 +16,4 @@ ModelMergeBlocks 專為進階模型融合操作而設計,允許以可自訂的 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `model` | MODEL | 合併後的結果模型,這是兩個輸入模型根據指定混合比例應用修補程式後產生的混合模型。 | \ No newline at end of file +| `model` | MODEL | 合併後的結果模型,這是兩個輸入模型根據指定混合比例應用修補程式後產生的混合模型。 | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/ar.md b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/ar.md index 709605da4..387269140 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/ar.md @@ -55,4 +55,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/pt-BR.md index 0822fa293..1a844c575 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/pt-BR.md @@ -55,4 +55,4 @@ O nó ModelMergeCosmos14B mescla dois modelos de IA usando uma abordagem baseada | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/tr.md b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/tr.md index ffaf675ad..f9cba84d8 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/tr.md @@ -55,4 +55,4 @@ ModelMergeCosmos14B düğümü, Cosmos 14B model mimarisi için özel olarak tas | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki giriş modelinin özelliklerini birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Her iki giriş modelinin özelliklerini birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/zh-TW.md index fa8f36a9e..dfb929024 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos14B/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos14B/zh-TW.md @@ -55,4 +55,4 @@ ModelMergeCosmos14B 節點使用基於區塊的方法合併兩個 AI 模型, | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/ar.md b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/ar.md index 30bf32a43..76ae1eb4b 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/ar.md @@ -47,4 +47,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/pt-BR.md index e6e5390ef..35a78aa02 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/pt-BR.md @@ -47,4 +47,4 @@ O nó ModelMergeCosmos7B mescla dois modelos de IA usando uma combinação ponde | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado, combinando características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo mesclado, combinando características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/tr.md b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/tr.md index 237195624..039b014c4 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/tr.md @@ -47,4 +47,4 @@ ModelMergeCosmos7B düğümü, iki AI modelini belirli bileşenlerin ağırlıkl | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki girdi modelinden özellikleri birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Her iki girdi modelinden özellikleri birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/zh-TW.md index 67adfca86..57c961108 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmos7B/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmos7B/zh-TW.md @@ -47,4 +47,4 @@ ModelMergeCosmos7B 節點使用特定元件的加權混合方式將兩個 AI 模 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/ar.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/ar.md index 92ce1df2b..238d9261c 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/ar.md @@ -56,4 +56,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/pt-BR.md index 3978627a3..55ad84812 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/pt-BR.md @@ -56,4 +56,4 @@ O nó ModelMergeCosmosPredict2_14B permite mesclar dois modelos de IA ajustando | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/tr.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/tr.md index e687b698c..f0217d590 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/tr.md @@ -56,4 +56,4 @@ ModelMergeCosmosPredict2_14B düğümü, iki yapay zeka modelini birleştirerek | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki girdi modelinin özelliklerini birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Her iki girdi modelinin özelliklerini birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/zh-TW.md index a26bb575f..89c19380c 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_14B/zh-TW.md @@ -56,4 +56,4 @@ ModelMergeCosmosPredict2_14B 節點允許您透過調整不同模型元件的影 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 結合了兩個輸入模型特徵的合併模型 | \ No newline at end of file +| `model` | MODEL | 結合了兩個輸入模型特徵的合併模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/ar.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/ar.md index 7f782889b..695291829 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/ar.md @@ -46,4 +46,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/pt-BR.md index 7b1b03805..aa39d6e9a 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/pt-BR.md @@ -46,4 +46,4 @@ O nó ModelMergeCosmosPredict2_2B mescla dois modelos de difusão usando uma abo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/tr.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/tr.md index f4d946ff3..831cb8898 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/tr.md @@ -46,4 +46,4 @@ ModelMergeCosmosPredict2_2B düğümü, iki difüzyon modelini, farklı model bi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki girdi modelinin özelliklerini birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Her iki girdi modelinin özelliklerini birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/zh-TW.md index 449ad26ad..5efe0055d 100644 --- a/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeCosmosPredict2_2B/zh-TW.md @@ -46,4 +46,4 @@ ModelMergeCosmosPredict2_2B 節點使用基於區塊的方法合併兩個擴散 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/ModelMergeFlux1/ar.md b/comfyui_embedded_docs/docs/ModelMergeFlux1/ar.md index cad200cc8..e7e64ca86 100644 --- a/comfyui_embedded_docs/docs/ModelMergeFlux1/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeFlux1/ar.md @@ -76,4 +76,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع خصائص كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع خصائص كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeFlux1/tr.md b/comfyui_embedded_docs/docs/ModelMergeFlux1/tr.md index 3548713b8..2e7d45801 100644 --- a/comfyui_embedded_docs/docs/ModelMergeFlux1/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeFlux1/tr.md @@ -76,4 +76,4 @@ ModelMergeFlux1 düğümü, iki difüzyon modelini bileşenlerini ağırlıklı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki giriş modelinden karakteristikleri birleştiren harmanlanmış model | \ No newline at end of file +| `model` | MODEL | Her iki giriş modelinden karakteristikleri birleştiren harmanlanmış model | diff --git a/comfyui_embedded_docs/docs/ModelMergeFlux1/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeFlux1/zh-TW.md index 64da326c1..df2259dd2 100644 --- a/comfyui_embedded_docs/docs/ModelMergeFlux1/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeFlux1/zh-TW.md @@ -76,4 +76,4 @@ ModelMergeFlux1 節點透過加權插值的方式混合兩個擴散模型的組 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/ModelMergeLTXV/ar.md b/comfyui_embedded_docs/docs/ModelMergeLTXV/ar.md index d1c54cf77..d6c028a58 100644 --- a/comfyui_embedded_docs/docs/ModelMergeLTXV/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeLTXV/ar.md @@ -46,4 +46,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لأوزان الاستيفاء المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لأوزان الاستيفاء المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeLTXV/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeLTXV/pt-BR.md index fabcfb9a9..3b21da333 100644 --- a/comfyui_embedded_docs/docs/ModelMergeLTXV/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeLTXV/pt-BR.md @@ -46,4 +46,4 @@ O nó ModelMergeLTXV realiza operações avançadas de fusão de modelos especif | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada de acordo com os pesos de interpolação especificados | \ No newline at end of file +| `model` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada de acordo com os pesos de interpolação especificados | diff --git a/comfyui_embedded_docs/docs/ModelMergeLTXV/tr.md b/comfyui_embedded_docs/docs/ModelMergeLTXV/tr.md index e81f040ed..05fe94409 100644 --- a/comfyui_embedded_docs/docs/ModelMergeLTXV/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeLTXV/tr.md @@ -46,4 +46,4 @@ ModelMergeLTXV düğümü, LTXV model mimarileri için özel olarak tasarlanmı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen enterpolasyon ağırlıklarına göre her iki girdi modelinden özellikleri birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen enterpolasyon ağırlıklarına göre her iki girdi modelinden özellikleri birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeLTXV/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeLTXV/zh-TW.md index 64983745e..6d8f2556b 100644 --- a/comfyui_embedded_docs/docs/ModelMergeLTXV/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeLTXV/zh-TW.md @@ -46,4 +46,4 @@ ModelMergeLTXV 節點執行專為 LTXV 模型架構設計的進階模型合併 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 根據指定的插值權重合併兩個輸入模型特徵後的模型 | \ No newline at end of file +| `model` | MODEL | 根據指定的插值權重合併兩個輸入模型特徵後的模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/ar.md b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/ar.md index b0f1e8128..c924f9519 100644 --- a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/ar.md @@ -66,4 +66,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا للأوزان المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا للأوزان المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/tr.md b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/tr.md index 442a0adfa..6dfdb7431 100644 --- a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/tr.md @@ -66,4 +66,4 @@ Bu düğüm, iki yapay zeka modelini blok tabanlı bir yaklaşımla birleştirir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen ağırlıklara göre her iki giriş modelinin özelliklerini birleştiren birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen ağırlıklara göre her iki giriş modelinin özelliklerini birleştiren birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/zh-TW.md index 5809fe6d0..82e9bc07c 100644 --- a/comfyui_embedded_docs/docs/ModelMergeMochiPreview/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeMochiPreview/zh-TW.md @@ -66,4 +66,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 根據指定權重合併兩個輸入模型特徵後的模型 | \ No newline at end of file +| `model` | MODEL | 根據指定權重合併兩個輸入模型特徵後的模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeQwenImage/ar.md b/comfyui_embedded_docs/docs/ModelMergeQwenImage/ar.md index ad2b18fc7..90ec4a0de 100644 --- a/comfyui_embedded_docs/docs/ModelMergeQwenImage/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeQwenImage/ar.md @@ -20,4 +20,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع المكونات من كلا النموذجين المدخلين مع الأوزان المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع المكونات من كلا النموذجين المدخلين مع الأوزان المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeQwenImage/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeQwenImage/pt-BR.md index 1fd8cb069..c8f96df33 100644 --- a/comfyui_embedded_docs/docs/ModelMergeQwenImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeQwenImage/pt-BR.md @@ -20,4 +20,4 @@ O nó ModelMergeQwenImage mescla dois modelos de IA combinando seus componentes | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado que combina componentes de ambos os modelos de entrada com os pesos especificados | \ No newline at end of file +| `model` | MODEL | O modelo mesclado que combina componentes de ambos os modelos de entrada com os pesos especificados | diff --git a/comfyui_embedded_docs/docs/ModelMergeQwenImage/tr.md b/comfyui_embedded_docs/docs/ModelMergeQwenImage/tr.md index 96c40b339..d899f1ddf 100644 --- a/comfyui_embedded_docs/docs/ModelMergeQwenImage/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeQwenImage/tr.md @@ -20,4 +20,4 @@ ModelMergeQwenImage düğümü, iki yapay zeka modelini bileşenlerini ayarlanab | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen ağırlıklarla her iki girdi modelinden bileşenlerin birleştirildiği birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen ağırlıklarla her iki girdi modelinden bileşenlerin birleştirildiği birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeQwenImage/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeQwenImage/zh-TW.md index 96c8ec6b4..f85bb66a5 100644 --- a/comfyui_embedded_docs/docs/ModelMergeQwenImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeQwenImage/zh-TW.md @@ -20,4 +20,4 @@ ModelMergeQwenImage 節點透過可調節的權重組合兩個 AI 模型的組 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 使用指定權重將兩個輸入模型的組件合併後的模型 | \ No newline at end of file +| `model` | MODEL | 使用指定權重將兩個輸入模型的組件合併後的模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD1/ar.md b/comfyui_embedded_docs/docs/ModelMergeSD1/ar.md index 6eb7519f6..405620e37 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD1/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD1/ar.md @@ -43,4 +43,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `MODEL` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `MODEL` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD1/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeSD1/pt-BR.md index 93566c837..24804662f 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD1/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD1/pt-BR.md @@ -43,4 +43,4 @@ O nó ModelMergeSD1 permite combinar dois modelos Stable Diffusion 1.x ajustando | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `MODEL` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | \ No newline at end of file +| `MODEL` | MODEL | O modelo mesclado que combina características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD1/tr.md b/comfyui_embedded_docs/docs/ModelMergeSD1/tr.md index 90693314e..c7585be22 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD1/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD1/tr.md @@ -43,4 +43,4 @@ ModelMergeSD1 düğümü, iki Stable Diffusion 1.x modelini farklı model bileş | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `MODEL` | MODEL | Her iki giriş modelinden özellikleri birleştiren harmanlanmış model | \ No newline at end of file +| `MODEL` | MODEL | Her iki giriş modelinden özellikleri birleştiren harmanlanmış model | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD1/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSD1/zh-TW.md index de7d3a43b..272d39779 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD1/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD1/zh-TW.md @@ -43,4 +43,4 @@ ModelMergeSD1 節點允許您透過調整不同模型組件的影響力,將兩 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `MODEL` | MODEL | 融合了兩個輸入模型特徵的合併模型 | \ No newline at end of file +| `MODEL` | MODEL | 融合了兩個輸入模型特徵的合併模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/ar.md b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/ar.md index 29af877c8..4890b44df 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/ar.md @@ -59,4 +59,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الناتج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لمعاملات المزج المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الناتج الذي يجمع الميزات من كلا النموذجين المدخلين وفقًا لمعاملات المزج المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/tr.md b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/tr.md index d2ddac8e6..89270fa48 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/tr.md @@ -59,4 +59,4 @@ ModelMergeSD35_Large düğümü, iki Stable Diffusion 3.5 Large modelini farklı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen karıştırma parametrelerine göre her iki girdi modelinden özelliklerin birleştirildiği ortaya çıkan birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen karıştırma parametrelerine göre her iki girdi modelinden özelliklerin birleştirildiği ortaya çıkan birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/zh-TW.md index dbeb7d247..d9ba6a84f 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD35_Large/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD35_Large/zh-TW.md @@ -59,4 +59,4 @@ ModelMergeSD35_Large 節點允許您透過調整不同模型組件的影響程 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 根據指定的混合參數,結合了兩個輸入模型特徵的最終合併模型 | \ No newline at end of file +| `model` | MODEL | 根據指定的混合參數,結合了兩個輸入模型特徵的最終合併模型 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/ar.md b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/ar.md index b2762ff56..a7adac59f 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/ar.md @@ -43,4 +43,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع ميزات من كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/pt-BR.md index 430332072..32c6be3fd 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/pt-BR.md @@ -43,4 +43,4 @@ O nó ModelMergeSD3_2B permite mesclar dois modelos Stable Diffusion 3 2B combin | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo mesclado, combinando características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo mesclado, combinando características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/tr.md b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/tr.md index 30d32b68a..a24b3ef2b 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/tr.md @@ -43,4 +43,4 @@ ModelMergeSD3_2B düğümü, iki adet Stable Diffusion 3 2B modelini, bileşenle | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki giriş modelinin özelliklerini birleştiren harmanlanmış model | \ No newline at end of file +| `model` | MODEL | Her iki giriş modelinin özelliklerini birleştiren harmanlanmış model | diff --git a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/zh-TW.md index a3b5e219b..8c8948b57 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSD3_2B/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSD3_2B/zh-TW.md @@ -43,4 +43,4 @@ ModelMergeSD3_2B 節點允許您透過以可調權重混合兩個 Stable Diffusi | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | \ No newline at end of file +| `model` | MODEL | 合併後的模型,結合了兩個輸入模型的特徵 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSDXL/ar.md b/comfyui_embedded_docs/docs/ModelMergeSDXL/ar.md index d47ef1d30..7c2d40b03 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSDXL/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSDXL/ar.md @@ -37,4 +37,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | نموذج SDXL المدمج الذي يجمع بين خصائص كلا النموذجين المدخلين | \ No newline at end of file +| `model` | MODEL | نموذج SDXL المدمج الذي يجمع بين خصائص كلا النموذجين المدخلين | diff --git a/comfyui_embedded_docs/docs/ModelMergeSDXL/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeSDXL/pt-BR.md index 42a00fba9..c0f6dd74c 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSDXL/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeSDXL/pt-BR.md @@ -37,4 +37,4 @@ O nó ModelMergeSDXL permite combinar dois modelos SDXL ajustando a influência | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo SDXL mesclado, combinando características de ambos os modelos de entrada | \ No newline at end of file +| `model` | MODEL | O modelo SDXL mesclado, combinando características de ambos os modelos de entrada | diff --git a/comfyui_embedded_docs/docs/ModelMergeSDXL/tr.md b/comfyui_embedded_docs/docs/ModelMergeSDXL/tr.md index 5a48881b1..9f785bcd7 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSDXL/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSDXL/tr.md @@ -37,4 +37,4 @@ ModelMergeSDXL düğümü, mimarinin farklı bölümlerinde her bir modelin etki | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Her iki giriş modelinden özellikleri birleştiren birleştirilmiş SDXL modeli | \ No newline at end of file +| `model` | MODEL | Her iki giriş modelinden özellikleri birleştiren birleştirilmiş SDXL modeli | diff --git a/comfyui_embedded_docs/docs/ModelMergeSDXL/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSDXL/zh-TW.md index 1f25afd1d..c2920da5d 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSDXL/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSDXL/zh-TW.md @@ -37,4 +37,4 @@ ModelMergeSDXL 節點允許您透過調整兩個模型在架構不同部分的 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 合併後的 SDXL 模型,結合了兩個輸入模型的特性 | \ No newline at end of file +| `model` | MODEL | 合併後的 SDXL 模型,結合了兩個輸入模型的特性 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSimple/ar.md b/comfyui_embedded_docs/docs/ModelMergeSimple/ar.md index b2dba3d3e..f6a359c55 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSimple/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSimple/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `model` | MODEL | النموذج المدمج الناتج، الذي يدمج عناصر من كلا النموذجين المدخلين وفقًا للنسبة المحددة. | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الناتج، الذي يدمج عناصر من كلا النموذجين المدخلين وفقًا للنسبة المحددة. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSimple/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeSimple/pt-BR.md index b5865196a..88742a733 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSimple/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeSimple/pt-BR.md @@ -16,4 +16,4 @@ O parâmetro `ratio` determina a proporção de mistura entre os dois modelos. Q | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | O modelo mesclado resultante, incorporando elementos de ambos os modelos de entrada de acordo com a proporção especificada. | \ No newline at end of file +| `model` | MODEL | O modelo mesclado resultante, incorporando elementos de ambos os modelos de entrada de acordo com a proporção especificada. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSimple/tr.md b/comfyui_embedded_docs/docs/ModelMergeSimple/tr.md index 17e583a9a..3591713d0 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSimple/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSimple/tr.md @@ -16,4 +16,4 @@ ModelMergeSimple düğümü, iki modelin parametrelerini belirli bir orana göre | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | Belirtilen orana göre her iki giriş modelinden unsurlar içeren, ortaya çıkan birleştirilmiş model. | \ No newline at end of file +| `model` | MODEL | Belirtilen orana göre her iki giriş modelinden unsurlar içeren, ortaya çıkan birleştirilmiş model. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSimple/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSimple/zh-TW.md index 35dddca49..26b4a5ad2 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSimple/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSimple/zh-TW.md @@ -16,4 +16,4 @@ ModelMergeSimple 節點專為合併兩個模型而設計,透過根據指定比 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `model` | MODEL | 合併後的結果模型,根據指定比例融合了兩個輸入模型的元素。 | \ No newline at end of file +| `model` | MODEL | 合併後的結果模型,根據指定比例融合了兩個輸入模型的元素。 | diff --git a/comfyui_embedded_docs/docs/ModelMergeSubtract/ar.md b/comfyui_embedded_docs/docs/ModelMergeSubtract/ar.md index b3c15ed5a..e6c491cc3 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSubtract/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeSubtract/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `model` | MODEL | النموذج الناتج بعد طرح معاملات نموذج من آخر، مع قياسها بواسطة المضاعف. | \ No newline at end of file +| `model` | MODEL | النموذج الناتج بعد طرح معاملات نموذج من آخر، مع قياسها بواسطة المضاعف. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSubtract/pt-BR.md b/comfyui_embedded_docs/docs/ModelMergeSubtract/pt-BR.md index 3676e541d..aa01d2027 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSubtract/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelMergeSubtract/pt-BR.md @@ -14,4 +14,4 @@ Este nó foi projetado para operações avançadas de fusão de modelos, especif | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | O modelo resultante após subtrair os parâmetros de um modelo de outro, escalonados pelo multiplicador. | \ No newline at end of file +| `model` | MODEL | O modelo resultante após subtrair os parâmetros de um modelo de outro, escalonados pelo multiplicador. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSubtract/tr.md b/comfyui_embedded_docs/docs/ModelMergeSubtract/tr.md index 2e1d04d43..315b4b6a5 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSubtract/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeSubtract/tr.md @@ -14,4 +14,4 @@ Bu düğüm, gelişmiş model birleştirme işlemleri için tasarlanmıştır ve | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------| -| `model` | MODEL | Bir modelin parametrelerini diğerinden çıkarıp çarpan değeri ile ölçeklendirdikten sonra elde edilen model. | \ No newline at end of file +| `model` | MODEL | Bir modelin parametrelerini diğerinden çıkarıp çarpan değeri ile ölçeklendirdikten sonra elde edilen model. | diff --git a/comfyui_embedded_docs/docs/ModelMergeSubtract/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeSubtract/zh-TW.md index b8e9e280b..410f33eb4 100644 --- a/comfyui_embedded_docs/docs/ModelMergeSubtract/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeSubtract/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `model` | MODEL | 將一個模型的參數按乘數縮放後從另一個模型減去所得到的最終模型。 | \ No newline at end of file +| `model` | MODEL | 將一個模型的參數按乘數縮放後從另一個模型減去所得到的最終模型。 | diff --git a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/ar.md b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/ar.md index 1798d1787..972b3be3a 100644 --- a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/ar.md +++ b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/ar.md @@ -61,4 +61,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المدمج الذي يجمع المكونات من كلا النموذجين المدخلين وفقًا للأوزان المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المدمج الذي يجمع المكونات من كلا النموذجين المدخلين وفقًا للأوزان المحددة | diff --git a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/tr.md b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/tr.md index bddc3d1ee..f5262e893 100644 --- a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/tr.md +++ b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/tr.md @@ -61,4 +61,4 @@ ModelMergeWAN2_1 düğümü, iki modelin bileşenlerini ağırlıklı ortalamala | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen ağırlıklara göre her iki giriş modelinden bileşenlerin birleştirilmesiyle oluşan birleştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen ağırlıklara göre her iki giriş modelinden bileşenlerin birleştirilmesiyle oluşan birleştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/zh-TW.md b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/zh-TW.md index a4e8913c7..df7bfd337 100644 --- a/comfyui_embedded_docs/docs/ModelMergeWAN2_1/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelMergeWAN2_1/zh-TW.md @@ -61,4 +61,4 @@ ModelMergeWAN2_1 節點透過加權平均的方式混合兩個模型的組件來 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 根據指定權重合併兩個輸入模型組件後產生的合併模型 | \ No newline at end of file +| `model` | MODEL | 根據指定權重合併兩個輸入模型組件後產生的合併模型 | diff --git a/comfyui_embedded_docs/docs/ModelPatchLoader/ar.md b/comfyui_embedded_docs/docs/ModelPatchLoader/ar.md index 3290458e0..5365153ad 100644 --- a/comfyui_embedded_docs/docs/ModelPatchLoader/ar.md +++ b/comfyui_embedded_docs/docs/ModelPatchLoader/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `MODEL_PATCH` | MODEL_PATCH | ترقيع النموذج المحمّل والمُغلّف في ModelPatcher لاستخدامه في سير العمل | \ No newline at end of file +| `MODEL_PATCH` | MODEL_PATCH | ترقيع النموذج المحمّل والمُغلّف في ModelPatcher لاستخدامه في سير العمل | diff --git a/comfyui_embedded_docs/docs/ModelPatchLoader/pt-BR.md b/comfyui_embedded_docs/docs/ModelPatchLoader/pt-BR.md index ca102ba86..ca950cbe2 100644 --- a/comfyui_embedded_docs/docs/ModelPatchLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelPatchLoader/pt-BR.md @@ -12,4 +12,4 @@ O nó ModelPatchLoader carrega patches de modelo especializados da pasta model_p | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `MODEL_PATCH` | MODEL_PATCH | O patch de modelo carregado, encapsulado em um ModelPatcher para uso no fluxo de trabalho | \ No newline at end of file +| `MODEL_PATCH` | MODEL_PATCH | O patch de modelo carregado, encapsulado em um ModelPatcher para uso no fluxo de trabalho | diff --git a/comfyui_embedded_docs/docs/ModelPatchLoader/tr.md b/comfyui_embedded_docs/docs/ModelPatchLoader/tr.md index f54325a5a..8e957e248 100644 --- a/comfyui_embedded_docs/docs/ModelPatchLoader/tr.md +++ b/comfyui_embedded_docs/docs/ModelPatchLoader/tr.md @@ -12,4 +12,4 @@ ModelPatchLoader düğümü, model_patches klasöründen özelleştirilmiş mode | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `MODEL_PATCH` | MODEL_PATCH | İş akışında kullanılmak üzere ModelPatcher içine sarılmış yüklenmiş model yaması | \ No newline at end of file +| `MODEL_PATCH` | MODEL_PATCH | İş akışında kullanılmak üzere ModelPatcher içine sarılmış yüklenmiş model yaması | diff --git a/comfyui_embedded_docs/docs/ModelPatchLoader/zh-TW.md b/comfyui_embedded_docs/docs/ModelPatchLoader/zh-TW.md index 81d68d5ce..99f3932bf 100644 --- a/comfyui_embedded_docs/docs/ModelPatchLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelPatchLoader/zh-TW.md @@ -14,4 +14,4 @@ ModelPatchLoader 節點從 model_patches 資料夾載入專門的模型修補檔 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `MODEL_PATCH` | MODEL_PATCH | 已載入的模型修補,封裝在 ModelPatcher 中以供工作流程使用 | \ No newline at end of file +| `MODEL_PATCH` | MODEL_PATCH | 已載入的模型修補,封裝在 ModelPatcher 中以供工作流程使用 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/ar.md b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/ar.md index 09884a929..c4bc897f9 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق إعداد أخذ عينات AuraFlow عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق إعداد أخذ عينات AuraFlow عليه | diff --git a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/pt-BR.md index 81cd5bac7..578ec2d2b 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/pt-BR.md @@ -13,4 +13,4 @@ O nó ModelSamplingAuraFlow aplica uma configuração de amostragem especializad | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a configuração de amostragem AuraFlow aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a configuração de amostragem AuraFlow aplicada | diff --git a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/tr.md b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/tr.md index ce8ab4656..d635413c5 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/tr.md @@ -13,4 +13,4 @@ ModelSamplingAuraFlow düğümü, difüzyon modellerine özel olarak AuraFlow mo | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | AuraFlow örnekleme yapılandırması uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | AuraFlow örnekleme yapılandırması uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/zh-TW.md index 3dd89863d..181b777f1 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingAuraFlow/zh-TW.md @@ -13,4 +13,4 @@ ModelSamplingAuraFlow 節點對擴散模型應用專用的採樣配置,特別 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 AuraFlow 採樣配置的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 AuraFlow 採樣配置的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/ar.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/ar.md index f2a77f991..08351c27e 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | Python dtype | الوصف | |---------|---------------|----------------------|--------| -| `النموذج` | `MODEL` | `torch.nn.Module` | النموذج المعزز مع قدرات أخذ العينات المستمرة باستخدام EDM المدمجة، جاهز للاستخدام الإضافي في مهام التوليد. | \ No newline at end of file +| `النموذج` | `MODEL` | `torch.nn.Module` | النموذج المعزز مع قدرات أخذ العينات المستمرة باستخدام EDM المدمجة، جاهز للاستخدام الإضافي في مهام التوليد. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/pt-BR.md index 8828753c9..07dd80f55 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/pt-BR.md @@ -15,4 +15,4 @@ Este nó foi projetado para aprimorar as capacidades de amostragem de um modelo | Parâmetro | Tipo de Dados | Python dtype | Descrição | |-----------|-------------|----------------------|-------------| -| `model` | MODEL | `torch.nn.Module` | O modelo aprimorado com capacidades integradas de amostragem contínua EDM, pronto para uso posterior em tarefas de geração. | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | O modelo aprimorado com capacidades integradas de amostragem contínua EDM, pronto para uso posterior em tarefas de geração. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/tr.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/tr.md index 86ce00f97..6288d2058 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/tr.md @@ -15,4 +15,4 @@ Bu düğüm, sürekli EDM (Enerji Tabanlı Yayılım Modelleri) örnekleme tekni | Parametre | Veri Türü | Python dtype | Açıklama | |-----------|-------------|---------------------|-------------| -| `model` | MODEL | `torch.nn.Module` | Entegre sürekli EDM örnekleme yeteneklerine sahip, geliştirilmiş model; üretim görevlerinde kullanıma hazır. | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | Entegre sürekli EDM örnekleme yeteneklerine sahip, geliştirilmiş model; üretim görevlerinde kullanıma hazır. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/zh-TW.md index 2850cad51..b66f802d3 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousEdm/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | Python 資料類型 | 描述 | |----------|-------------|----------------------|------| -| `model` | MODEL | `torch.nn.Module` | 具有整合連續 EDM 取樣功能的增強模型,已準備好用於後續的生成任務。 | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | 具有整合連續 EDM 取樣功能的增強模型,已準備好用於後續的生成任務。 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/ar.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/ar.md index 19788e4f0..ddb4967f4 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل بعد تطبيق أخذ العينات المستمرة بالتنبؤ بالقيمة V عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل بعد تطبيق أخذ العينات المستمرة بالتنبؤ بالقيمة V عليه | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/pt-BR.md index 03d303878..3a66b1e5e 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/pt-BR.md @@ -15,4 +15,4 @@ O nó ModelSamplingContinuousV modifica o comportamento de amostragem de um mode | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a amostragem de predição V contínua aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a amostragem de predição V contínua aplicada | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/tr.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/tr.md index dadd69a17..bae557ee7 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/tr.md @@ -15,4 +15,4 @@ ModelSamplingContinuousV düğümü, bir modelin örnekleme davranışını sür | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Sürekli V-tahmini örnekleme uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Sürekli V-tahmini örnekleme uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/zh-TW.md index b3e2ce3f9..85666fbb4 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingContinuousV/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingContinuousV/zh-TW.md @@ -15,4 +15,4 @@ ModelSamplingContinuousV 節點透過應用連續 V-prediction 採樣參數來 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用連續 V-prediction 採樣的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用連續 V-prediction 採樣的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/ar.md b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/ar.md index 34340ceb3..95dc43d92 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | Python dtype | الوصف | |-----------|-------------|-------------------|-------------| -| `النموذج` | MODEL | `torch.nn.Module` | النموذج المعدل مع استراتيجية أخذ العينات المنفصلة المطبقة. هذا النموذج مجهز الآن لتوليد عينات باستخدام الطريقة والتعديلات المحددة. | \ No newline at end of file +| `النموذج` | MODEL | `torch.nn.Module` | النموذج المعدل مع استراتيجية أخذ العينات المنفصلة المطبقة. هذا النموذج مجهز الآن لتوليد عينات باستخدام الطريقة والتعديلات المحددة. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/pt-BR.md index e75f3a0cf..3cd571408 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/pt-BR.md @@ -14,4 +14,4 @@ Este nó foi projetado para modificar o comportamento de amostragem de um modelo | Parâmetro | Tipo de Dados | Python dtype | Descrição | |-----------|-------------|-------------------|-------------| -| `model` | MODEL | `torch.nn.Module` | O modelo modificado com a estratégia de amostragem discreta aplicada. Este modelo agora está equipado para gerar amostras usando o método e os ajustes especificados. | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | O modelo modificado com a estratégia de amostragem discreta aplicada. Este modelo agora está equipado para gerar amostras usando o método e os ajustes especificados. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/tr.md b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/tr.md index 4947f5685..1fa6feb78 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/tr.md @@ -14,4 +14,4 @@ Bu düğüm, ayrık örnekleme stratejisi uygulayarak bir modelin örnekleme dav | Parametre | Veri Tipi | Python dtype | Açıklama | |-----------|-------------|-------------------|-------------| -| `model` | MODEL | `torch.nn.Module` | Uygulanan ayrık örnekleme stratejisine sahip değiştirilmiş model. Bu model artık belirtilen yöntem ve ayarları kullanarak örnek üretebilecek şekilde donatılmıştır. | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | Uygulanan ayrık örnekleme stratejisine sahip değiştirilmiş model. Bu model artık belirtilen yöntem ve ayarları kullanarak örnek üretebilecek şekilde donatılmıştır. | diff --git a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/zh-TW.md index c118bcbeb..868c85580 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingDiscrete/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingDiscrete/zh-TW.md @@ -14,4 +14,4 @@ | 參數名稱 | 資料類型 | Python 資料類型 | 描述 | |----------|-------------|-------------------|-------------| -| `model` | MODEL | `torch.nn.Module` | 已應用離散取樣策略的修改後模型。該模型現在配備了使用指定方法和調整來生成樣本的能力。 | \ No newline at end of file +| `model` | MODEL | `torch.nn.Module` | 已應用離散取樣策略的修改後模型。該模型現在配備了使用指定方法和調整來生成樣本的能力。 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingFlux/ar.md b/comfyui_embedded_docs/docs/ModelSamplingFlux/ar.md index 7df09c9fc..933cb0faa 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingFlux/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingFlux/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق تكوين أخذ عينات Flux | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق تكوين أخذ عينات Flux | diff --git a/comfyui_embedded_docs/docs/ModelSamplingFlux/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingFlux/pt-BR.md index 51bcd6fc2..bdbd2e632 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingFlux/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingFlux/pt-BR.md @@ -16,4 +16,4 @@ O nó ModelSamplingFlux aplica a amostragem do modelo Flux a um determinado mode | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a configuração de amostragem Flux aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a configuração de amostragem Flux aplicada | diff --git a/comfyui_embedded_docs/docs/ModelSamplingFlux/tr.md b/comfyui_embedded_docs/docs/ModelSamplingFlux/tr.md index 13743d694..2d72328d0 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingFlux/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingFlux/tr.md @@ -16,4 +16,4 @@ ModelSamplingFlux düğümü, görüntü boyutlarına dayalı olarak bir kaydır | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Flux örnekleme yapılandırması uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Flux örnekleme yapılandırması uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingFlux/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingFlux/zh-TW.md index 80c45d2ad..c361f76db 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingFlux/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingFlux/zh-TW.md @@ -16,4 +16,4 @@ ModelSamplingFlux 節點透過根據圖像尺寸計算偏移參數,將 Flux | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 Flux 採樣配置的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 Flux 採樣配置的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingLTXV/ar.md b/comfyui_embedded_docs/docs/ModelSamplingLTXV/ar.md index fc63142c9..30956d90d 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingLTXV/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingLTXV/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع معاملات أخذ العينات المطبقة | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع معاملات أخذ العينات المطبقة | diff --git a/comfyui_embedded_docs/docs/ModelSamplingLTXV/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingLTXV/pt-BR.md index f0d02e0e3..2bd14c467 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingLTXV/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingLTXV/pt-BR.md @@ -15,4 +15,4 @@ O nó ModelSamplingLTXV aplica parâmetros de amostragem avançados a um modelo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com os parâmetros de amostragem aplicados | \ No newline at end of file +| `model` | MODEL | O modelo modificado com os parâmetros de amostragem aplicados | diff --git a/comfyui_embedded_docs/docs/ModelSamplingLTXV/tr.md b/comfyui_embedded_docs/docs/ModelSamplingLTXV/tr.md index b4885e812..c07640716 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingLTXV/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingLTXV/tr.md @@ -15,4 +15,4 @@ ModelSamplingLTXV düğümü, bir modele belirteç sayısına dayalı gelişmiş | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Uygulanan örnekleme parametreleriyle değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Uygulanan örnekleme parametreleriyle değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingLTXV/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingLTXV/zh-TW.md index 94847dd02..f3f6a59f4 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingLTXV/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingLTXV/zh-TW.md @@ -15,4 +15,4 @@ ModelSamplingLTXV 節點根據 token 數量對模型應用進階採樣參數。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用採樣參數的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用採樣參數的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingSD3/ar.md b/comfyui_embedded_docs/docs/ModelSamplingSD3/ar.md index ee70d1ad5..4c7c698e4 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingSD3/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingSD3/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق معاملات أخذ العينات الخاصة بـ SD3 عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق معاملات أخذ العينات الخاصة بـ SD3 عليه | diff --git a/comfyui_embedded_docs/docs/ModelSamplingSD3/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingSD3/pt-BR.md index 97d66c4b4..d7a81819f 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingSD3/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingSD3/pt-BR.md @@ -13,4 +13,4 @@ O nó ModelSamplingSD3 aplica os parâmetros de amostragem do Stable Diffusion 3 | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com os parâmetros de amostragem SD3 aplicados | \ No newline at end of file +| `model` | MODEL | O modelo modificado com os parâmetros de amostragem SD3 aplicados | diff --git a/comfyui_embedded_docs/docs/ModelSamplingSD3/tr.md b/comfyui_embedded_docs/docs/ModelSamplingSD3/tr.md index cb056165b..de9cf2eb9 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingSD3/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingSD3/tr.md @@ -13,4 +13,4 @@ ModelSamplingSD3 düğümü, bir modele Stable Diffusion 3 örnekleme parametrel | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | SD3 örnekleme parametreleri uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | SD3 örnekleme parametreleri uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingSD3/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingSD3/zh-TW.md index 2ca4f1a85..7276aacd8 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingSD3/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingSD3/zh-TW.md @@ -13,4 +13,4 @@ ModelSamplingSD3 節點將 Stable Diffusion 3 採樣參數應用於模型。它 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 SD3 採樣參數的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 SD3 採樣參數的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/ar.md b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/ar.md index 02966cbfd..70e2dc82f 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/ar.md +++ b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق أخذ العينات المُستقرة المُتتابعة عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق أخذ العينات المُستقرة المُتتابعة عليه | diff --git a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/pt-BR.md b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/pt-BR.md index 988659374..07cdfab14 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/pt-BR.md @@ -13,4 +13,4 @@ O nó ModelSamplingStableCascade aplica a amostragem estável em cascata a um mo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a amostragem estável em cascata aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a amostragem estável em cascata aplicada | diff --git a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/tr.md b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/tr.md index 4785b501e..6ea6784fe 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/tr.md +++ b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/tr.md @@ -13,4 +13,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Kararlı kademeli örnekleme uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Kararlı kademeli örnekleme uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/zh-TW.md b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/zh-TW.md index 487faac45..72cc3f862 100644 --- a/comfyui_embedded_docs/docs/ModelSamplingStableCascade/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSamplingStableCascade/zh-TW.md @@ -15,4 +15,4 @@ ModelSamplingStableCascade 節點透過使用偏移值調整採樣參數,對 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用穩定級聯採樣的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用穩定級聯採樣的修改後模型 | diff --git a/comfyui_embedded_docs/docs/ModelSave/ar.md b/comfyui_embedded_docs/docs/ModelSave/ar.md index ec70805fb..7614d9ccb 100644 --- a/comfyui_embedded_docs/docs/ModelSave/ar.md +++ b/comfyui_embedded_docs/docs/ModelSave/ar.md @@ -17,4 +17,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| *لا يوجد* | - | هذه العُقدة لا تُرجع أي قيم مخرجات | \ No newline at end of file +| *لا يوجد* | - | هذه العُقدة لا تُرجع أي قيم مخرجات | diff --git a/comfyui_embedded_docs/docs/ModelSave/pt-BR.md b/comfyui_embedded_docs/docs/ModelSave/pt-BR.md index 51251b50a..2e76c2012 100644 --- a/comfyui_embedded_docs/docs/ModelSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/ModelSave/pt-BR.md @@ -15,4 +15,4 @@ O nó ModelSave salva modelos treinados ou modificados no armazenamento do seu c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma* | - | Este nó não retorna nenhum valor de saída | \ No newline at end of file +| *Nenhuma* | - | Este nó não retorna nenhum valor de saída | diff --git a/comfyui_embedded_docs/docs/ModelSave/tr.md b/comfyui_embedded_docs/docs/ModelSave/tr.md index ebf1c7114..0b7a520fb 100644 --- a/comfyui_embedded_docs/docs/ModelSave/tr.md +++ b/comfyui_embedded_docs/docs/ModelSave/tr.md @@ -15,4 +15,4 @@ ModelSave düğümü, eğitilmiş veya değiştirilmiş modelleri bilgisayarın | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Yok* | - | Bu düğüm herhangi bir çıktı değeri döndürmez | \ No newline at end of file +| *Yok* | - | Bu düğüm herhangi bir çıktı değeri döndürmez | diff --git a/comfyui_embedded_docs/docs/ModelSave/zh-TW.md b/comfyui_embedded_docs/docs/ModelSave/zh-TW.md index a1c2afc99..7a871bd52 100644 --- a/comfyui_embedded_docs/docs/ModelSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/ModelSave/zh-TW.md @@ -15,4 +15,4 @@ ModelSave 節點可將訓練完成或修改後的模型儲存至您的電腦儲 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| *無* | - | 此節點不返回任何輸出值 | \ No newline at end of file +| *無* | - | 此節點不返回任何輸出值 | diff --git a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/ar.md b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/ar.md index 46b595081..45dffccdd 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو الناتج المُولَّد | \ No newline at end of file +| `output` | VIDEO | الفيديو الناتج المُولَّد | diff --git a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/pt-BR.md index 260a072a7..64fcfd1cb 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/pt-BR.md @@ -23,4 +23,4 @@ O nó Moonvalley Marey Image to Video transforma uma imagem de referência em um | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado na saída | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado na saída | diff --git a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/tr.md b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/tr.md index cbb69cc7b..0342eed20 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/tr.md @@ -23,4 +23,4 @@ Moonvalley Marey Görüntüden Videoya düğümü, bir referans görüntüyü Mo | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video çıktısı | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/zh-TW.md index 78592a51b..d79a2ab5b 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MoonvalleyImg2VideoNode/zh-TW.md @@ -23,4 +23,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片輸出 | \ No newline at end of file +| `output` | VIDEO | 生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/ar.md b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/ar.md index 13879332e..f58d427c8 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | مخرجات الفيديو المُولَّدة استنادًا إلى النص التوجيهي | \ No newline at end of file +| `video` | VIDEO | مخرجات الفيديو المُولَّدة استنادًا إلى النص التوجيهي | diff --git a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/pt-BR.md index 6e0ee7e40..3eaf47c47 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/pt-BR.md @@ -17,4 +17,4 @@ O nó Moonvalley Marey Text to Video gera conteúdo de vídeo a partir de descri | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | O vídeo gerado com base no prompt de texto | \ No newline at end of file +| `video` | VIDEO | O vídeo gerado com base no prompt de texto | diff --git a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/tr.md b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/tr.md index 7411e7777..df7f8bb37 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/tr.md @@ -17,4 +17,4 @@ Moonvalley Marey Metinden Videoya düğümü, Moonvalley API'sini kullanarak met | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | Metin istemine dayalı olarak oluşturulan video çıktısı | \ No newline at end of file +| `video` | VIDEO | Metin istemine dayalı olarak oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/zh-TW.md index f43a35063..9df644a1b 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MoonvalleyTxt2VideoNode/zh-TW.md @@ -17,4 +17,4 @@ Moonvalley Marey 文字轉影片節點使用 Moonvalley API,能根據文字描 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `video` | VIDEO | 根據文字提示生成的影片輸出 | \ No newline at end of file +| `video` | VIDEO | 根據文字提示生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/ar.md b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/ar.md index 8ff23b057..bd2652048 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/ar.md +++ b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/ar.md @@ -20,4 +20,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو الناتج المُولَّد | \ No newline at end of file +| `output` | VIDEO | الفيديو الناتج المُولَّد | diff --git a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/pt-BR.md b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/pt-BR.md index 3e23eea4e..3e1b08a8f 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/pt-BR.md @@ -20,4 +20,4 @@ O nó Moonvalley Marey Video to Video transforma um vídeo de entrada em um novo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado na saída | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado na saída | diff --git a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/tr.md b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/tr.md index f7ea887b6..f1b8ad7da 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/tr.md +++ b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/tr.md @@ -20,4 +20,4 @@ Moonvalley Marey Video'dan Video'ya düğümü, bir giriş videosunu metin açı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video çıktısı | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/zh-TW.md b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/zh-TW.md index 0c1ca1db9..9c4d60cc5 100644 --- a/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/MoonvalleyVideo2VideoNode/zh-TW.md @@ -20,4 +20,4 @@ Moonvalley Marey 影片轉影片節點能將輸入影片根據文字描述轉換 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片輸出 | \ No newline at end of file +| `output` | VIDEO | 生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/Morphology/ar.md b/comfyui_embedded_docs/docs/Morphology/ar.md index b09c66a92..2fd1f5132 100644 --- a/comfyui_embedded_docs/docs/Morphology/ar.md +++ b/comfyui_embedded_docs/docs/Morphology/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `الصورة` | IMAGE | الصورة المُعالَجَة بعد تطبيق العملية المورفولوجية | \ No newline at end of file +| `الصورة` | IMAGE | الصورة المُعالَجَة بعد تطبيق العملية المورفولوجية | diff --git a/comfyui_embedded_docs/docs/Morphology/pt-BR.md b/comfyui_embedded_docs/docs/Morphology/pt-BR.md index 36b2e5675..39e09859b 100644 --- a/comfyui_embedded_docs/docs/Morphology/pt-BR.md +++ b/comfyui_embedded_docs/docs/Morphology/pt-BR.md @@ -14,4 +14,4 @@ O nó Morphology aplica várias operações morfológicas a imagens, que são op | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem processada após a aplicação da operação morfológica | \ No newline at end of file +| `image` | IMAGE | A imagem processada após a aplicação da operação morfológica | diff --git a/comfyui_embedded_docs/docs/Morphology/tr.md b/comfyui_embedded_docs/docs/Morphology/tr.md index 83cdc0e2f..e00e26936 100644 --- a/comfyui_embedded_docs/docs/Morphology/tr.md +++ b/comfyui_embedded_docs/docs/Morphology/tr.md @@ -14,4 +14,4 @@ Morphology düğümü, görüntülerdeki şekilleri işlemek ve analiz etmek iç | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Morfolojik işlem uygulandıktan sonra işlenmiş görüntü | \ No newline at end of file +| `görüntü` | IMAGE | Morfolojik işlem uygulandıktan sonra işlenmiş görüntü | diff --git a/comfyui_embedded_docs/docs/Morphology/zh-TW.md b/comfyui_embedded_docs/docs/Morphology/zh-TW.md index 55c3de70d..72e15b22b 100644 --- a/comfyui_embedded_docs/docs/Morphology/zh-TW.md +++ b/comfyui_embedded_docs/docs/Morphology/zh-TW.md @@ -14,4 +14,4 @@ Morphology 節點對影像套用各種形態學操作,這些是基於數學運 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `影像` | IMAGE | 套用形態學操作後處理完成的影像 | \ No newline at end of file +| `影像` | IMAGE | 套用形態學操作後處理完成的影像 | diff --git a/comfyui_embedded_docs/docs/NAGuidance/ar.md b/comfyui_embedded_docs/docs/NAGuidance/ar.md new file mode 100644 index 000000000..d9b40bdab --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/ar.md) + +يُطبق عقد NAGuidance توجيه الانتباه المُعَير على نموذج. تتيح هذه التقنية استخدام المُطْلَبات السلبية مع النماذج المقطرة أو السريعة من خلال تعديل آلية انتباه النموذج أثناء عملية أخذ العينات لتوجيه عملية التوليد بعيدًا عن المفاهيم غير المرغوب فيها. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | نعم | - | النموذج المراد تطبيق توجيه الانتباه المُعَير عليه. | +| `nag_scale` | FLOAT | نعم | 0.0 - 50.0 | عامل مقياس التوجيه. تؤدي القيم الأعلى إلى دفع عملية التوليد بعيدًا عن المُطْلَب السلبي. (الافتراضي: 5.0) | +| `nag_alpha` | FLOAT | نعم | 0.0 - 1.0 | عامل المزج للانتباه المُعَير. القيمة 1.0 تستبدل الانتباه الأصلي بالكامل، بينما القيمة 0.0 ليس لها تأثير. (الافتراضي: 0.5) | +| `nag_tau` | FLOAT | نعم | 1.0 - 10.0 | عامل تحجيم يُستخدم للحد من نسبة التعيير. (الافتراضي: 1.5) | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `model` | MODEL | النموذج المُعدّل مع تفعيل توجيه الانتباه المُعَير. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/en.md b/comfyui_embedded_docs/docs/NAGuidance/en.md new file mode 100644 index 000000000..5eed02ef7 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/en.md) + +The NAGuidance node applies Normalized Attention Guidance to a model. This technique enables the use of negative prompts with distilled or schnell models by modifying the model's attention mechanism during the sampling process to steer the generation away from undesired concepts. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Yes | - | The model to apply Normalized Attention Guidance to. | +| `nag_scale` | FLOAT | Yes | 0.0 - 50.0 | The guidance scale factor. Higher values push the generation further from the negative prompt. (default: 5.0) | +| `nag_alpha` | FLOAT | Yes | 0.0 - 1.0 | The blending factor for the normalized attention. A value of 1.0 fully replaces the original attention, while 0.0 has no effect. (default: 0.5) | +| `nag_tau` | FLOAT | Yes | 1.0 - 10.0 | A scaling factor used to limit the normalization ratio. (default: 1.5) | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `model` | MODEL | The patched model with Normalized Attention Guidance enabled. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/es.md b/comfyui_embedded_docs/docs/NAGuidance/es.md new file mode 100644 index 000000000..77aa46e20 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/es.md) + +El nodo NAGuidance aplica Orientación de Atención Normalizada a un modelo. Esta técnica permite el uso de indicaciones negativas con modelos destilados o schnell modificando el mecanismo de atención del modelo durante el proceso de muestreo para dirigir la generación lejos de conceptos no deseados. + +## Entradas + +| Parámetro | Tipo de Dato | Requerido | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Sí | - | El modelo al que se aplicará la Orientación de Atención Normalizada. | +| `nag_scale` | FLOAT | Sí | 0.0 - 50.0 | El factor de escala de orientación. Valores más altos alejan más la generación de la indicación negativa. (por defecto: 5.0) | +| `nag_alpha` | FLOAT | Sí | 0.0 - 1.0 | El factor de mezcla para la atención normalizada. Un valor de 1.0 reemplaza completamente la atención original, mientras que 0.0 no tiene efecto. (por defecto: 0.5) | +| `nag_tau` | FLOAT | Sí | 1.0 - 10.0 | Un factor de escala utilizado para limitar la relación de normalización. (por defecto: 1.5) | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `model` | MODEL | El modelo modificado con la Orientación de Atención Normalizada activada. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/fr.md b/comfyui_embedded_docs/docs/NAGuidance/fr.md new file mode 100644 index 000000000..eafd2d4b2 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/fr.md) + +Le nœud NAGuidance applique le guidage d'attention normalisé (Normalized Attention Guidance) à un modèle. Cette technique permet d'utiliser des prompts négatifs avec des modèles distillés ou schnell en modifiant le mécanisme d'attention du modèle pendant le processus d'échantillonnage pour orienter la génération à l'écart des concepts indésirables. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Oui | - | Le modèle auquel appliquer le guidage d'attention normalisé. | +| `nag_scale` | FLOAT | Oui | 0.0 - 50.0 | Le facteur d'échelle du guidage. Des valeurs plus élevées éloignent davantage la génération du prompt négatif. (par défaut : 5.0) | +| `nag_alpha` | FLOAT | Oui | 0.0 - 1.0 | Le facteur de mélange pour l'attention normalisée. Une valeur de 1.0 remplace complètement l'attention d'origine, tandis que 0.0 n'a aucun effet. (par défaut : 0.5) | +| `nag_tau` | FLOAT | Oui | 1.0 - 10.0 | Un facteur d'échelle utilisé pour limiter le ratio de normalisation. (par défaut : 1.5) | + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `model` | MODEL | Le modèle modifié avec le guidage d'attention normalisé activé. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/ja.md b/comfyui_embedded_docs/docs/NAGuidance/ja.md new file mode 100644 index 000000000..d078a8376 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/ja.md) + +NAGuidanceノードは、モデルにNormalized Attention Guidanceを適用します。この手法は、サンプリングプロセス中にモデルの注意機構を変更して、望ましくない概念から生成を遠ざけることで、蒸留モデルやschnellモデルでネガティブプロンプトを使用できるようにします。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | はい | - | Normalized Attention Guidanceを適用するモデル。 | +| `nag_scale` | FLOAT | はい | 0.0 - 50.0 | ガイダンスの強度を制御するスケール係数。値が高いほど、生成結果がネガティブプロンプトから遠ざかります。(デフォルト: 5.0) | +| `nag_alpha` | FLOAT | はい | 0.0 - 1.0 | 正規化された注意機構のブレンド係数。1.0に設定すると元の注意機構を完全に置き換え、0.0では効果がありません。(デフォルト: 0.5) | +| `nag_tau` | FLOAT | はい | 1.0 - 10.0 | 正規化比率を制限するために使用されるスケーリング係数。(デフォルト: 1.5) | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `model` | MODEL | Normalized Attention Guidanceが有効化されたパッチ適用済みモデル。 | diff --git a/comfyui_embedded_docs/docs/NAGuidance/ko.md b/comfyui_embedded_docs/docs/NAGuidance/ko.md new file mode 100644 index 000000000..09b67aa2d --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/ko.md) + +NAGuidance 노드는 모델에 정규화된 어텐션 가이던스를 적용합니다. 이 기술은 샘플링 과정에서 모델의 어텐션 메커니즘을 수정하여 원하지 않는 개념에서 생성 방향을 이끌어내어, 증류된 모델이나 schnell 모델에서도 네거티브 프롬프트를 사용할 수 있도록 합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | 예 | - | 정규화된 어텐션 가이던스를 적용할 모델입니다. | +| `nag_scale` | FLOAT | 예 | 0.0 - 50.0 | 가이던스 스케일 계수입니다. 값이 높을수록 생성 결과가 네거티브 프롬프트에서 더 멀어집니다. (기본값: 5.0) | +| `nag_alpha` | FLOAT | 예 | 0.0 - 1.0 | 정규화된 어텐션의 혼합 계수입니다. 값이 1.0이면 원래 어텐션을 완전히 대체하며, 0.0이면 효과가 없습니다. (기본값: 0.5) | +| `nag_tau` | FLOAT | 예 | 1.0 - 10.0 | 정규화 비율을 제한하는 데 사용되는 스케일링 계수입니다. (기본값: 1.5) | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `model` | MODEL | 정규화된 어텐션 가이던스가 활성화된 패치된 모델입니다. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/pt-BR.md b/comfyui_embedded_docs/docs/NAGuidance/pt-BR.md new file mode 100644 index 000000000..04eb00bcd --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/pt-BR.md) + +O nó NAGuidance aplica Normalized Attention Guidance (Orientação de Atenção Normalizada) a um modelo. Esta técnica permite o uso de *prompts* negativos com modelos destilados ou schnell, modificando o mecanismo de atenção do modelo durante o processo de amostragem para direcionar a geração para longe de conceitos indesejados. + +## Entradas + +| Parâmetro | Tipo de Dado | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Sim | - | O modelo ao qual aplicar a Normalized Attention Guidance. | +| `nag_scale` | FLOAT | Sim | 0.0 - 50.0 | O fator de escala da orientação. Valores mais altos afastam mais a geração do *prompt* negativo. (padrão: 5.0) | +| `nag_alpha` | FLOAT | Sim | 0.0 - 1.0 | O fator de mistura para a atenção normalizada. Um valor de 1.0 substitui completamente a atenção original, enquanto 0.0 não tem efeito. (padrão: 0.5) | +| `nag_tau` | FLOAT | Sim | 1.0 - 10.0 | Um fator de escala usado para limitar a razão de normalização. (padrão: 1.5) | + +## Saídas + +| Nome da Saída | Tipo de Dado | Descrição | +|-------------|-----------|-------------| +| `model` | MODEL | O modelo modificado com a Normalized Attention Guidance ativada. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/ru.md b/comfyui_embedded_docs/docs/NAGuidance/ru.md new file mode 100644 index 000000000..f29353cee --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/ru.md) + +Узел NAGuidance применяет Normalized Attention Guidance к модели. Эта техника позволяет использовать негативные промпты с дистиллированными или schnell-моделями, модифицируя механизм внимания модели в процессе сэмплирования, чтобы направлять генерацию в сторону от нежелательных концепций. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Да | - | Модель, к которой применяется Normalized Attention Guidance. | +| `nag_scale` | FLOAT | Да | 0.0 - 50.0 | Коэффициент силы гида. Более высокие значения сильнее отталкивают генерацию от негативного промпта. (по умолчанию: 5.0) | +| `nag_alpha` | FLOAT | Да | 0.0 - 1.0 | Коэффициент смешивания для нормализованного внимания. Значение 1.0 полностью заменяет исходное внимание, а 0.0 не оказывает эффекта. (по умолчанию: 0.5) | +| `nag_tau` | FLOAT | Да | 1.0 - 10.0 | Масштабирующий коэффициент, используемый для ограничения нормирующего отношения. (по умолчанию: 1.5) | + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `model` | MODEL | Модифицированная модель с включенным Normalized Attention Guidance. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/tr.md b/comfyui_embedded_docs/docs/NAGuidance/tr.md new file mode 100644 index 000000000..aa0151d60 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/tr.md) + +NAGuidance düğümü, bir modele Normalize Edilmiş Dikkat Yönlendirmesi uygular. Bu teknik, örnekleme sürecinde modelin dikkat mekanizmasını değiştirerek istenmeyen kavramlardan uzaklaşmayı sağlar ve böylece damıtılmış veya schnell modellerle negatif prompt'ların kullanılmasına olanak tanır. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | Evet | - | Normalize Edilmiş Dikkat Yönlendirmesi uygulanacak model. | +| `nag_scale` | FLOAT | Evet | 0.0 - 50.0 | Yönlendirme ölçek faktörü. Daha yüksek değerler, üretimi negatif prompt'tan daha fazla uzaklaştırır. (varsayılan: 5.0) | +| `nag_alpha` | FLOAT | Evet | 0.0 - 1.0 | Normalize edilmiş dikkat için karıştırma faktörü. 1.0 değeri orijinal dikkati tamamen değiştirirken, 0.0 değerinin hiçbir etkisi yoktur. (varsayılan: 0.5) | +| `nag_tau` | FLOAT | Evet | 1.0 - 10.0 | Normalleştirme oranını sınırlamak için kullanılan bir ölçeklendirme faktörü. (varsayılan: 1.5) | + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `model` | MODEL | Normalize Edilmiş Dikkat Yönlendirmesi etkinleştirilmiş, yamalanmış model. | diff --git a/comfyui_embedded_docs/docs/NAGuidance/zh-TW.md b/comfyui_embedded_docs/docs/NAGuidance/zh-TW.md new file mode 100644 index 000000000..6c18596c6 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/zh-TW.md) + +NAGuidance 節點對模型套用標準化注意力引導技術。此技術透過在採樣過程中修改模型的注意力機制,使生成結果遠離不期望的概念,從而讓蒸餾模型或快速模型也能使用負向提示詞。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | 是 | - | 要套用標準化注意力引導的模型。 | +| `nag_scale` | FLOAT | 是 | 0.0 - 50.0 | 引導強度係數。數值越高,生成結果越遠離負向提示詞的內容。(預設值:5.0) | +| `nag_alpha` | FLOAT | 是 | 0.0 - 1.0 | 標準化注意力的混合係數。數值為 1.0 時會完全取代原始注意力,0.0 則無任何效果。(預設值:0.5) | +| `nag_tau` | FLOAT | 是 | 1.0 - 10.0 | 用於限制標準化比例的縮放係數。(預設值:1.5) | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `model` | MODEL | 已啟用標準化注意力引導的修補後模型。 | diff --git a/comfyui_embedded_docs/docs/NAGuidance/zh.md b/comfyui_embedded_docs/docs/NAGuidance/zh.md new file mode 100644 index 000000000..05801a4a4 --- /dev/null +++ b/comfyui_embedded_docs/docs/NAGuidance/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/NAGuidance/zh.md) + +NAGuidance 节点对模型应用归一化注意力引导技术。该技术通过修改采样过程中模型的注意力机制,引导生成过程远离不期望的概念,从而使得蒸馏模型或快速模型能够使用负向提示词。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model` | MODEL | 是 | - | 要应用归一化注意力引导的模型。 | +| `nag_scale` | FLOAT | 是 | 0.0 - 50.0 | 引导强度因子。值越高,生成结果越远离负向提示词。(默认值:5.0) | +| `nag_alpha` | FLOAT | 是 | 0.0 - 1.0 | 归一化注意力的混合因子。值为 1.0 时完全替换原始注意力,值为 0.0 时无效果。(默认值:0.5) | +| `nag_tau` | FLOAT | 是 | 1.0 - 10.0 | 用于限制归一化比率的缩放因子。(默认值:1.5) | + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `model` | MODEL | 已启用归一化注意力引导的修补后模型。 | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/ar.md b/comfyui_embedded_docs/docs/NormalizeImages/ar.md index 5d50709e4..307ddc989 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/ar.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد تطبيق عملية التطبيع. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد تطبيق عملية التطبيع. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/en.md b/comfyui_embedded_docs/docs/NormalizeImages/en.md index 23b308f62..098e41e65 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/en.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/en.md @@ -14,4 +14,4 @@ This node adjusts the pixel values of an input image using a mathematical normal | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resulting image after the normalization process has been applied. | \ No newline at end of file +| `image` | IMAGE | The resulting image after the normalization process has been applied. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/es.md b/comfyui_embedded_docs/docs/NormalizeImages/es.md index 47869462d..daff0cc9d 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/es.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/es.md @@ -14,4 +14,4 @@ Este nodo ajusta los valores de píxel de una imagen de entrada mediante un proc | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen resultante después de aplicar el proceso de normalización. | \ No newline at end of file +| `image` | IMAGE | La imagen resultante después de aplicar el proceso de normalización. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/fr.md b/comfyui_embedded_docs/docs/NormalizeImages/fr.md index 6cc031554..f7e646e0d 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/fr.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/fr.md @@ -14,4 +14,4 @@ Ce nœud ajuste les valeurs des pixels d'une image d'entrée en utilisant un pro | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image résultante après l'application du processus de normalisation. | \ No newline at end of file +| `image` | IMAGE | L'image résultante après l'application du processus de normalisation. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/ja.md b/comfyui_embedded_docs/docs/NormalizeImages/ja.md index 3fd092bc9..b7af720a5 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/ja.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/ja.md @@ -14,4 +14,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | 正規化処理が適用された結果の画像です。 | \ No newline at end of file +| `image` | IMAGE | 正規化処理が適用された結果の画像です。 | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/ko.md b/comfyui_embedded_docs/docs/NormalizeImages/ko.md index c8572b3dc..71cd64f83 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/ko.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/ko.md @@ -14,4 +14,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 정규화 과정이 적용된 결과 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 정규화 과정이 적용된 결과 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/pt-BR.md b/comfyui_embedded_docs/docs/NormalizeImages/pt-BR.md index 003145e99..535200692 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/pt-BR.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/pt-BR.md @@ -14,4 +14,4 @@ Este nó ajusta os valores de pixel de uma imagem de entrada usando um processo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem resultante após a aplicação do processo de normalização. | \ No newline at end of file +| `image` | IMAGE | A imagem resultante após a aplicação do processo de normalização. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/ru.md b/comfyui_embedded_docs/docs/NormalizeImages/ru.md index 9c5fa84af..3eeff041f 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/ru.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Результирующее изображение после применения процесса нормализации. | \ No newline at end of file +| `image` | IMAGE | Результирующее изображение после применения процесса нормализации. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/tr.md b/comfyui_embedded_docs/docs/NormalizeImages/tr.md index 08f636522..c4128eefa 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/tr.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/tr.md @@ -14,4 +14,4 @@ Bu düğüm, bir giriş görüntüsünün piksel değerlerini matematiksel bir n | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Normalleştirme işlemi uygulandıktan sonra elde edilen görüntü. | \ No newline at end of file +| `image` | IMAGE | Normalleştirme işlemi uygulandıktan sonra elde edilen görüntü. | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/zh-TW.md b/comfyui_embedded_docs/docs/NormalizeImages/zh-TW.md index 5b7ba9900..62ae5a2d8 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/zh-TW.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 套用標準化處理後產生的圖像。 | \ No newline at end of file +| `image` | IMAGE | 套用標準化處理後產生的圖像。 | diff --git a/comfyui_embedded_docs/docs/NormalizeImages/zh.md b/comfyui_embedded_docs/docs/NormalizeImages/zh.md index ada24efd7..17aa5f6a7 100644 --- a/comfyui_embedded_docs/docs/NormalizeImages/zh.md +++ b/comfyui_embedded_docs/docs/NormalizeImages/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 应用归一化处理后得到的图像。 | \ No newline at end of file +| `image` | IMAGE | 应用归一化处理后得到的图像。 | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ar.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ar.md index 26ac89436..cbcdbc54c 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ar.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `latent` | LATENT | الفيديو الكامن المعالج بعد تطبيع الإطارات الأولية. | \ No newline at end of file +| `latent` | LATENT | الفيديو الكامن المعالج بعد تطبيع الإطارات الأولية. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/en.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/en.md index a0f663874..37236827b 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/en.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/en.md @@ -16,4 +16,4 @@ This node adjusts the first few frames of a video latent to make them look more | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `latent` | LATENT | The processed video latent with the starting frames normalized. | \ No newline at end of file +| `latent` | LATENT | The processed video latent with the starting frames normalized. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/es.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/es.md index d478307f9..fba4c9c86 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/es.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/es.md @@ -16,4 +16,4 @@ Este nodo ajusta los primeros fotogramas de un latente de video para que se asem | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `latent` | LATENT | El latente de video procesado, con los fotogramas iniciales normalizados. | \ No newline at end of file +| `latent` | LATENT | El latente de video procesado, con los fotogramas iniciales normalizados. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/fr.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/fr.md index 3c0901b67..ee2874e71 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/fr.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/fr.md @@ -16,4 +16,4 @@ Ce nœud ajuste les premières images d'un latent vidéo pour qu'elles ressemble | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `latent` | LATENT | Le latent vidéo traité avec les images de départ normalisées. | \ No newline at end of file +| `latent` | LATENT | Le latent vidéo traité avec les images de départ normalisées. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ja.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ja.md index 51aff456f..3939a76b3 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ja.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ja.md @@ -16,4 +16,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `latent` | LATENT | 開始フレームが正規化された、処理済みのビデオ潜在表現です。 | \ No newline at end of file +| `latent` | LATENT | 開始フレームが正規化された、処理済みのビデオ潜在表現です。 | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ko.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ko.md index c1cd6f4e2..47633dd4a 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ko.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ko.md @@ -16,4 +16,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `latent` | LATENT | 시작 프레임이 정규화된 처리된 비디오 잠재 표현입니다. | \ No newline at end of file +| `latent` | LATENT | 시작 프레임이 정규화된 처리된 비디오 잠재 표현입니다. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/pt-BR.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/pt-BR.md index 7908f60e7..51808b75c 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/pt-BR.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/pt-BR.md @@ -16,4 +16,4 @@ Este nó ajusta os primeiros quadros de um latente de vídeo para que se pareça | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `latent` | LATENT | O latente de vídeo processado, com os quadros iniciais normalizados. | \ No newline at end of file +| `latent` | LATENT | O latente de vídeo processado, com os quadros iniciais normalizados. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ru.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ru.md index 1cf586c11..986f6d71c 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ru.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `latent` | LATENT | Обработанный видео-латент с нормализованными начальными кадрами. | \ No newline at end of file +| `latent` | LATENT | Обработанный видео-латент с нормализованными начальными кадрами. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/tr.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/tr.md index a11ab6d4a..f775fe029 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/tr.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/tr.md @@ -16,4 +16,4 @@ Bu düğüm, bir video gizli temsilinin ilk birkaç karesini, sonra gelen karele | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `latent` | LATENT | Başlangıç kareleri normalleştirilmiş işlenmiş video gizli temsili. | \ No newline at end of file +| `latent` | LATENT | Başlangıç kareleri normalleştirilmiş işlenmiş video gizli temsili. | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh-TW.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh-TW.md index b6af6e04c..b4d4a0a3b 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh-TW.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 經過處理且起始幀已標準化的影片潛在表示。 | \ No newline at end of file +| `latent` | LATENT | 經過處理且起始幀已標準化的影片潛在表示。 | diff --git a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh.md b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh.md index b75123644..c8c48c8c6 100644 --- a/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh.md +++ b/comfyui_embedded_docs/docs/NormalizeVideoLatentStart/zh.md @@ -16,4 +16,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `latent` | LATENT | 经过处理、起始帧已标准化的视频潜变量。 | \ No newline at end of file +| `latent` | LATENT | 经过处理、起始帧已标准化的视频潜变量。 | diff --git a/comfyui_embedded_docs/docs/Note/ar.md b/comfyui_embedded_docs/docs/Note/ar.md index d98fa683f..39d445b01 100644 --- a/comfyui_embedded_docs/docs/Note/ar.md +++ b/comfyui_embedded_docs/docs/Note/ar.md @@ -6,4 +6,4 @@ ## المخرجات -لا تحتوي العُقدة على مخرجات. \ No newline at end of file +لا تحتوي العُقدة على مخرجات. diff --git a/comfyui_embedded_docs/docs/Note/pt-BR.md b/comfyui_embedded_docs/docs/Note/pt-BR.md index 11f2f2f20..23192fa52 100644 --- a/comfyui_embedded_docs/docs/Note/pt-BR.md +++ b/comfyui_embedded_docs/docs/Note/pt-BR.md @@ -6,4 +6,4 @@ Nó para adicionar anotações a um fluxo de trabalho. ## Saídas -O nó não possui saídas. \ No newline at end of file +O nó não possui saídas. diff --git a/comfyui_embedded_docs/docs/Note/tr.md b/comfyui_embedded_docs/docs/Note/tr.md index 8ccdd4751..b96b93787 100644 --- a/comfyui_embedded_docs/docs/Note/tr.md +++ b/comfyui_embedded_docs/docs/Note/tr.md @@ -6,4 +6,4 @@ Bir iş akışına açıklamalar eklemek için düğüm. ## Çıkışlar -Bu düğümün çıkışı yoktur. \ No newline at end of file +Bu düğümün çıkışı yoktur. diff --git a/comfyui_embedded_docs/docs/Note/zh-TW.md b/comfyui_embedded_docs/docs/Note/zh-TW.md index a6fa2d474..54873278e 100644 --- a/comfyui_embedded_docs/docs/Note/zh-TW.md +++ b/comfyui_embedded_docs/docs/Note/zh-TW.md @@ -6,4 +6,4 @@ {heading_inputs} {heading_outputs} -此節點沒有輸出。 \ No newline at end of file +此節點沒有輸出。 diff --git a/comfyui_embedded_docs/docs/OpenAIChatConfig/ar.md b/comfyui_embedded_docs/docs/OpenAIChatConfig/ar.md index d4b858fee..9c0f80d82 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatConfig/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIChatConfig/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | كائن التهيئة الذي يحتوي على الإعدادات المحددة للاستخدام مع عُقد الدردشة من OpenAI | \ No newline at end of file +| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | كائن التهيئة الذي يحتوي على الإعدادات المحددة للاستخدام مع عُقد الدردشة من OpenAI | diff --git a/comfyui_embedded_docs/docs/OpenAIChatConfig/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIChatConfig/pt-BR.md index d60cbadfa..eee32fd66 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatConfig/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIChatConfig/pt-BR.md @@ -14,4 +14,4 @@ O nó OpenAIChatConfig permite definir opções de configuração adicionais par | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | Objeto de configuração contendo as configurações especificadas para uso com os Nós de Chat da OpenAI | \ No newline at end of file +| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | Objeto de configuração contendo as configurações especificadas para uso com os Nós de Chat da OpenAI | diff --git a/comfyui_embedded_docs/docs/OpenAIChatConfig/tr.md b/comfyui_embedded_docs/docs/OpenAIChatConfig/tr.md index 9a9a803ba..5ce6d8d2d 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatConfig/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIChatConfig/tr.md @@ -14,4 +14,4 @@ OpenAIChatConfig düğümü, OpenAI Chat Node için ek yapılandırma seçenekle | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | OpenAI Chat Node'ları ile kullanım için belirtilen ayarları içeren yapılandırma nesnesi | \ No newline at end of file +| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | OpenAI Chat Node'ları ile kullanım için belirtilen ayarları içeren yapılandırma nesnesi | diff --git a/comfyui_embedded_docs/docs/OpenAIChatConfig/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIChatConfig/zh-TW.md index bfbb0f9ed..c5cdf7943 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatConfig/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIChatConfig/zh-TW.md @@ -14,4 +14,4 @@ OpenAIChatConfig 節點允許為 OpenAI Chat 節點設定額外的配置選項 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | 包含指定設定的配置物件,供 OpenAI Chat 節點使用 | \ No newline at end of file +| `OPENAI_CHAT_CONFIG` | OPENAI_CHAT_CONFIG | 包含指定設定的配置物件,供 OpenAI Chat 節點使用 | diff --git a/comfyui_embedded_docs/docs/OpenAIChatNode/ar.md b/comfyui_embedded_docs/docs/OpenAIChatNode/ar.md index 7a912be9d..7ecc6399c 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatNode/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIChatNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output_text` | STRING | الاستجابة النصية التي ولدها نموذج OpenAI | \ No newline at end of file +| `output_text` | STRING | الاستجابة النصية التي ولدها نموذج OpenAI | diff --git a/comfyui_embedded_docs/docs/OpenAIChatNode/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIChatNode/pt-BR.md index 2c9311da5..68c1b96f4 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIChatNode/pt-BR.md @@ -17,4 +17,4 @@ Este nó gera respostas de texto a partir de um modelo da OpenAI. Ele permite qu | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output_text` | STRING | A resposta de texto gerada pelo modelo OpenAI | \ No newline at end of file +| `output_text` | STRING | A resposta de texto gerada pelo modelo OpenAI | diff --git a/comfyui_embedded_docs/docs/OpenAIChatNode/tr.md b/comfyui_embedded_docs/docs/OpenAIChatNode/tr.md index b0434a672..14e0c8d83 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatNode/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIChatNode/tr.md @@ -17,4 +17,4 @@ Bu düğüm, bir OpenAI modelinden metin yanıtları oluşturur. Metin istemleri | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output_text` | STRING | OpenAI modeli tarafından oluşturulan metin yanıtı | \ No newline at end of file +| `output_text` | STRING | OpenAI modeli tarafından oluşturulan metin yanıtı | diff --git a/comfyui_embedded_docs/docs/OpenAIChatNode/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIChatNode/zh-TW.md index 11afa277a..4d40a3173 100644 --- a/comfyui_embedded_docs/docs/OpenAIChatNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIChatNode/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output_text` | STRING | 由 OpenAI 模型生成的文字回應 | \ No newline at end of file +| `output_text` | STRING | 由 OpenAI 模型生成的文字回應 | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle2/ar.md b/comfyui_embedded_docs/docs/OpenAIDalle2/ar.md index 5771f9297..b83c51478 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle2/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle2/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `IMAGE` | IMAGE | الصورة (أو الصور) المُنشأة أو المُحررة من DALL·E 2 | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/OpenAIDalle2/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIDalle2/pt-BR.md index fb2627455..014e6e1a7 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle2/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle2/pt-BR.md @@ -21,4 +21,4 @@ Este nó se conecta à API DALL·E 2 da OpenAI para criar imagens com base em de | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) ou editada(s) pelo DALL·E 2 | \ No newline at end of file +| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) ou editada(s) pelo DALL·E 2 | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle2/tr.md b/comfyui_embedded_docs/docs/OpenAIDalle2/tr.md index 31bd98706..04be74d32 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle2/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle2/tr.md @@ -23,4 +23,4 @@ Bu düğüm, metin açıklamalarına dayalı görüntüler oluşturmak için Ope | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `IMAGE` | IMAGE | DALL·E 2'den oluşturulan veya düzenlenen görüntü(ler) | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/OpenAIDalle2/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIDalle2/zh-TW.md index 2f103001d..2b77f72c9 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle2/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle2/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 來自 DALL·E 2 的生成或編輯後的影像 | \ No newline at end of file +| `IMAGE` | IMAGE | 來自 DALL·E 2 的生成或編輯後的影像 | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle3/ar.md b/comfyui_embedded_docs/docs/OpenAIDalle3/ar.md index 84df1b940..8ce4dd0ee 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle3/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle3/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | الصورة المُنشأة من DALL·E 3 | \ No newline at end of file +| `IMAGE` | IMAGE | الصورة المُنشأة من DALL·E 3 | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle3/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIDalle3/pt-BR.md index ff69ce5a7..4762ae611 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle3/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle3/pt-BR.md @@ -16,4 +16,4 @@ Gera imagens de forma síncrona através do endpoint DALL·E 3 da OpenAI. Este n | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A imagem gerada pelo DALL·E 3 | \ No newline at end of file +| `IMAGE` | IMAGE | A imagem gerada pelo DALL·E 3 | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle3/tr.md b/comfyui_embedded_docs/docs/OpenAIDalle3/tr.md index 13ac256ba..e17b7eda1 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle3/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle3/tr.md @@ -16,4 +16,4 @@ OpenAI'nin DALL·E 3 uç noktası aracılığıyla görüntüleri eşzamanlı ol | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | DALL·E 3 tarafından oluşturulan görüntü | \ No newline at end of file +| `IMAGE` | IMAGE | DALL·E 3 tarafından oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/OpenAIDalle3/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIDalle3/zh-TW.md index a04520636..676cce1d2 100644 --- a/comfyui_embedded_docs/docs/OpenAIDalle3/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIDalle3/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 從 DALL·E 3 生成的影像 | \ No newline at end of file +| `IMAGE` | IMAGE | 從 DALL·E 3 生成的影像 | diff --git a/comfyui_embedded_docs/docs/OpenAIGPTImage1/ar.md b/comfyui_embedded_docs/docs/OpenAIGPTImage1/ar.md index 0dd1bef95..9624099ce 100644 --- a/comfyui_embedded_docs/docs/OpenAIGPTImage1/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIGPTImage1/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | الصور المولدة أو المحررة | \ No newline at end of file +| `IMAGE` | IMAGE | الصور المولدة أو المحررة | diff --git a/comfyui_embedded_docs/docs/OpenAIGPTImage1/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIGPTImage1/pt-BR.md index 798a5e3a7..691ff4457 100644 --- a/comfyui_embedded_docs/docs/OpenAIGPTImage1/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIGPTImage1/pt-BR.md @@ -26,4 +26,4 @@ Gera imagens de forma síncrona através do endpoint GPT Image 1 da OpenAI. Este | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Imagem(ns) gerada(s) ou editada(s) | \ No newline at end of file +| `IMAGE` | IMAGE | Imagem(ns) gerada(s) ou editada(s) | diff --git a/comfyui_embedded_docs/docs/OpenAIGPTImage1/tr.md b/comfyui_embedded_docs/docs/OpenAIGPTImage1/tr.md index 3ee37d6e4..0a28fc417 100644 --- a/comfyui_embedded_docs/docs/OpenAIGPTImage1/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIGPTImage1/tr.md @@ -26,4 +26,4 @@ OpenAI'nin GPT Image 1 uç noktası aracılığıyla görüntüleri eşzamanlı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Oluşturulan veya düzenlenen görüntü(ler) | \ No newline at end of file +| `IMAGE` | IMAGE | Oluşturulan veya düzenlenen görüntü(ler) | diff --git a/comfyui_embedded_docs/docs/OpenAIGPTImage1/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIGPTImage1/zh-TW.md index 670408f5f..c13b86a91 100644 --- a/comfyui_embedded_docs/docs/OpenAIGPTImage1/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIGPTImage1/zh-TW.md @@ -26,4 +26,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 生成或編輯後的圖像 | \ No newline at end of file +| `IMAGE` | IMAGE | 生成或編輯後的圖像 | diff --git a/comfyui_embedded_docs/docs/OpenAIInputFiles/ar.md b/comfyui_embedded_docs/docs/OpenAIInputFiles/ar.md index 66b41cbaa..0d91fc4c7 100644 --- a/comfyui_embedded_docs/docs/OpenAIInputFiles/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIInputFiles/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------| | `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | ملفات الإدخال المُنسقة وجاهزة لاستخدامها كسياق لاستدعاءات واجهة برمجة تطبيقات OpenAI. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/OpenAIInputFiles/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIInputFiles/pt-BR.md index 72ac0f739..780297833 100644 --- a/comfyui_embedded_docs/docs/OpenAIInputFiles/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIInputFiles/pt-BR.md @@ -19,4 +19,4 @@ Carrega e formata arquivos de entrada para a API da OpenAI. Este nó prepara arq | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | Arquivos de entrada formatados e prontos para serem usados como contexto para chamadas da API da OpenAI. | \ No newline at end of file +| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | Arquivos de entrada formatados e prontos para serem usados como contexto para chamadas da API da OpenAI. | diff --git a/comfyui_embedded_docs/docs/OpenAIInputFiles/tr.md b/comfyui_embedded_docs/docs/OpenAIInputFiles/tr.md index 6839dc8db..2c94ac282 100644 --- a/comfyui_embedded_docs/docs/OpenAIInputFiles/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIInputFiles/tr.md @@ -19,4 +19,4 @@ OpenAI API için giriş dosyalarını yükler ve biçimlendirir. Bu düğüm, Op | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | OpenAI API çağrıları için bağlam olarak kullanılmaya hazır biçimlendirilmiş giriş dosyaları. | \ No newline at end of file +| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | OpenAI API çağrıları için bağlam olarak kullanılmaya hazır biçimlendirilmiş giriş dosyaları. | diff --git a/comfyui_embedded_docs/docs/OpenAIInputFiles/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIInputFiles/zh-TW.md index 3c6bfd6ea..e47508c8e 100644 --- a/comfyui_embedded_docs/docs/OpenAIInputFiles/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIInputFiles/zh-TW.md @@ -19,4 +19,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | 格式化後的輸入檔案,準備好作為 OpenAI API 呼叫的上下文使用。 | \ No newline at end of file +| `OPENAI_INPUT_FILES` | OPENAI_INPUT_FILES | 格式化後的輸入檔案,準備好作為 OpenAI API 呼叫的上下文使用。 | diff --git a/comfyui_embedded_docs/docs/OpenAIVideoSora2/ar.md b/comfyui_embedded_docs/docs/OpenAIVideoSora2/ar.md index aa6be30ab..f49f95e14 100644 --- a/comfyui_embedded_docs/docs/OpenAIVideoSora2/ar.md +++ b/comfyui_embedded_docs/docs/OpenAIVideoSora2/ar.md @@ -25,4 +25,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|-------------| | `output` | VIDEO | مخرجات الفيديو المُولَّد | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/OpenAIVideoSora2/pt-BR.md b/comfyui_embedded_docs/docs/OpenAIVideoSora2/pt-BR.md index bbe9c8728..31eaafb53 100644 --- a/comfyui_embedded_docs/docs/OpenAIVideoSora2/pt-BR.md +++ b/comfyui_embedded_docs/docs/OpenAIVideoSora2/pt-BR.md @@ -23,4 +23,4 @@ O nó OpenAIVideoSora2 gera vídeos utilizando os modelos Sora da OpenAI. Ele cr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | A saída do vídeo gerado | \ No newline at end of file +| `output` | VIDEO | A saída do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/OpenAIVideoSora2/tr.md b/comfyui_embedded_docs/docs/OpenAIVideoSora2/tr.md index 09bc79ffb..7d02a49fd 100644 --- a/comfyui_embedded_docs/docs/OpenAIVideoSora2/tr.md +++ b/comfyui_embedded_docs/docs/OpenAIVideoSora2/tr.md @@ -23,4 +23,4 @@ OpenAIVideoSora2 düğümü, OpenAI'nin Sora modellerini kullanarak video oluşt | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video çıktısı | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/OpenAIVideoSora2/zh-TW.md b/comfyui_embedded_docs/docs/OpenAIVideoSora2/zh-TW.md index f220cc01a..75c8b7025 100644 --- a/comfyui_embedded_docs/docs/OpenAIVideoSora2/zh-TW.md +++ b/comfyui_embedded_docs/docs/OpenAIVideoSora2/zh-TW.md @@ -23,4 +23,4 @@ OpenAIVideoSora2 節點使用 OpenAI 的 Sora 模型來生成影片。它根據 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片輸出 | \ No newline at end of file +| `output` | VIDEO | 生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/OptimalStepsScheduler/ar.md b/comfyui_embedded_docs/docs/OptimalStepsScheduler/ar.md index f3ca35b0b..dd72131c8 100644 --- a/comfyui_embedded_docs/docs/OptimalStepsScheduler/ar.md +++ b/comfyui_embedded_docs/docs/OptimalStepsScheduler/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | سلسلة من قيم سيجما تمثل جدول الضوضاء لأخذ عينات الانتشار | \ No newline at end of file +| `sigmas` | SIGMAS | سلسلة من قيم سيجما تمثل جدول الضوضاء لأخذ عينات الانتشار | diff --git a/comfyui_embedded_docs/docs/OptimalStepsScheduler/pt-BR.md b/comfyui_embedded_docs/docs/OptimalStepsScheduler/pt-BR.md index 8e996d8a9..84bd96768 100644 --- a/comfyui_embedded_docs/docs/OptimalStepsScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/OptimalStepsScheduler/pt-BR.md @@ -16,4 +16,4 @@ O nó OptimalStepsScheduler calcula os sigmas do cronograma de ruído para model | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Uma sequência de valores sigma que representa o cronograma de ruído para a amostragem de difusão | \ No newline at end of file +| `sigmas` | SIGMAS | Uma sequência de valores sigma que representa o cronograma de ruído para a amostragem de difusão | diff --git a/comfyui_embedded_docs/docs/OptimalStepsScheduler/tr.md b/comfyui_embedded_docs/docs/OptimalStepsScheduler/tr.md index 2eaa25c8d..f482b8139 100644 --- a/comfyui_embedded_docs/docs/OptimalStepsScheduler/tr.md +++ b/comfyui_embedded_docs/docs/OptimalStepsScheduler/tr.md @@ -16,4 +16,4 @@ OptimalStepsScheduler düğümü, seçilen model türüne ve adım yapılandırm | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | Yayılım örneklemesi için gürültü programını temsil eden bir sigma değerleri dizisi | \ No newline at end of file +| `sigmas` | SIGMAS | Yayılım örneklemesi için gürültü programını temsil eden bir sigma değerleri dizisi | diff --git a/comfyui_embedded_docs/docs/OptimalStepsScheduler/zh-TW.md b/comfyui_embedded_docs/docs/OptimalStepsScheduler/zh-TW.md index 285645351..6679b125d 100644 --- a/comfyui_embedded_docs/docs/OptimalStepsScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/OptimalStepsScheduler/zh-TW.md @@ -16,4 +16,4 @@ OptimalStepsScheduler 節點根據所選模型類型和步數配置,為擴散 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 代表擴散採樣噪聲調度的 sigma 值序列 | \ No newline at end of file +| `sigmas` | SIGMAS | 代表擴散採樣噪聲調度的 sigma 值序列 | diff --git a/comfyui_embedded_docs/docs/PairConditioningCombine/ar.md b/comfyui_embedded_docs/docs/PairConditioningCombine/ar.md index 708ab17ee..936ee6765 100644 --- a/comfyui_embedded_docs/docs/PairConditioningCombine/ar.md +++ b/comfyui_embedded_docs/docs/PairConditioningCombine/ar.md @@ -18,4 +18,4 @@ --- -يقوم عقدة PairConditioningCombine بدمج زوجين من بيانات التكييف (الإيجابي والسلبي) في زوج واحد. تأخذ العقدة زوجين منفصلين من التكييف كمدخل وتدمجهما باستخدام المنطق الداخلي لدمج التكييف في ComfyUI. هذه العقدة تجريبية وتُستخدم بشكل أساسي في سير عمل متقدمة لتلاعب بالتكييف. \ No newline at end of file +يقوم عقدة PairConditioningCombine بدمج زوجين من بيانات التكييف (الإيجابي والسلبي) في زوج واحد. تأخذ العقدة زوجين منفصلين من التكييف كمدخل وتدمجهما باستخدام المنطق الداخلي لدمج التكييف في ComfyUI. هذه العقدة تجريبية وتُستخدم بشكل أساسي في سير عمل متقدمة لتلاعب بالتكييف. diff --git a/comfyui_embedded_docs/docs/PairConditioningCombine/pt-BR.md b/comfyui_embedded_docs/docs/PairConditioningCombine/pt-BR.md index 4f0ab6885..96465f2bd 100644 --- a/comfyui_embedded_docs/docs/PairConditioningCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/PairConditioningCombine/pt-BR.md @@ -16,4 +16,4 @@ O nó PairConditioningCombine combina dois pares de dados de condicionamento (po | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | Saída de condicionamento positivo combinado | -| `negative` | CONDITIONING | Saída de condicionamento negativo combinado | \ No newline at end of file +| `negative` | CONDITIONING | Saída de condicionamento negativo combinado | diff --git a/comfyui_embedded_docs/docs/PairConditioningCombine/tr.md b/comfyui_embedded_docs/docs/PairConditioningCombine/tr.md index 85cce0f3e..67303cf0a 100644 --- a/comfyui_embedded_docs/docs/PairConditioningCombine/tr.md +++ b/comfyui_embedded_docs/docs/PairConditioningCombine/tr.md @@ -16,4 +16,4 @@ PairConditioningCombine düğümü, iki koşullandırma verisi çiftini (pozitif | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `negatif` | CONDITIONING | Birleştirilmiş pozitif koşullandırma çıktısı | -| `negative` | CONDITIONING | Birleştirilmiş negatif koşullandırma çıktısı | \ No newline at end of file +| `negative` | CONDITIONING | Birleştirilmiş negatif koşullandırma çıktısı | diff --git a/comfyui_embedded_docs/docs/PairConditioningCombine/zh-TW.md b/comfyui_embedded_docs/docs/PairConditioningCombine/zh-TW.md index 8031c9e46..c8c467c0f 100644 --- a/comfyui_embedded_docs/docs/PairConditioningCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/PairConditioningCombine/zh-TW.md @@ -16,4 +16,4 @@ PairConditioningCombine 節點將兩組條件資料(正面與負面)合併 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 合併後的正面條件輸出 | -| `negative` | CONDITIONING | 合併後的負面條件輸出 | \ No newline at end of file +| `negative` | CONDITIONING | 合併後的負面條件輸出 | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/ar.md b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/ar.md index 3c928e86e..7e17e1fda 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/ar.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `positive` | CONDITIONING | التكييف الإيجابي المعالج مع دمج القيم الافتراضية | -| `negative` | CONDITIONING | التكييف السلبي المعالج مع دمج القيم الافتراضية | \ No newline at end of file +| `negative` | CONDITIONING | التكييف السلبي المعالج مع دمج القيم الافتراضية | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/pt-BR.md b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/pt-BR.md index 15e88d6a0..04afa013c 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/pt-BR.md @@ -17,4 +17,4 @@ O nó PairConditioningSetDefaultAndCombine define valores de condicionamento pad | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo processado com os valores padrão incorporados | -| `negative` | CONDITIONING | O condicionamento negativo processado com os valores padrão incorporados | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo processado com os valores padrão incorporados | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/tr.md b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/tr.md index b1b4a1846..67fca78c3 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/tr.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/tr.md @@ -17,4 +17,4 @@ PairConditioningSetDefaultAndCombine düğümü, varsayılan koşullandırma de | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `positive` | CONDITIONING | Varsayılan değerlerle birleştirilmiş işlenmiş pozitif koşullandırma | -| `negative` | CONDITIONING | Varsayılan değerlerle birleştirilmiş işlenmiş negatif koşullandırma | \ No newline at end of file +| `negative` | CONDITIONING | Varsayılan değerlerle birleştirilmiş işlenmiş negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/zh-TW.md b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/zh-TW.md index 1e77ff0b7..77037e7dd 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetDefaultAndCombine/zh-TW.md @@ -17,4 +17,4 @@ PairConditioningSetDefaultAndCombine 節點用於設定預設的條件設定值 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `positive` | CONDITIONING | 已處理並包含預設值的正向條件設定 | -| `negative` | CONDITIONING | 已處理並包含預設值的負向條件設定 | \ No newline at end of file +| `negative` | CONDITIONING | 已處理並包含預設值的負向條件設定 | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetProperties/ar.md b/comfyui_embedded_docs/docs/PairConditioningSetProperties/ar.md index acbbc7c30..99052010a 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetProperties/ar.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetProperties/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التكييف الإيجابي المعدل مع الخصائص المطبقة | -| `negative` | CONDITIONING | التكييف السلبي المعدل مع الخصائص المطبقة | \ No newline at end of file +| `negative` | CONDITIONING | التكييف السلبي المعدل مع الخصائص المطبقة | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetProperties/pt-BR.md b/comfyui_embedded_docs/docs/PairConditioningSetProperties/pt-BR.md index 02690de2f..cfd755f22 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetProperties/pt-BR.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetProperties/pt-BR.md @@ -19,4 +19,4 @@ O nó PairConditioningSetProperties permite modificar as propriedades de pares d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado com as propriedades aplicadas | -| `negative` | CONDITIONING | O condicionamento negativo modificado com as propriedades aplicadas | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo modificado com as propriedades aplicadas | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetProperties/tr.md b/comfyui_embedded_docs/docs/PairConditioningSetProperties/tr.md index 0807ca700..426f71d7e 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetProperties/tr.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetProperties/tr.md @@ -19,4 +19,4 @@ PairConditioningSetProperties düğümü, hem pozitif hem de negatif koşulland | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `positive` | CONDITIONING | Uygulanan özelliklere sahip değiştirilmiş pozitif koşullandırma | -| `negative` | CONDITIONING | Uygulanan özelliklere sahip değiştirilmiş negatif koşullandırma | \ No newline at end of file +| `negative` | CONDITIONING | Uygulanan özelliklere sahip değiştirilmiş negatif koşullandırma | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetProperties/zh-TW.md b/comfyui_embedded_docs/docs/PairConditioningSetProperties/zh-TW.md index e9ca49484..520b888fa 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetProperties/zh-TW.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetProperties/zh-TW.md @@ -19,4 +19,4 @@ PairConditioningSetProperties 節點允許您同時修改正向和負向條件 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 已套用屬性的修改後正向條件資料 | -| `negative` | CONDITIONING | 已套用屬性的修改後負向條件資料 | \ No newline at end of file +| `negative` | CONDITIONING | 已套用屬性的修改後負向條件資料 | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/ar.md b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/ar.md index a0b8f9235..eb69c85aa 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/ar.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/ar.md @@ -23,4 +23,4 @@ |------------|---------------|--------| | `سلبي` | CONDITIONING | مخرج التكييف الموجب المدمج | | `سلبي` | CONDITIONING | مخرج التكييف السالب المدمج | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/pt-BR.md b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/pt-BR.md index 9a8d6d42f..87f8e6b22 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/pt-BR.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/pt-BR.md @@ -21,4 +21,4 @@ O nó PairConditioningSetPropertiesAndCombine modifica e combina pares de condic | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `positive` | CONDITIONING | A saída de condicionamento positivo combinada | -| `negative` | CONDITIONING | A saída de condicionamento negativo combinada | \ No newline at end of file +| `negative` | CONDITIONING | A saída de condicionamento negativo combinada | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/tr.md b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/tr.md index 0f4d7ba0e..6a3a750ce 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/tr.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/tr.md @@ -21,4 +21,4 @@ PairConditioningSetPropertiesAndCombine düğümü, mevcut pozitif ve negatif ko | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `pozitif` | CONDITIONING | Birleştirilmiş pozitif koşullandırma çıkışı | -| `negatif` | CONDITIONING | Birleştirilmiş negatif koşullandırma çıkışı | \ No newline at end of file +| `negatif` | CONDITIONING | Birleştirilmiş negatif koşullandırma çıkışı | diff --git a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/zh-TW.md b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/zh-TW.md index 24fdc8446..d52d6ff49 100644 --- a/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/zh-TW.md +++ b/comfyui_embedded_docs/docs/PairConditioningSetPropertiesAndCombine/zh-TW.md @@ -21,4 +21,4 @@ PairConditioningSetPropertiesAndCombine 節點透過將新的調節資料應用 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `負向` | CONDITIONING | 組合後的正向調節輸出 | -| `負向` | CONDITIONING | 組合後的負向調節輸出 | \ No newline at end of file +| `負向` | CONDITIONING | 組合後的負向調節輸出 | diff --git a/comfyui_embedded_docs/docs/PatchModelAddDownscale/ar.md b/comfyui_embedded_docs/docs/PatchModelAddDownscale/ar.md index 975eecbc8..6700a4191 100644 --- a/comfyui_embedded_docs/docs/PatchModelAddDownscale/ar.md +++ b/comfyui_embedded_docs/docs/PatchModelAddDownscale/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق رقعة التصغير عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق رقعة التصغير عليه | diff --git a/comfyui_embedded_docs/docs/PatchModelAddDownscale/pt-BR.md b/comfyui_embedded_docs/docs/PatchModelAddDownscale/pt-BR.md index 2a713f417..6d918fc9b 100644 --- a/comfyui_embedded_docs/docs/PatchModelAddDownscale/pt-BR.md +++ b/comfyui_embedded_docs/docs/PatchModelAddDownscale/pt-BR.md @@ -19,4 +19,4 @@ O nó PatchModelAddDownscale implementa a funcionalidade Kohya Deep Shrink aplic | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com o patch de redução de escala aplicado | \ No newline at end of file +| `model` | MODEL | O modelo modificado com o patch de redução de escala aplicado | diff --git a/comfyui_embedded_docs/docs/PatchModelAddDownscale/tr.md b/comfyui_embedded_docs/docs/PatchModelAddDownscale/tr.md index e000388be..b76d7d1ef 100644 --- a/comfyui_embedded_docs/docs/PatchModelAddDownscale/tr.md +++ b/comfyui_embedded_docs/docs/PatchModelAddDownscale/tr.md @@ -19,4 +19,4 @@ PatchModelAddDownscale düğümü, Kohya Deep Shrink işlevselliğini bir modeld | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Küçültme yaması uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Küçültme yaması uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/PatchModelAddDownscale/zh-TW.md b/comfyui_embedded_docs/docs/PatchModelAddDownscale/zh-TW.md index 238bf5022..8d2ea078f 100644 --- a/comfyui_embedded_docs/docs/PatchModelAddDownscale/zh-TW.md +++ b/comfyui_embedded_docs/docs/PatchModelAddDownscale/zh-TW.md @@ -19,4 +19,4 @@ PatchModelAddDownscale 節點透過對模型中的特定區塊應用降尺度與 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用降尺度修補的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用降尺度修補的修改後模型 | diff --git a/comfyui_embedded_docs/docs/PerpNeg/ar.md b/comfyui_embedded_docs/docs/PerpNeg/ar.md index 756e57532..6cfc925df 100644 --- a/comfyui_embedded_docs/docs/PerpNeg/ar.md +++ b/comfyui_embedded_docs/docs/PerpNeg/ar.md @@ -18,4 +18,4 @@ |-------------|-----------|-------------| | `النموذج` | MODEL | النموذج المعدل مع تطبيق التوجيه السلبي العمودي عليه | -**ملاحظة**: هذه العقدة مهملة وتم استبدالها بـ PerpNegGuider. وهي مصنفة على أنها تجريبية ولا ينبغي استخدامها في سير العمل الإنتاجية. \ No newline at end of file +**ملاحظة**: هذه العقدة مهملة وتم استبدالها بـ PerpNegGuider. وهي مصنفة على أنها تجريبية ولا ينبغي استخدامها في سير العمل الإنتاجية. diff --git a/comfyui_embedded_docs/docs/PerpNeg/pt-BR.md b/comfyui_embedded_docs/docs/PerpNeg/pt-BR.md index b1451a40c..dea7b96c0 100644 --- a/comfyui_embedded_docs/docs/PerpNeg/pt-BR.md +++ b/comfyui_embedded_docs/docs/PerpNeg/pt-BR.md @@ -16,4 +16,4 @@ O nó PerpNeg aplica orientação negativa perpendicular ao processo de amostrag |-------------|-----------|-------------| | `model` | MODEL | O modelo modificado com a orientação negativa perpendicular aplicada | -**Nota**: Este nó está descontinuado e foi substituído pelo PerpNegGuider. Ele está marcado como experimental e não deve ser usado em fluxos de trabalho de produção. \ No newline at end of file +**Nota**: Este nó está descontinuado e foi substituído pelo PerpNegGuider. Ele está marcado como experimental e não deve ser usado em fluxos de trabalho de produção. diff --git a/comfyui_embedded_docs/docs/PerpNeg/tr.md b/comfyui_embedded_docs/docs/PerpNeg/tr.md index 50972c67f..a39c3086c 100644 --- a/comfyui_embedded_docs/docs/PerpNeg/tr.md +++ b/comfyui_embedded_docs/docs/PerpNeg/tr.md @@ -16,4 +16,4 @@ PerpNeg düğümü, bir modelin örnekleme sürecine dik negatif yönlendirme uy |-------------|-----------|-------------| | `model` | MODEL | Dik negatif yönlendirme uygulanmış değiştirilmiş model | -**Not**: Bu düğümün kullanımı artık önerilmemekte ve PerpNegGuider ile değiştirilmiştir. Deneysel olarak işaretlenmiştir ve üretim iş akışlarında kullanılmamalıdır. \ No newline at end of file +**Not**: Bu düğümün kullanımı artık önerilmemekte ve PerpNegGuider ile değiştirilmiştir. Deneysel olarak işaretlenmiştir ve üretim iş akışlarında kullanılmamalıdır. diff --git a/comfyui_embedded_docs/docs/PerpNeg/zh-TW.md b/comfyui_embedded_docs/docs/PerpNeg/zh-TW.md index 377931777..68c34326f 100644 --- a/comfyui_embedded_docs/docs/PerpNeg/zh-TW.md +++ b/comfyui_embedded_docs/docs/PerpNeg/zh-TW.md @@ -18,4 +18,4 @@ PerpNeg 節點對模型的取樣過程應用垂直負向引導。此節點修改 |-------------|-----------|-------------| | `model` | MODEL | 已應用垂直負向引導的修改後模型 | -**注意**:此節點已被棄用,並由 PerpNegGuider 取代。它被標記為實驗性節點,不應在生產工作流程中使用。 \ No newline at end of file +**注意**:此節點已被棄用,並由 PerpNegGuider 取代。它被標記為實驗性節點,不應在生產工作流程中使用。 diff --git a/comfyui_embedded_docs/docs/PerpNegGuider/ar.md b/comfyui_embedded_docs/docs/PerpNegGuider/ar.md index 66f911987..1cab9cbd0 100644 --- a/comfyui_embedded_docs/docs/PerpNegGuider/ar.md +++ b/comfyui_embedded_docs/docs/PerpNegGuider/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `guider` | GUIDER | نظام توجيه مُهيأ وجاهز للاستخدام في خطوة التوليد | \ No newline at end of file +| `guider` | GUIDER | نظام توجيه مُهيأ وجاهز للاستخدام في خطوة التوليد | diff --git a/comfyui_embedded_docs/docs/PerpNegGuider/pt-BR.md b/comfyui_embedded_docs/docs/PerpNegGuider/pt-BR.md index 2dd10b0b9..d5828c936 100644 --- a/comfyui_embedded_docs/docs/PerpNegGuider/pt-BR.md +++ b/comfyui_embedded_docs/docs/PerpNegGuider/pt-BR.md @@ -17,4 +17,4 @@ O nó PerpNegGuider cria um sistema de orientação para controlar a geração d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `guider` | GUIDER | Um sistema de orientação configurado e pronto para uso no pipeline de geração | \ No newline at end of file +| `guider` | GUIDER | Um sistema de orientação configurado e pronto para uso no pipeline de geração | diff --git a/comfyui_embedded_docs/docs/PerpNegGuider/tr.md b/comfyui_embedded_docs/docs/PerpNegGuider/tr.md index 4c517e519..5dc386af9 100644 --- a/comfyui_embedded_docs/docs/PerpNegGuider/tr.md +++ b/comfyui_embedded_docs/docs/PerpNegGuider/tr.md @@ -17,4 +17,4 @@ PerpNegGuider düğümü, dik negatif koşullandırma kullanarak görüntü olu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `guider` | GUIDER | Oluşturma işlem hattında kullanıma hazır yapılandırılmış bir kılavuzluk sistemi | \ No newline at end of file +| `guider` | GUIDER | Oluşturma işlem hattında kullanıma hazır yapılandırılmış bir kılavuzluk sistemi | diff --git a/comfyui_embedded_docs/docs/PerpNegGuider/zh-TW.md b/comfyui_embedded_docs/docs/PerpNegGuider/zh-TW.md index 3ae157a1d..cf37e1e5a 100644 --- a/comfyui_embedded_docs/docs/PerpNegGuider/zh-TW.md +++ b/comfyui_embedded_docs/docs/PerpNegGuider/zh-TW.md @@ -17,4 +17,4 @@ PerpNegGuider 節點建立了一個引導系統,用於使用垂直負向條件 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `guider` | GUIDER | 已配置的引導系統,準備好在生成管線中使用 | \ No newline at end of file +| `guider` | GUIDER | 已配置的引導系統,準備好在生成管線中使用 | diff --git a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/ar.md b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/ar.md index 399dad5ad..1aaedbd6f 100644 --- a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/ar.md +++ b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق إرشادات الانتباه المضطرب عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق إرشادات الانتباه المضطرب عليه | diff --git a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/pt-BR.md b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/pt-BR.md index 09843bced..735d1fc3d 100644 --- a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/pt-BR.md @@ -13,4 +13,4 @@ O nó PerturbedAttentionGuidance aplica a orientação de atenção perturbada a | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a orientação de atenção perturbada aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a orientação de atenção perturbada aplicada | diff --git a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/tr.md b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/tr.md index bdae10484..2d45f860a 100644 --- a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/tr.md +++ b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/tr.md @@ -13,4 +13,4 @@ PerturbedAttentionGuidance düğümü, üretim kalitesini artırmak için bir di | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Bozulmuş dikkat kılavuzluğu uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Bozulmuş dikkat kılavuzluğu uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/zh-TW.md b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/zh-TW.md index dd459c415..071e12734 100644 --- a/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/PerturbedAttentionGuidance/zh-TW.md @@ -15,4 +15,4 @@ PerturbedAttentionGuidance 節點對擴散模型應用擾動注意力引導, | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `模型` | MODEL | 已應用擾動注意力引導的修改後模型 | \ No newline at end of file +| `模型` | MODEL | 已應用擾動注意力引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/PhotoMakerEncode/ar.md b/comfyui_embedded_docs/docs/PhotoMakerEncode/ar.md index 559c898f1..0d14b1086 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerEncode/ar.md +++ b/comfyui_embedded_docs/docs/PhotoMakerEncode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التوجيه التي تحتوي على تضمينات الصورة والنص لتوجيه عملية توليد الصور | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التوجيه التي تحتوي على تضمينات الصورة والنص لتوجيه عملية توليد الصور | diff --git a/comfyui_embedded_docs/docs/PhotoMakerEncode/pt-BR.md b/comfyui_embedded_docs/docs/PhotoMakerEncode/pt-BR.md index d7d42aba1..d92e39133 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/PhotoMakerEncode/pt-BR.md @@ -17,4 +17,4 @@ O nó PhotoMakerEncode processa imagens e texto para gerar dados de condicioname | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento contendo embeddings de imagem e texto para orientar a geração de imagens | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento contendo embeddings de imagem e texto para orientar a geração de imagens | diff --git a/comfyui_embedded_docs/docs/PhotoMakerEncode/tr.md b/comfyui_embedded_docs/docs/PhotoMakerEncode/tr.md index adb65386b..64823021f 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerEncode/tr.md +++ b/comfyui_embedded_docs/docs/PhotoMakerEncode/tr.md @@ -17,4 +17,4 @@ PhotoMakerEncode düğümü, AI görüntü oluşturma için koşullandırma veri | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Görüntü oluşturmayı yönlendirmek için görüntü ve metin gömme vektörlerini içeren koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Görüntü oluşturmayı yönlendirmek için görüntü ve metin gömme vektörlerini içeren koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/PhotoMakerEncode/zh-TW.md b/comfyui_embedded_docs/docs/PhotoMakerEncode/zh-TW.md index e4a54768d..2dcbcd2f8 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/PhotoMakerEncode/zh-TW.md @@ -17,4 +17,4 @@ PhotoMakerEncode 節點處理影像和文字,為 AI 影像生成生成條件 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 包含影像和文字嵌入向量的條件化資料,用於引導影像生成 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 包含影像和文字嵌入向量的條件化資料,用於引導影像生成 | diff --git a/comfyui_embedded_docs/docs/PhotoMakerLoader/ar.md b/comfyui_embedded_docs/docs/PhotoMakerLoader/ar.md index 0e94ed2ca..d7b469763 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerLoader/ar.md +++ b/comfyui_embedded_docs/docs/PhotoMakerLoader/ar.md @@ -12,4 +12,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |--------------|--------------|--------| -| `photomaker_model` | PHOTOMAKER | نموذج PhotoMaker المُحمَّل الذي يحتوي على مُرمِّز الهوية (ID encoder)، جاهز للاستخدام في عمليات ترميز الهوية. | \ No newline at end of file +| `photomaker_model` | PHOTOMAKER | نموذج PhotoMaker المُحمَّل الذي يحتوي على مُرمِّز الهوية (ID encoder)، جاهز للاستخدام في عمليات ترميز الهوية. | diff --git a/comfyui_embedded_docs/docs/PhotoMakerLoader/pt-BR.md b/comfyui_embedded_docs/docs/PhotoMakerLoader/pt-BR.md index 7d7b87bb2..e69a192d9 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/PhotoMakerLoader/pt-BR.md @@ -12,4 +12,4 @@ O nó PhotoMakerLoader carrega um modelo PhotoMaker a partir dos arquivos de mod | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `photomaker_model` | PHOTOMAKER | O modelo PhotoMaker carregado, contendo o codificador de ID, pronto para uso em operações de codificação de identidade. | \ No newline at end of file +| `photomaker_model` | PHOTOMAKER | O modelo PhotoMaker carregado, contendo o codificador de ID, pronto para uso em operações de codificação de identidade. | diff --git a/comfyui_embedded_docs/docs/PhotoMakerLoader/tr.md b/comfyui_embedded_docs/docs/PhotoMakerLoader/tr.md index 1b071c8ab..b4d6291cd 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerLoader/tr.md +++ b/comfyui_embedded_docs/docs/PhotoMakerLoader/tr.md @@ -12,4 +12,4 @@ PhotoMakerLoader düğümü, mevcut model dosyalarından bir PhotoMaker modeli y | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `photomaker_model` | PHOTOMAKER | Kimlik kodlama işlemlerinde kullanıma hazır, ID kodlayıcıyı içeren yüklenmiş PhotoMaker modeli. | \ No newline at end of file +| `photomaker_model` | PHOTOMAKER | Kimlik kodlama işlemlerinde kullanıma hazır, ID kodlayıcıyı içeren yüklenmiş PhotoMaker modeli. | diff --git a/comfyui_embedded_docs/docs/PhotoMakerLoader/zh-TW.md b/comfyui_embedded_docs/docs/PhotoMakerLoader/zh-TW.md index 248b42b6f..e7d41866d 100644 --- a/comfyui_embedded_docs/docs/PhotoMakerLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/PhotoMakerLoader/zh-TW.md @@ -12,4 +12,4 @@ PhotoMakerLoader 節點會從可用的模型檔案中載入 PhotoMaker 模型。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `photomaker_model` | PHOTOMAKER | 已載入的 PhotoMaker 模型,包含 ID 編碼器,準備用於身份編碼操作。 | \ No newline at end of file +| `photomaker_model` | PHOTOMAKER | 已載入的 PhotoMaker 模型,包含 ID 編碼器,準備用於身份編碼操作。 | diff --git a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/ar.md b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/ar.md index b807459a3..9feef84d1 100644 --- a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/ar.md +++ b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/pt-BR.md b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/pt-BR.md index e2017a5fd..223caf4a1 100644 --- a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/pt-BR.md +++ b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/pt-BR.md @@ -17,4 +17,4 @@ O nó Pika Image to Video envia uma imagem e um prompt de texto para a API Pika | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/tr.md b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/tr.md index 72690c9ac..e3d29f793 100644 --- a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/tr.md +++ b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/tr.md @@ -17,4 +17,4 @@ Pika Image to Video düğümü, bir görüntüyü ve metin istemini Pika API sü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/zh-TW.md b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/zh-TW.md index 7c09c5bc4..34de52dbc 100644 --- a/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/zh-TW.md +++ b/comfyui_embedded_docs/docs/PikaImageToVideoNode2_2/zh-TW.md @@ -17,4 +17,4 @@ Pika Image to Video 節點將圖像和文字提示發送至 Pika API 2.2 版本 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/PikaScenesV2_2/ar.md b/comfyui_embedded_docs/docs/PikaScenesV2_2/ar.md index f32d1577e..fa8d90a76 100644 --- a/comfyui_embedded_docs/docs/PikaScenesV2_2/ar.md +++ b/comfyui_embedded_docs/docs/PikaScenesV2_2/ar.md @@ -25,4 +25,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ الذي يدمج جميع الصور المدخلة | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ الذي يدمج جميع الصور المدخلة | diff --git a/comfyui_embedded_docs/docs/PikaScenesV2_2/pt-BR.md b/comfyui_embedded_docs/docs/PikaScenesV2_2/pt-BR.md index 54a6b4e6a..666baa035 100644 --- a/comfyui_embedded_docs/docs/PikaScenesV2_2/pt-BR.md +++ b/comfyui_embedded_docs/docs/PikaScenesV2_2/pt-BR.md @@ -25,4 +25,4 @@ O nó PikaScenes v2.2 combina múltiplas imagens para criar um vídeo que incorp | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado combinando todas as imagens de entrada | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado combinando todas as imagens de entrada | diff --git a/comfyui_embedded_docs/docs/PikaScenesV2_2/tr.md b/comfyui_embedded_docs/docs/PikaScenesV2_2/tr.md index d8537948a..1871a27ec 100644 --- a/comfyui_embedded_docs/docs/PikaScenesV2_2/tr.md +++ b/comfyui_embedded_docs/docs/PikaScenesV2_2/tr.md @@ -25,4 +25,4 @@ PikaScenes v2.2 düğümü, birden fazla görüntüyü birleştirerek tüm girdi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Tüm girdi görüntülerini birleştiren oluşturulmuş video | \ No newline at end of file +| `output` | VIDEO | Tüm girdi görüntülerini birleştiren oluşturulmuş video | diff --git a/comfyui_embedded_docs/docs/PikaScenesV2_2/zh-TW.md b/comfyui_embedded_docs/docs/PikaScenesV2_2/zh-TW.md index cac5d7449..815d82fde 100644 --- a/comfyui_embedded_docs/docs/PikaScenesV2_2/zh-TW.md +++ b/comfyui_embedded_docs/docs/PikaScenesV2_2/zh-TW.md @@ -25,4 +25,4 @@ PikaScenes v2.2 節點可將多張圖片組合起來,建立一個融合所有 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 融合所有輸入圖片後生成的影片 | \ No newline at end of file +| `output` | VIDEO | 融合所有輸入圖片後生成的影片 | diff --git a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/ar.md b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/ar.md index 75cdb713f..1a8d1427f 100644 --- a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/ar.md +++ b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ الناتج عن دمج إطاري البداية والنهاية مع انتقالات بالذكاء الاصطناعي. | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ الناتج عن دمج إطاري البداية والنهاية مع انتقالات بالذكاء الاصطناعي. | diff --git a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/pt-BR.md b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/pt-BR.md index b4fe30871..47e89aef2 100644 --- a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/pt-BR.md +++ b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/pt-BR.md @@ -18,4 +18,4 @@ O nó PikaFrames v2.2 gera vídeos combinando seu primeiro e último quadro. Voc | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado, combinando os quadros inicial e final com transições de IA. | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado, combinando os quadros inicial e final com transições de IA. | diff --git a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/tr.md b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/tr.md index 4c9d2f16b..9932d2507 100644 --- a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/tr.md +++ b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/tr.md @@ -18,4 +18,4 @@ PikaFrames v2.2 Düğümü, ilk ve son karelerinizi birleştirerek videolar olu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Başlangıç ve bitiş karelerini AI geçişleriyle birleştirerek oluşturulan video. | \ No newline at end of file +| `output` | VIDEO | Başlangıç ve bitiş karelerini AI geçişleriyle birleştirerek oluşturulan video. | diff --git a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/zh-TW.md b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/zh-TW.md index a70998aea..11ec09560 100644 --- a/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/zh-TW.md +++ b/comfyui_embedded_docs/docs/PikaStartEndFrameNode2_2/zh-TW.md @@ -18,4 +18,4 @@ PikaFrames v2.2 節點透過結合您的起始幀和結束幀來生成影片。 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 透過 AI 過渡結合起始幀和結束幀所生成的影片。 | \ No newline at end of file +| `output` | VIDEO | 透過 AI 過渡結合起始幀和結束幀所生成的影片。 | diff --git a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/ar.md b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/ar.md index b3e53f664..454fa66d5 100644 --- a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/ar.md +++ b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/ar.md @@ -17,4 +17,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُتَوَلِّد الذي تم إرجاعه من واجهة برمجة تطبيقات Pika | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُتَوَلِّد الذي تم إرجاعه من واجهة برمجة تطبيقات Pika | diff --git a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/pt-BR.md b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/pt-BR.md index fec47097f..7c1ffbfaf 100644 --- a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/pt-BR.md +++ b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/pt-BR.md @@ -17,4 +17,4 @@ O nó Pika Text2Video v2.2 envia um prompt de texto para a API Pika versão 2.2 | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado retornado pela API Pika | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado retornado pela API Pika | diff --git a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/tr.md b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/tr.md index 8396811ba..4a23a4d4c 100644 --- a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/tr.md +++ b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/tr.md @@ -17,4 +17,4 @@ Pika Text2Video v2.2 Düğümü, bir video oluşturmak için bir metin istemini | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Pika API'sinden döndürülen oluşturulmuş video dosyası | \ No newline at end of file +| `output` | VIDEO | Pika API'sinden döndürülen oluşturulmuş video dosyası | diff --git a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/zh-TW.md b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/zh-TW.md index 860b649cc..a5fd5d5a1 100644 --- a/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/zh-TW.md +++ b/comfyui_embedded_docs/docs/PikaTextToVideoNode2_2/zh-TW.md @@ -17,4 +17,4 @@ Pika Text2Video v2.2 節點會將文字提示發送到 Pika API 2.2 版本以生 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 從 Pika API 返回的已生成影片檔案 | \ No newline at end of file +| `output` | VIDEO | 從 Pika API 返回的已生成影片檔案 | diff --git a/comfyui_embedded_docs/docs/Pikadditions/ar.md b/comfyui_embedded_docs/docs/Pikadditions/ar.md index 44caabf32..39f3706dd 100644 --- a/comfyui_embedded_docs/docs/Pikadditions/ar.md +++ b/comfyui_embedded_docs/docs/Pikadditions/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المعالج بعد إدراج الصورة فيه. | \ No newline at end of file +| `output` | VIDEO | الفيديو المعالج بعد إدراج الصورة فيه. | diff --git a/comfyui_embedded_docs/docs/Pikadditions/pt-BR.md b/comfyui_embedded_docs/docs/Pikadditions/pt-BR.md index 8f2f506f4..9f50f7a3c 100644 --- a/comfyui_embedded_docs/docs/Pikadditions/pt-BR.md +++ b/comfyui_embedded_docs/docs/Pikadditions/pt-BR.md @@ -16,4 +16,4 @@ O nó Pikadditions permite adicionar qualquer objeto ou imagem ao seu vídeo. Vo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo processado com a imagem inserida. | \ No newline at end of file +| `output` | VIDEO | O vídeo processado com a imagem inserida. | diff --git a/comfyui_embedded_docs/docs/Pikadditions/tr.md b/comfyui_embedded_docs/docs/Pikadditions/tr.md index e37d615d0..076d8b58a 100644 --- a/comfyui_embedded_docs/docs/Pikadditions/tr.md +++ b/comfyui_embedded_docs/docs/Pikadditions/tr.md @@ -16,4 +16,4 @@ Pikadditions düğümü, videonuza herhangi bir nesne veya görüntü eklemenize | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Görüntü eklenmiş işlenmiş video. | \ No newline at end of file +| `output` | VIDEO | Görüntü eklenmiş işlenmiş video. | diff --git a/comfyui_embedded_docs/docs/Pikadditions/zh-TW.md b/comfyui_embedded_docs/docs/Pikadditions/zh-TW.md index 19843995e..0e9cdfaa5 100644 --- a/comfyui_embedded_docs/docs/Pikadditions/zh-TW.md +++ b/comfyui_embedded_docs/docs/Pikadditions/zh-TW.md @@ -16,4 +16,4 @@ Pikadditions 節點可讓您在影片中添加任何物件或圖像。您只需 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 已插入圖像的處理後影片。 | \ No newline at end of file +| `output` | VIDEO | 已插入圖像的處理後影片。 | diff --git a/comfyui_embedded_docs/docs/Pikaffects/ar.md b/comfyui_embedded_docs/docs/Pikaffects/ar.md index 353362a34..8eea8b828 100644 --- a/comfyui_embedded_docs/docs/Pikaffects/ar.md +++ b/comfyui_embedded_docs/docs/Pikaffects/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ مع تأثير Pikaffect المُطبق. | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ مع تأثير Pikaffect المُطبق. | diff --git a/comfyui_embedded_docs/docs/Pikaffects/pt-BR.md b/comfyui_embedded_docs/docs/Pikaffects/pt-BR.md index e95f8060e..39a521d07 100644 --- a/comfyui_embedded_docs/docs/Pikaffects/pt-BR.md +++ b/comfyui_embedded_docs/docs/Pikaffects/pt-BR.md @@ -16,4 +16,4 @@ O nó Pikaffects gera vídeos com vários efeitos visuais aplicados a uma imagem | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com o efeito Pikaffect aplicado. | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com o efeito Pikaffect aplicado. | diff --git a/comfyui_embedded_docs/docs/Pikaffects/tr.md b/comfyui_embedded_docs/docs/Pikaffects/tr.md index 78128a917..289343f54 100644 --- a/comfyui_embedded_docs/docs/Pikaffects/tr.md +++ b/comfyui_embedded_docs/docs/Pikaffects/tr.md @@ -16,4 +16,4 @@ Pikaffects düğümü, bir giriş görseline çeşitli görsel efektler uygulanm | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Uygulanan Pikaffect ile oluşturulan video. | \ No newline at end of file +| `output` | VIDEO | Uygulanan Pikaffect ile oluşturulan video. | diff --git a/comfyui_embedded_docs/docs/Pikaffects/zh-TW.md b/comfyui_embedded_docs/docs/Pikaffects/zh-TW.md index d1a02579c..1b3981d8b 100644 --- a/comfyui_embedded_docs/docs/Pikaffects/zh-TW.md +++ b/comfyui_embedded_docs/docs/Pikaffects/zh-TW.md @@ -16,4 +16,4 @@ Pikaffects 節點可生成帶有各種視覺效果的影片,這些效果會套 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 套用了 Pikaffect 效果後生成的影片。 | \ No newline at end of file +| `output` | VIDEO | 套用了 Pikaffect 效果後生成的影片。 | diff --git a/comfyui_embedded_docs/docs/Pikaswaps/ar.md b/comfyui_embedded_docs/docs/Pikaswaps/ar.md index 304dde09b..dc6ca5754 100644 --- a/comfyui_embedded_docs/docs/Pikaswaps/ar.md +++ b/comfyui_embedded_docs/docs/Pikaswaps/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `output` | VIDEO | الفيديو المعالج بعد استبدال الكائن أو المنطقة المحددة. | \ No newline at end of file +| `output` | VIDEO | الفيديو المعالج بعد استبدال الكائن أو المنطقة المحددة. | diff --git a/comfyui_embedded_docs/docs/Pikaswaps/pt-BR.md b/comfyui_embedded_docs/docs/Pikaswaps/pt-BR.md index ebd582718..ed51407a6 100644 --- a/comfyui_embedded_docs/docs/Pikaswaps/pt-BR.md +++ b/comfyui_embedded_docs/docs/Pikaswaps/pt-BR.md @@ -19,4 +19,4 @@ O nó Pika Swaps permite substituir objetos ou regiões em seu vídeo por novas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo processado com o objeto ou região especificada substituída. | \ No newline at end of file +| `output` | VIDEO | O vídeo processado com o objeto ou região especificada substituída. | diff --git a/comfyui_embedded_docs/docs/Pikaswaps/tr.md b/comfyui_embedded_docs/docs/Pikaswaps/tr.md index 30b4a14b8..7247bf804 100644 --- a/comfyui_embedded_docs/docs/Pikaswaps/tr.md +++ b/comfyui_embedded_docs/docs/Pikaswaps/tr.md @@ -19,4 +19,4 @@ Pika Swaps düğümü, videonuzdaki nesneleri veya bölgeleri yeni görüntüler | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Belirtilen nesnenin veya bölgenin değiştirildiği işlenmiş video. | \ No newline at end of file +| `output` | VIDEO | Belirtilen nesnenin veya bölgenin değiştirildiği işlenmiş video. | diff --git a/comfyui_embedded_docs/docs/Pikaswaps/zh-TW.md b/comfyui_embedded_docs/docs/Pikaswaps/zh-TW.md index 3d1c3c489..08af2c9d6 100644 --- a/comfyui_embedded_docs/docs/Pikaswaps/zh-TW.md +++ b/comfyui_embedded_docs/docs/Pikaswaps/zh-TW.md @@ -19,4 +19,4 @@ Pika Swaps 節點允許您將影片中的物件或區域替換為新影像。您 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 經過處理的影片,其中指定的物件或區域已被替換。 | \ No newline at end of file +| `output` | VIDEO | 經過處理的影片,其中指定的物件或區域已被替換。 | diff --git a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/ar.md index 0c91199d5..78a7ee927 100644 --- a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/ar.md @@ -21,4 +21,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ استنادًا إلى صورة الإدخال والمعاملات | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ استنادًا إلى صورة الإدخال والمعاملات | diff --git a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/pt-BR.md index 99c54ef87..3664bbaef 100644 --- a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/pt-BR.md @@ -21,4 +21,4 @@ Gera vídeos com base em uma imagem de entrada e um prompt de texto. Este nó re | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | Vídeo gerado com base na imagem de entrada e nos parâmetros | \ No newline at end of file +| `output` | VIDEO | Vídeo gerado com base na imagem de entrada e nos parâmetros | diff --git a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/tr.md index 066894beb..a72d71fee 100644 --- a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/tr.md @@ -21,4 +21,4 @@ Bir giriş görselini ve metin istemini temel alarak videolar oluşturur. Bu dü | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Giriş görseli ve parametrelere dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Giriş görseli ve parametrelere dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/zh-TW.md index 1f92ee450..9f8419e8e 100644 --- a/comfyui_embedded_docs/docs/PixverseImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/PixverseImageToVideoNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入影像和參數生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據輸入影像和參數生成的影片 | diff --git a/comfyui_embedded_docs/docs/PixverseTemplateNode/ar.md b/comfyui_embedded_docs/docs/PixverseTemplateNode/ar.md index a1bc52b39..7d0a38622 100644 --- a/comfyui_embedded_docs/docs/PixverseTemplateNode/ar.md +++ b/comfyui_embedded_docs/docs/PixverseTemplateNode/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------------|--------------|-------------------------------------------------------------------------------| -| `pixverse_template` | INT | معرّف القالب المقابل لاسم القالب المحدد، والذي يمكن استخدامه بواسطة عقد PixVerse الأخرى لتوليد الفيديو. | \ No newline at end of file +| `pixverse_template` | INT | معرّف القالب المقابل لاسم القالب المحدد، والذي يمكن استخدامه بواسطة عقد PixVerse الأخرى لتوليد الفيديو. | diff --git a/comfyui_embedded_docs/docs/PixverseTemplateNode/pt-BR.md b/comfyui_embedded_docs/docs/PixverseTemplateNode/pt-BR.md index ba12fd89b..7ce32c24a 100644 --- a/comfyui_embedded_docs/docs/PixverseTemplateNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/PixverseTemplateNode/pt-BR.md @@ -12,4 +12,4 @@ O nó PixVerse Template permite que você selecione entre os modelos disponívei | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `pixverse_template` | INT | O ID do modelo correspondente ao nome do modelo selecionado, que pode ser usado por outros nós do PixVerse para geração de vídeo. | \ No newline at end of file +| `pixverse_template` | INT | O ID do modelo correspondente ao nome do modelo selecionado, que pode ser usado por outros nós do PixVerse para geração de vídeo. | diff --git a/comfyui_embedded_docs/docs/PixverseTemplateNode/tr.md b/comfyui_embedded_docs/docs/PixverseTemplateNode/tr.md index 82b53ccf5..84b6641ac 100644 --- a/comfyui_embedded_docs/docs/PixverseTemplateNode/tr.md +++ b/comfyui_embedded_docs/docs/PixverseTemplateNode/tr.md @@ -12,4 +12,4 @@ PixVerse Template düğümü, PixVerse video oluşturma için mevcut şablonlard | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `pixverse_template` | INT | Seçilen şablon adına karşılık gelen şablon kimliği; video oluşturma için diğer PixVerse düğümleri tarafından kullanılabilir. | \ No newline at end of file +| `pixverse_template` | INT | Seçilen şablon adına karşılık gelen şablon kimliği; video oluşturma için diğer PixVerse düğümleri tarafından kullanılabilir. | diff --git a/comfyui_embedded_docs/docs/PixverseTemplateNode/zh-TW.md b/comfyui_embedded_docs/docs/PixverseTemplateNode/zh-TW.md index 52731a8b1..70cea60a3 100644 --- a/comfyui_embedded_docs/docs/PixverseTemplateNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/PixverseTemplateNode/zh-TW.md @@ -12,4 +12,4 @@ PixVerse Template 節點允許您從可用的 PixVerse 影片生成模板中進 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `pixverse_template` | INT | 對應於所選模板名稱的模板 ID,可供其他 PixVerse 節點用於影片生成。 | \ No newline at end of file +| `pixverse_template` | INT | 對應於所選模板名稱的模板 ID,可供其他 PixVerse 節點用於影片生成。 | diff --git a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/ar.md index 30b1e7747..512df2845 100644 --- a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/ar.md @@ -21,4 +21,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/pt-BR.md index 9680d34d0..9f36f2ab4 100644 --- a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/pt-BR.md @@ -21,4 +21,4 @@ Gera vídeos com base no prompt e no tamanho de saída. Este nó cria conteúdo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/tr.md index 1e8b0c89e..96e8d3080 100644 --- a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/tr.md @@ -21,4 +21,4 @@ Metin ve çıktı boyutuna dayalı olarak videolar oluşturur. Bu düğüm, PixV | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/zh-TW.md index f7f4cf45e..f9d288600 100644 --- a/comfyui_embedded_docs/docs/PixverseTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/PixverseTextToVideoNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/ar.md b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/ar.md index cca7281ad..733bb9502 100644 --- a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو الانتقالي المُنشأ | \ No newline at end of file +| `output` | VIDEO | الفيديو الانتقالي المُنشأ | diff --git a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/pt-BR.md index 1fbc23218..36aafb389 100644 --- a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/pt-BR.md @@ -21,4 +21,4 @@ Gera vídeos com base em prompt e output_size. Este nó cria vídeos de transiç | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo de transição gerado | \ No newline at end of file +| `output` | VIDEO | O vídeo de transição gerado | diff --git a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/tr.md b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/tr.md index d0a902be0..27df2058f 100644 --- a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/tr.md @@ -21,4 +21,4 @@ Prompt ve output_size değerlerine dayalı olarak video oluşturur. Bu düğüm, | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan geçiş videosu | \ No newline at end of file +| `output` | VIDEO | Oluşturulan geçiş videosu | diff --git a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/zh-TW.md index f7f46c7c1..71949f139 100644 --- a/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/PixverseTransitionVideoNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的轉場影片 | \ No newline at end of file +| `output` | VIDEO | 生成的轉場影片 | diff --git a/comfyui_embedded_docs/docs/PolyexponentialScheduler/ar.md b/comfyui_embedded_docs/docs/PolyexponentialScheduler/ar.md index bbecb681d..dead4807c 100644 --- a/comfyui_embedded_docs/docs/PolyexponentialScheduler/ar.md +++ b/comfyui_embedded_docs/docs/PolyexponentialScheduler/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|------------------------------------------------------------| -| `sigmas` | SIGMAS | المخرجات هي تسلسل لمستويات الضوضاء (sigmas) مخصصة وفقًا لجدول الضوضاء متعدد الأسيات المحدد. | \ No newline at end of file +| `sigmas` | SIGMAS | المخرجات هي تسلسل لمستويات الضوضاء (sigmas) مخصصة وفقًا لجدول الضوضاء متعدد الأسيات المحدد. | diff --git a/comfyui_embedded_docs/docs/PolyexponentialScheduler/pt-BR.md b/comfyui_embedded_docs/docs/PolyexponentialScheduler/pt-BR.md index 64c08db75..cf30607ef 100644 --- a/comfyui_embedded_docs/docs/PolyexponentialScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/PolyexponentialScheduler/pt-BR.md @@ -15,4 +15,4 @@ O nó PolyexponentialScheduler é projetado para gerar uma sequência de níveis | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-----------------------------------------------------------------------------| -| `sigmas` | SIGMAS | A saída é uma sequência de níveis de ruído (sigmas) adaptada ao cronograma de ruído poli-exponencial especificado. | \ No newline at end of file +| `sigmas` | SIGMAS | A saída é uma sequência de níveis de ruído (sigmas) adaptada ao cronograma de ruído poli-exponencial especificado. | diff --git a/comfyui_embedded_docs/docs/PolyexponentialScheduler/tr.md b/comfyui_embedded_docs/docs/PolyexponentialScheduler/tr.md index be5f8540e..bc3fc0cf9 100644 --- a/comfyui_embedded_docs/docs/PolyexponentialScheduler/tr.md +++ b/comfyui_embedded_docs/docs/PolyexponentialScheduler/tr.md @@ -15,4 +15,4 @@ PolyexponentialScheduler düğümü, poliyüstel gürültü zamanlamasına dayal | Parametre | Veri Türü | Açıklama | |-----------|-----------|-------------------------------------------------------------------------| -| `sigmas` | SIGMAS | Çıktı, belirtilen poliyüstel gürültü zamanlamasına uyarlanmış bir gürültü seviyeleri (sigmalar) dizisidir. | \ No newline at end of file +| `sigmas` | SIGMAS | Çıktı, belirtilen poliyüstel gürültü zamanlamasına uyarlanmış bir gürültü seviyeleri (sigmalar) dizisidir. | diff --git a/comfyui_embedded_docs/docs/PolyexponentialScheduler/zh-TW.md b/comfyui_embedded_docs/docs/PolyexponentialScheduler/zh-TW.md index a7df05c8f..66630b3c2 100644 --- a/comfyui_embedded_docs/docs/PolyexponentialScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/PolyexponentialScheduler/zh-TW.md @@ -15,4 +15,4 @@ PolyexponentialScheduler 節點旨在根據多項式指數噪聲排程生成一 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|---------------------------------------------------------------------| -| `sigmas` | SIGMAS | 輸出是根據指定的多項式指數噪聲排程量身定制的一系列噪聲水平(sigmas)。 | \ No newline at end of file +| `sigmas` | SIGMAS | 輸出是根據指定的多項式指數噪聲排程量身定制的一系列噪聲水平(sigmas)。 | diff --git a/comfyui_embedded_docs/docs/PorterDuffImageComposite/ar.md b/comfyui_embedded_docs/docs/PorterDuffImageComposite/ar.md index f9f207fa4..501ef7739 100644 --- a/comfyui_embedded_docs/docs/PorterDuffImageComposite/ar.md +++ b/comfyui_embedded_docs/docs/PorterDuffImageComposite/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | | ------- | ------------- | ------ | | `image` | `IMAGE` | الصورة المركبة الناتجة عن تطبيق نمط Porter-Duff المحدد. | -| `mask` | `MASK` | قناة ألفا للصورة المركبة، والتي تشير إلى شفافية كل بكسل. | \ No newline at end of file +| `mask` | `MASK` | قناة ألفا للصورة المركبة، والتي تشير إلى شفافية كل بكسل. | diff --git a/comfyui_embedded_docs/docs/PorterDuffImageComposite/pt-BR.md b/comfyui_embedded_docs/docs/PorterDuffImageComposite/pt-BR.md index 0c45f32f1..3019b8a5d 100644 --- a/comfyui_embedded_docs/docs/PorterDuffImageComposite/pt-BR.md +++ b/comfyui_embedded_docs/docs/PorterDuffImageComposite/pt-BR.md @@ -17,4 +17,4 @@ O nó PorterDuffImageComposite é projetado para realizar a composição de imag | Parâmetro | Tipo de Dado | Descrição | | --------- | ------------ | ----------- | | `image` | `IMAGE` | A imagem composta resultante da aplicação do modo Porter-Duff especificado. | -| `mask` | `MASK` | O canal alfa da imagem composta, indicando a transparência de cada pixel. | \ No newline at end of file +| `mask` | `MASK` | O canal alfa da imagem composta, indicando a transparência de cada pixel. | diff --git a/comfyui_embedded_docs/docs/PorterDuffImageComposite/tr.md b/comfyui_embedded_docs/docs/PorterDuffImageComposite/tr.md index 577a7af20..02eabae2f 100644 --- a/comfyui_embedded_docs/docs/PorterDuffImageComposite/tr.md +++ b/comfyui_embedded_docs/docs/PorterDuffImageComposite/tr.md @@ -17,4 +17,4 @@ PorterDuffImageComposite düğümü, Porter-Duff birleştirme operatörlerini ku | Parametre | Veri Tipi | Açıklama | | --------- | ------------ | ----------- | | `image` | `IMAGE` | Belirtilen Porter-Duff modunun uygulanmasından elde edilen birleştirilmiş görüntü. | -| `mask` | `MASK` | Birleştirilmiş görüntünün alfa kanalıdır ve her pikselin saydamlığını gösterir. | \ No newline at end of file +| `mask` | `MASK` | Birleştirilmiş görüntünün alfa kanalıdır ve her pikselin saydamlığını gösterir. | diff --git a/comfyui_embedded_docs/docs/PorterDuffImageComposite/zh-TW.md b/comfyui_embedded_docs/docs/PorterDuffImageComposite/zh-TW.md index c28265703..c0d2e3a8a 100644 --- a/comfyui_embedded_docs/docs/PorterDuffImageComposite/zh-TW.md +++ b/comfyui_embedded_docs/docs/PorterDuffImageComposite/zh-TW.md @@ -17,4 +17,4 @@ PorterDuffImageComposite 節點專門用於執行基於 Porter-Duff 合成運算 | 參數名稱 | 資料類型 | 描述 | | --------- | ------------ | ----------- | | `image` | `IMAGE` | 套用指定 Porter-Duff 模式後產生的合成影像。 | -| `mask` | `MASK` | 合成影像的 Alpha 通道,用於指示每個像素的透明度。 | \ No newline at end of file +| `mask` | `MASK` | 合成影像的 Alpha 通道,用於指示每個像素的透明度。 | diff --git a/comfyui_embedded_docs/docs/Preview3D/ar.md b/comfyui_embedded_docs/docs/Preview3D/ar.md index 3094d2cef..171834a14 100644 --- a/comfyui_embedded_docs/docs/Preview3D/ar.md +++ b/comfyui_embedded_docs/docs/Preview3D/ar.md @@ -100,4 +100,4 @@ ![قائمة التصدير](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -توفر هذه القائمة القدرة على تحويل تنسيقات النماذج وتصديرها بسرعة \ No newline at end of file +توفر هذه القائمة القدرة على تحويل تنسيقات النماذج وتصديرها بسرعة diff --git a/comfyui_embedded_docs/docs/Preview3D/pt-BR.md b/comfyui_embedded_docs/docs/Preview3D/pt-BR.md index b1a566d27..b10b9c96a 100644 --- a/comfyui_embedded_docs/docs/Preview3D/pt-BR.md +++ b/comfyui_embedded_docs/docs/Preview3D/pt-BR.md @@ -100,4 +100,4 @@ Através deste menu, você pode ajustar rapidamente a intensidade da iluminaçã ![menu_exportar](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -Este menu fornece a capacidade de converter e exportar rapidamente formatos de modelo \ No newline at end of file +Este menu fornece a capacidade de converter e exportar rapidamente formatos de modelo diff --git a/comfyui_embedded_docs/docs/Preview3D/tr.md b/comfyui_embedded_docs/docs/Preview3D/tr.md index f56d8f24c..29fc75518 100644 --- a/comfyui_embedded_docs/docs/Preview3D/tr.md +++ b/comfyui_embedded_docs/docs/Preview3D/tr.md @@ -100,4 +100,4 @@ Bu menü aracılığıyla, sahnenin genel aydınlatma yoğunluğunu hızlıca ay ![menu_export](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -Bu menü, model formatlarını hızlıca dönüştürme ve dışa aktarma yeteneği sağlar \ No newline at end of file +Bu menü, model formatlarını hızlıca dönüştürme ve dışa aktarma yeteneği sağlar diff --git a/comfyui_embedded_docs/docs/Preview3D/zh-TW.md b/comfyui_embedded_docs/docs/Preview3D/zh-TW.md index e50da8152..ec4c1e39d 100644 --- a/comfyui_embedded_docs/docs/Preview3D/zh-TW.md +++ b/comfyui_embedded_docs/docs/Preview3D/zh-TW.md @@ -102,4 +102,4 @@ Preview3D 節點主要用於預覽 3D 模型輸出。此節點接收兩個輸入 ![匯出選單](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -此選單提供快速轉換和匯出模型格式的功能 \ No newline at end of file +此選單提供快速轉換和匯出模型格式的功能 diff --git a/comfyui_embedded_docs/docs/Preview3DAnimation/ar.md b/comfyui_embedded_docs/docs/Preview3DAnimation/ar.md index 827b20dba..a8437558e 100644 --- a/comfyui_embedded_docs/docs/Preview3DAnimation/ar.md +++ b/comfyui_embedded_docs/docs/Preview3DAnimation/ar.md @@ -100,4 +100,4 @@ ![قائمة التصدير](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -توفر هذه القائمة القدرة على تحويل صيغ النماذج وتصديرها بسرعة \ No newline at end of file +توفر هذه القائمة القدرة على تحويل صيغ النماذج وتصديرها بسرعة diff --git a/comfyui_embedded_docs/docs/Preview3DAnimation/pt-BR.md b/comfyui_embedded_docs/docs/Preview3DAnimation/pt-BR.md index ef57a6243..f542415fd 100644 --- a/comfyui_embedded_docs/docs/Preview3DAnimation/pt-BR.md +++ b/comfyui_embedded_docs/docs/Preview3DAnimation/pt-BR.md @@ -100,4 +100,4 @@ Através deste menu, você pode ajustar rapidamente a intensidade da iluminaçã ![menu_exportar](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -Este menu fornece a capacidade de converter e exportar rapidamente formatos de modelo \ No newline at end of file +Este menu fornece a capacidade de converter e exportar rapidamente formatos de modelo diff --git a/comfyui_embedded_docs/docs/Preview3DAnimation/tr.md b/comfyui_embedded_docs/docs/Preview3DAnimation/tr.md index 6220b4931..20b74bdcf 100644 --- a/comfyui_embedded_docs/docs/Preview3DAnimation/tr.md +++ b/comfyui_embedded_docs/docs/Preview3DAnimation/tr.md @@ -100,4 +100,4 @@ Bu menü aracılığıyla, sahnenin genel aydınlatma yoğunluğunu hızlıca ay ![menu_export](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -Bu menü, model formatlarını hızlıca dönüştürme ve dışa aktarma yeteneği sağlar \ No newline at end of file +Bu menü, model formatlarını hızlıca dönüştürme ve dışa aktarma yeteneği sağlar diff --git a/comfyui_embedded_docs/docs/Preview3DAnimation/zh-TW.md b/comfyui_embedded_docs/docs/Preview3DAnimation/zh-TW.md index 0e6048fad..39a5632b8 100644 --- a/comfyui_embedded_docs/docs/Preview3DAnimation/zh-TW.md +++ b/comfyui_embedded_docs/docs/Preview3DAnimation/zh-TW.md @@ -100,4 +100,4 @@ Preview3DAnimation 節點主要用於預覽 3D 模型輸出。此節點接收兩 ![匯出選單](https://raw.githubusercontent.com/Comfy-Org/embedded-docs/refs/heads/main/comfyui_embedded_docs/docs/Load3d/asset/menu_export.webp) -此選單提供快速轉換和匯出模型格式的功能 \ No newline at end of file +此選單提供快速轉換和匯出模型格式的功能 diff --git a/comfyui_embedded_docs/docs/PreviewAny/ar.md b/comfyui_embedded_docs/docs/PreviewAny/ar.md index 3f5d1fa58..f0a4b6605 100644 --- a/comfyui_embedded_docs/docs/PreviewAny/ar.md +++ b/comfyui_embedded_docs/docs/PreviewAny/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| عرض النصوص في الواجهة | TEXT | يعرض بيانات الإدخال المحولة إلى صيغة نصية في واجهة المستخدم | \ No newline at end of file +| عرض النصوص في الواجهة | TEXT | يعرض بيانات الإدخال المحولة إلى صيغة نصية في واجهة المستخدم | diff --git a/comfyui_embedded_docs/docs/PreviewAny/pt-BR.md b/comfyui_embedded_docs/docs/PreviewAny/pt-BR.md index 291536dbc..5b96db91a 100644 --- a/comfyui_embedded_docs/docs/PreviewAny/pt-BR.md +++ b/comfyui_embedded_docs/docs/PreviewAny/pt-BR.md @@ -12,4 +12,4 @@ O nó PreviewAny exibe uma prévia de qualquer tipo de dado de entrada em format | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| Exibição de Texto na Interface | TEXT | Exibe os dados de entrada convertidos para formato de texto na interface do usuário | \ No newline at end of file +| Exibição de Texto na Interface | TEXT | Exibe os dados de entrada convertidos para formato de texto na interface do usuário | diff --git a/comfyui_embedded_docs/docs/PreviewAny/tr.md b/comfyui_embedded_docs/docs/PreviewAny/tr.md index 529e8ca9b..31b5c1933 100644 --- a/comfyui_embedded_docs/docs/PreviewAny/tr.md +++ b/comfyui_embedded_docs/docs/PreviewAny/tr.md @@ -12,4 +12,4 @@ PreviewAny düğümü, herhangi bir giriş veri türünün önizlemesini metin f | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| UI Metin Görüntüsü | TEXT | Kullanıcı arayüzünde metin formatına dönüştürülmüş giriş verilerini görüntüler | \ No newline at end of file +| UI Metin Görüntüsü | TEXT | Kullanıcı arayüzünde metin formatına dönüştürülmüş giriş verilerini görüntüler | diff --git a/comfyui_embedded_docs/docs/PreviewAny/zh-TW.md b/comfyui_embedded_docs/docs/PreviewAny/zh-TW.md index 7b8a974b3..f258ba18c 100644 --- a/comfyui_embedded_docs/docs/PreviewAny/zh-TW.md +++ b/comfyui_embedded_docs/docs/PreviewAny/zh-TW.md @@ -12,4 +12,4 @@ PreviewAny 節點以文字格式顯示任何輸入資料類型的預覽畫面。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| UI 文字顯示 | TEXT | 在使用者介面中顯示已轉換為文字格式的輸入資料 | \ No newline at end of file +| UI 文字顯示 | TEXT | 在使用者介面中顯示已轉換為文字格式的輸入資料 | diff --git a/comfyui_embedded_docs/docs/PreviewAudio/ar.md b/comfyui_embedded_docs/docs/PreviewAudio/ar.md index 4168db19e..0854a2f94 100644 --- a/comfyui_embedded_docs/docs/PreviewAudio/ar.md +++ b/comfyui_embedded_docs/docs/PreviewAudio/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `ui` | UI | يعرض معاينة الصوت في الواجهة | \ No newline at end of file +| `ui` | UI | يعرض معاينة الصوت في الواجهة | diff --git a/comfyui_embedded_docs/docs/PreviewAudio/pt-BR.md b/comfyui_embedded_docs/docs/PreviewAudio/pt-BR.md index 8a72338bf..cb9989d40 100644 --- a/comfyui_embedded_docs/docs/PreviewAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/PreviewAudio/pt-BR.md @@ -14,4 +14,4 @@ O nó PreviewAudio gera um arquivo de prévia de áudio temporário que pode ser | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `ui` | UI | Exibe a prévia do áudio na interface | \ No newline at end of file +| `ui` | UI | Exibe a prévia do áudio na interface | diff --git a/comfyui_embedded_docs/docs/PreviewAudio/tr.md b/comfyui_embedded_docs/docs/PreviewAudio/tr.md index d80e253f2..fd3b99dc1 100644 --- a/comfyui_embedded_docs/docs/PreviewAudio/tr.md +++ b/comfyui_embedded_docs/docs/PreviewAudio/tr.md @@ -14,4 +14,4 @@ PreviewAudio düğümü, arayüzde görüntülenebilen geçici bir ses önizleme | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui` | UI | Ses önizlemesini arayüzde görüntüler | \ No newline at end of file +| `ui` | UI | Ses önizlemesini arayüzde görüntüler | diff --git a/comfyui_embedded_docs/docs/PreviewAudio/zh-TW.md b/comfyui_embedded_docs/docs/PreviewAudio/zh-TW.md index 2ebc74f72..2c739d254 100644 --- a/comfyui_embedded_docs/docs/PreviewAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/PreviewAudio/zh-TW.md @@ -16,4 +16,4 @@ PreviewAudio 節點會生成一個臨時音訊預覽檔案,可在介面中顯 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `ui` | UI | 在介面中顯示音訊預覽 | \ No newline at end of file +| `ui` | UI | 在介面中顯示音訊預覽 | diff --git a/comfyui_embedded_docs/docs/PreviewImage/ar.md b/comfyui_embedded_docs/docs/PreviewImage/ar.md index 26c3955ce..1b00caf5a 100644 --- a/comfyui_embedded_docs/docs/PreviewImage/ar.md +++ b/comfyui_embedded_docs/docs/PreviewImage/ar.md @@ -10,4 +10,4 @@ ## المخرجات -لا تحتوي العُقدة على أنواع مُخرجات. \ No newline at end of file +لا تحتوي العُقدة على أنواع مُخرجات. diff --git a/comfyui_embedded_docs/docs/PreviewImage/pt-BR.md b/comfyui_embedded_docs/docs/PreviewImage/pt-BR.md index 29d815fca..13980b9c2 100644 --- a/comfyui_embedded_docs/docs/PreviewImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/PreviewImage/pt-BR.md @@ -10,4 +10,4 @@ O nó PreviewImage é projetado para criar imagens de visualização temporária ## Saídas -O nó não possui tipos de saída. \ No newline at end of file +O nó não possui tipos de saída. diff --git a/comfyui_embedded_docs/docs/PreviewImage/tr.md b/comfyui_embedded_docs/docs/PreviewImage/tr.md index 1bfc10911..01f5e6ab8 100644 --- a/comfyui_embedded_docs/docs/PreviewImage/tr.md +++ b/comfyui_embedded_docs/docs/PreviewImage/tr.md @@ -10,4 +10,4 @@ PreviewImage düğümü, geçici önizleme görüntüleri oluşturmak için tasa ## Çıktılar -Düğümün çıktı türleri bulunmamaktadır. \ No newline at end of file +Düğümün çıktı türleri bulunmamaktadır. diff --git a/comfyui_embedded_docs/docs/PreviewImage/zh-TW.md b/comfyui_embedded_docs/docs/PreviewImage/zh-TW.md index 8d82ca503..350c0d88c 100644 --- a/comfyui_embedded_docs/docs/PreviewImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/PreviewImage/zh-TW.md @@ -10,4 +10,4 @@ PreviewImage 節點專為建立臨時預覽影像而設計。它會自動為每 ## 輸出結果 -本節點沒有輸出類型。 \ No newline at end of file +本節點沒有輸出類型。 diff --git a/comfyui_embedded_docs/docs/PrimitiveBoolean/ar.md b/comfyui_embedded_docs/docs/PrimitiveBoolean/ar.md index 1e4bb53ec..3164b51eb 100644 --- a/comfyui_embedded_docs/docs/PrimitiveBoolean/ar.md +++ b/comfyui_embedded_docs/docs/PrimitiveBoolean/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | BOOLEAN | نفس القيمة المنطقية التي تم تقديمها كمدخل | \ No newline at end of file +| `output` | BOOLEAN | نفس القيمة المنطقية التي تم تقديمها كمدخل | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoolean/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveBoolean/pt-BR.md index 7921a8693..1c0a5808e 100644 --- a/comfyui_embedded_docs/docs/PrimitiveBoolean/pt-BR.md +++ b/comfyui_embedded_docs/docs/PrimitiveBoolean/pt-BR.md @@ -12,4 +12,4 @@ O nó Boolean fornece uma maneira simples de passar valores booleanos (verdadeir | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | BOOLEAN | O mesmo valor booleano que foi fornecido como entrada | \ No newline at end of file +| `output` | BOOLEAN | O mesmo valor booleano que foi fornecido como entrada | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoolean/tr.md b/comfyui_embedded_docs/docs/PrimitiveBoolean/tr.md index 4cb5b8419..17263c423 100644 --- a/comfyui_embedded_docs/docs/PrimitiveBoolean/tr.md +++ b/comfyui_embedded_docs/docs/PrimitiveBoolean/tr.md @@ -12,4 +12,4 @@ Boolean düğümü, iş akışınızda boolean (doğru/yanlış) değerlerini il | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | BOOLEAN | Giriş olarak sağlanan aynı boolean değeri | \ No newline at end of file +| `output` | BOOLEAN | Giriş olarak sağlanan aynı boolean değeri | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoolean/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveBoolean/zh-TW.md index abd5579b6..29f2db114 100644 --- a/comfyui_embedded_docs/docs/PrimitiveBoolean/zh-TW.md +++ b/comfyui_embedded_docs/docs/PrimitiveBoolean/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 與輸入值相同的布林值 | \ No newline at end of file +| `output` | BOOLEAN | 與輸入值相同的布林值 | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ar.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ar.md new file mode 100644 index 000000000..158532b6d --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ar.md @@ -0,0 +1,20 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ar.md) + +# عقدة PrimitiveBoundingBox + +تقوم عقدة PrimitiveBoundingBox بإنشاء منطقة مستطيلة بسيطة يتم تعريفها من خلال موقعها وأبعادها. تأخذ إحداثيات X و Y للركن العلوي الأيسر، إلى جانب قيم العرض والارتفاع، وتُخرج بنية بيانات للمربع المحيط يمكن استخدامها من قبل العقد الأخرى في سير العمل. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | لا | 0 إلى 8192 | إحداثي X للركن العلوي الأيسر للمربع المحيط (القيمة الافتراضية: 0). | +| `y` | INT | لا | 0 إلى 8192 | إحداثي Y للركن العلوي الأيسر للمربع المحيط (القيمة الافتراضية: 0). | +| `width` | INT | لا | 1 إلى 8192 | عرض المربع المحيط (القيمة الافتراضية: 512). | +| `height` | INT | لا | 1 إلى 8192 | ارتفاع المربع المحيط (القيمة الافتراضية: 512). | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | بنية بيانات تحتوي على خصائص `x`، و`y`، و`width`، و`height` للمستطيل المُعرَّف. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/en.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/en.md new file mode 100644 index 000000000..613eb02e3 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/en.md) + +The PrimitiveBoundingBox node creates a simple rectangular area defined by its position and size. It takes X and Y coordinates for the top-left corner, along with width and height values, and outputs a bounding box data structure that can be used by other nodes in a workflow. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | No | 0 to 8192 | The X-coordinate for the top-left corner of the bounding box (default: 0). | +| `y` | INT | No | 0 to 8192 | The Y-coordinate for the top-left corner of the bounding box (default: 0). | +| `width` | INT | No | 1 to 8192 | The width of the bounding box (default: 512). | +| `height` | INT | No | 1 to 8192 | The height of the bounding box (default: 512). | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | A data structure containing the `x`, `y`, `width`, and `height` properties of the defined rectangle. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/es.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/es.md new file mode 100644 index 000000000..4976d90d6 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/es.md) + +El nodo PrimitiveBoundingBox crea un área rectangular simple definida por su posición y tamaño. Toma coordenadas X e Y para la esquina superior izquierda, junto con valores de ancho y alto, y genera una estructura de datos de cuadro delimitador que puede ser utilizada por otros nodos en un flujo de trabajo. + +## Entradas + +| Parámetro | Tipo de Dato | Requerido | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | No | 0 a 8192 | La coordenada X para la esquina superior izquierda del cuadro delimitador (por defecto: 0). | +| `y` | INT | No | 0 a 8192 | La coordenada Y para la esquina superior izquierda del cuadro delimitador (por defecto: 0). | +| `width` | INT | No | 1 a 8192 | El ancho del cuadro delimitador (por defecto: 512). | +| `height` | INT | No | 1 a 8192 | La altura del cuadro delimitador (por defecto: 512). | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | Una estructura de datos que contiene las propiedades `x`, `y`, `width` y `height` del rectángulo definido. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/fr.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/fr.md new file mode 100644 index 000000000..a9c28a076 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/fr.md) + +Le nœud PrimitiveBoundingBox crée une zone rectangulaire simple définie par sa position et sa taille. Il prend les coordonnées X et Y pour le coin supérieur gauche, ainsi que les valeurs de largeur et de hauteur, et produit une structure de données de boîte englobante qui peut être utilisée par d'autres nœuds dans un flux de travail. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | Non | 0 à 8192 | La coordonnée X du coin supérieur gauche de la boîte englobante (par défaut : 0). | +| `y` | INT | Non | 0 à 8192 | La coordonnée Y du coin supérieur gauche de la boîte englobante (par défaut : 0). | +| `width` | INT | Non | 1 à 8192 | La largeur de la boîte englobante (par défaut : 512). | +| `height` | INT | Non | 1 à 8192 | La hauteur de la boîte englobante (par défaut : 512). | + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | Une structure de données contenant les propriétés `x`, `y`, `width` et `height` du rectangle défini. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ja.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ja.md new file mode 100644 index 000000000..dece2db8a --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ja.md) + +PrimitiveBoundingBoxノードは、位置とサイズで定義される単純な矩形領域を作成します。左上隅のX座標とY座標、および幅と高さの値を受け取り、ワークフロー内の他のノードで使用できるバウンディングボックスのデータ構造を出力します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | いいえ | 0 から 8192 | バウンディングボックスの左上隅のX座標(デフォルト: 0)。 | +| `y` | INT | いいえ | 0 から 8192 | バウンディングボックスの左上隅のY座標(デフォルト: 0)。 | +| `width` | INT | いいえ | 1 から 8192 | バウンディングボックスの幅(デフォルト: 512)。 | +| `height` | INT | いいえ | 1 から 8192 | バウンディングボックスの高さ(デフォルト: 512)。 | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | 定義された矩形の `x`、`y`、`width`、`height` プロパティを含むデータ構造。 | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ko.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ko.md new file mode 100644 index 000000000..146e2354b --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ko.md) + +PrimitiveBoundingBox 노드는 위치와 크기로 정의된 간단한 직사각형 영역을 생성합니다. 좌상단 모서리의 X 및 Y 좌표와 너비 및 높이 값을 입력받아, 워크플로우의 다른 노드에서 사용할 수 있는 바운딩 박스 데이터 구조를 출력합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | 아니요 | 0 ~ 8192 | 바운딩 박스 좌상단 모서리의 X 좌표입니다 (기본값: 0). | +| `y` | INT | 아니요 | 0 ~ 8192 | 바운딩 박스 좌상단 모서리의 Y 좌표입니다 (기본값: 0). | +| `width` | INT | 아니요 | 1 ~ 8192 | 바운딩 박스의 너비입니다 (기본값: 512). | +| `height` | INT | 아니요 | 1 ~ 8192 | 바운딩 박스의 높이입니다 (기본값: 512). | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | 정의된 직사각형의 `x`, `y`, `width`, `height` 속성을 포함하는 데이터 구조입니다. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/pt-BR.md new file mode 100644 index 000000000..628b1e7e9 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/pt-BR.md) + +O nó PrimitiveBoundingBox cria uma área retangular simples definida por sua posição e tamanho. Ele recebe coordenadas X e Y para o canto superior esquerdo, juntamente com valores de largura e altura, e gera uma estrutura de dados de caixa delimitadora que pode ser usada por outros nós em um fluxo de trabalho. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | Não | 0 a 8192 | A coordenada X para o canto superior esquerdo da caixa delimitadora (padrão: 0). | +| `y` | INT | Não | 0 a 8192 | A coordenada Y para o canto superior esquerdo da caixa delimitadora (padrão: 0). | +| `width` | INT | Não | 1 a 8192 | A largura da caixa delimitadora (padrão: 512). | +| `height` | INT | Não | 1 a 8192 | A altura da caixa delimitadora (padrão: 512). | + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | Uma estrutura de dados contendo as propriedades `x`, `y`, `width` e `height` do retângulo definido. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ru.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ru.md new file mode 100644 index 000000000..f679db979 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/ru.md) + +Узел PrimitiveBoundingBox создаёт простую прямоугольную область, заданную её положением и размером. Он принимает координаты X и Y для левого верхнего угла, а также значения ширины и высоты, и выводит структуру данных ограничивающего прямоугольника (bounding box), которая может использоваться другими узлами в рабочем процессе. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | Нет | от 0 до 8192 | X-координата левого верхнего угла ограничивающего прямоугольника (по умолчанию: 0). | +| `y` | INT | Нет | от 0 до 8192 | Y-координата левого верхнего угла ограничивающего прямоугольника (по умолчанию: 0). | +| `width` | INT | Нет | от 1 до 8192 | Ширина ограничивающего прямоугольника (по умолчанию: 512). | +| `height` | INT | Нет | от 1 до 8192 | Высота ограничивающего прямоугольника (по умолчанию: 512). | + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | Структура данных, содержащая свойства `x`, `y`, `width` и `height` определённого прямоугольника. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/tr.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/tr.md new file mode 100644 index 000000000..56659e6b2 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/tr.md) + +PrimitiveBoundingBox düğümü, konumu ve boyutu ile tanımlanan basit bir dikdörtgen alan oluşturur. Sol üst köşe için X ve Y koordinatlarını, genişlik ve yükseklik değerlerini alır ve bir iş akışındaki diğer düğümler tarafından kullanılabilecek bir sınırlayıcı kutu veri yapısı çıktılar. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | Hayır | 0 - 8192 | Sınırlayıcı kutunun sol üst köşesinin X koordinatı (varsayılan: 0). | +| `y` | INT | Hayır | 0 - 8192 | Sınırlayıcı kutunun sol üst köşesinin Y koordinatı (varsayılan: 0). | +| `width` | INT | Hayır | 1 - 8192 | Sınırlayıcı kutunun genişliği (varsayılan: 512). | +| `height` | INT | Hayır | 1 - 8192 | Sınırlayıcı kutunun yüksekliği (varsayılan: 512). | + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | Tanımlanan dikdörtgenin `x`, `y`, `width` ve `height` özelliklerini içeren bir veri yapısı. | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh-TW.md new file mode 100644 index 000000000..fc3c87555 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh-TW.md) + +PrimitiveBoundingBox 節點建立一個由其位置和大小定義的簡單矩形區域。它接收左上角的 X 和 Y 座標,以及寬度和高度值,並輸出一個邊界框資料結構,可供工作流程中的其他節點使用。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | 否 | 0 至 8192 | 邊界框左上角的 X 座標(預設值:0)。 | +| `y` | INT | 否 | 0 至 8192 | 邊界框左上角的 Y 座標(預設值:0)。 | +| `width` | INT | 否 | 1 至 8192 | 邊界框的寬度(預設值:512)。 | +| `height` | INT | 否 | 1 至 8192 | 邊界框的高度(預設值:512)。 | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | 一個包含所定義矩形 `x`、`y`、`width` 和 `height` 屬性的資料結構。 | diff --git a/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh.md b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh.md new file mode 100644 index 000000000..5948fa665 --- /dev/null +++ b/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/PrimitiveBoundingBox/zh.md) + +PrimitiveBoundingBox 节点创建一个由其位置和大小定义的简单矩形区域。它接收左上角的 X 和 Y 坐标以及宽度和高度值,并输出一个边界框数据结构,该结构可在工作流中被其他节点使用。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `x` | INT | 否 | 0 至 8192 | 边界框左上角的 X 坐标(默认值:0)。 | +| `y` | INT | 否 | 0 至 8192 | 边界框左上角的 Y 坐标(默认值:0)。 | +| `width` | INT | 否 | 1 至 8192 | 边界框的宽度(默认值:512)。 | +| `height` | INT | 否 | 1 至 8192 | 边界框的高度(默认值:512)。 | + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `bounding_box` | BOUNDING_BOX | 一个包含所定义矩形的 `x`、`y`、`width` 和 `height` 属性的数据结构。 | diff --git a/comfyui_embedded_docs/docs/PrimitiveFloat/ar.md b/comfyui_embedded_docs/docs/PrimitiveFloat/ar.md index f3fbdfecb..2f5c07a72 100644 --- a/comfyui_embedded_docs/docs/PrimitiveFloat/ar.md +++ b/comfyui_embedded_docs/docs/PrimitiveFloat/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | FLOAT | القيمة العشرية المُدخلة | \ No newline at end of file +| `output` | FLOAT | القيمة العشرية المُدخلة | diff --git a/comfyui_embedded_docs/docs/PrimitiveFloat/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveFloat/pt-BR.md index c76525ca7..d429bbce4 100644 --- a/comfyui_embedded_docs/docs/PrimitiveFloat/pt-BR.md +++ b/comfyui_embedded_docs/docs/PrimitiveFloat/pt-BR.md @@ -12,4 +12,4 @@ O nó PrimitiveFloat cria um valor numérico de ponto flutuante que pode ser usa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | FLOAT | O valor numérico de ponto flutuante de entrada | \ No newline at end of file +| `output` | FLOAT | O valor numérico de ponto flutuante de entrada | diff --git a/comfyui_embedded_docs/docs/PrimitiveFloat/tr.md b/comfyui_embedded_docs/docs/PrimitiveFloat/tr.md index 1dd0d02a0..295fddf22 100644 --- a/comfyui_embedded_docs/docs/PrimitiveFloat/tr.md +++ b/comfyui_embedded_docs/docs/PrimitiveFloat/tr.md @@ -12,4 +12,4 @@ PrimitiveFloat düğümü, iş akışınızda kullanılabilecek bir kayan nokta | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | FLOAT | Girdi olarak verilen kayan nokta sayısı değeri | \ No newline at end of file +| `output` | FLOAT | Girdi olarak verilen kayan nokta sayısı değeri | diff --git a/comfyui_embedded_docs/docs/PrimitiveFloat/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveFloat/zh-TW.md index 2a1a79e34..dd30dcf06 100644 --- a/comfyui_embedded_docs/docs/PrimitiveFloat/zh-TW.md +++ b/comfyui_embedded_docs/docs/PrimitiveFloat/zh-TW.md @@ -12,4 +12,4 @@ PrimitiveFloat 節點會建立一個浮點數值,可在您的工作流程中 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | FLOAT | 輸入的浮點數值 | \ No newline at end of file +| `output` | FLOAT | 輸入的浮點數值 | diff --git a/comfyui_embedded_docs/docs/PrimitiveInt/ar.md b/comfyui_embedded_docs/docs/PrimitiveInt/ar.md index cf4f66cab..8cdd75344 100644 --- a/comfyui_embedded_docs/docs/PrimitiveInt/ar.md +++ b/comfyui_embedded_docs/docs/PrimitiveInt/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | INT | القيمة الصحيحة المدخلة يتم تمريرها دون تغيير | \ No newline at end of file +| `output` | INT | القيمة الصحيحة المدخلة يتم تمريرها دون تغيير | diff --git a/comfyui_embedded_docs/docs/PrimitiveInt/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveInt/pt-BR.md index 2679621e0..dcd61bae6 100644 --- a/comfyui_embedded_docs/docs/PrimitiveInt/pt-BR.md +++ b/comfyui_embedded_docs/docs/PrimitiveInt/pt-BR.md @@ -12,4 +12,4 @@ O nó PrimitiveInt fornece uma maneira simples de trabalhar com valores inteiros | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | INT | O valor inteiro de entrada, passado inalterado | \ No newline at end of file +| `output` | INT | O valor inteiro de entrada, passado inalterado | diff --git a/comfyui_embedded_docs/docs/PrimitiveInt/tr.md b/comfyui_embedded_docs/docs/PrimitiveInt/tr.md index 251afa4a1..23ce9b515 100644 --- a/comfyui_embedded_docs/docs/PrimitiveInt/tr.md +++ b/comfyui_embedded_docs/docs/PrimitiveInt/tr.md @@ -12,4 +12,4 @@ PrimitiveInt düğümü, iş akışınızda tamsayı değerleriyle çalışmak i | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | INT | Değiştirilmeden aktarılan girdi tamsayı değeri | \ No newline at end of file +| `output` | INT | Değiştirilmeden aktarılan girdi tamsayı değeri | diff --git a/comfyui_embedded_docs/docs/PrimitiveInt/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveInt/zh-TW.md index b00c5eae6..6a29ab5d5 100644 --- a/comfyui_embedded_docs/docs/PrimitiveInt/zh-TW.md +++ b/comfyui_embedded_docs/docs/PrimitiveInt/zh-TW.md @@ -12,4 +12,4 @@ PrimitiveInt 節點提供了一種在您的工作流程中處理整數值的簡 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | INT | 未經更改傳遞的輸入整數值 | \ No newline at end of file +| `output` | INT | 未經更改傳遞的輸入整數值 | diff --git a/comfyui_embedded_docs/docs/PrimitiveString/ar.md b/comfyui_embedded_docs/docs/PrimitiveString/ar.md index 07d1aca58..8d7a239a0 100644 --- a/comfyui_embedded_docs/docs/PrimitiveString/ar.md +++ b/comfyui_embedded_docs/docs/PrimitiveString/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | نفس السلسلة النصية التي تم توفيرها كمدخل | \ No newline at end of file +| `output` | STRING | نفس السلسلة النصية التي تم توفيرها كمدخل | diff --git a/comfyui_embedded_docs/docs/PrimitiveString/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveString/pt-BR.md index c5e68c22e..32ebd88d4 100644 --- a/comfyui_embedded_docs/docs/PrimitiveString/pt-BR.md +++ b/comfyui_embedded_docs/docs/PrimitiveString/pt-BR.md @@ -12,4 +12,4 @@ O nó String fornece uma maneira simples de inserir e transmitir dados de texto | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A mesma string de texto que foi fornecida como entrada | \ No newline at end of file +| `output` | STRING | A mesma string de texto que foi fornecida como entrada | diff --git a/comfyui_embedded_docs/docs/PrimitiveString/tr.md b/comfyui_embedded_docs/docs/PrimitiveString/tr.md index a4292d203..5b61d7973 100644 --- a/comfyui_embedded_docs/docs/PrimitiveString/tr.md +++ b/comfyui_embedded_docs/docs/PrimitiveString/tr.md @@ -12,4 +12,4 @@ String düğümü, iş akışınızda metin verilerini girmek ve iletmek için b | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Girdi olarak sağlanan aynı metin dizesi | \ No newline at end of file +| `output` | STRING | Girdi olarak sağlanan aynı metin dizesi | diff --git a/comfyui_embedded_docs/docs/PrimitiveString/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveString/zh-TW.md index f835922e1..4c037f0f2 100644 --- a/comfyui_embedded_docs/docs/PrimitiveString/zh-TW.md +++ b/comfyui_embedded_docs/docs/PrimitiveString/zh-TW.md @@ -12,4 +12,4 @@ String 節點提供了一種簡單的方式,讓您可以在工作流程中輸 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 與輸入時提供的相同文字字串 | \ No newline at end of file +| `output` | STRING | 與輸入時提供的相同文字字串 | diff --git a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/ar.md b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/ar.md index 5e170a48c..0adab6675 100644 --- a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/ar.md +++ b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | نفس القيمة النصية التي تم تقديمها كمدخل | \ No newline at end of file +| `output` | STRING | نفس القيمة النصية التي تم تقديمها كمدخل | diff --git a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/pt-BR.md b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/pt-BR.md index 82ff7dd2e..a9818c177 100644 --- a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/pt-BR.md +++ b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/pt-BR.md @@ -12,4 +12,4 @@ O nó PrimitiveStringMultiline fornece um campo de entrada de texto multilinha p | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | O mesmo valor de string que foi fornecido como entrada | \ No newline at end of file +| `output` | STRING | O mesmo valor de string que foi fornecido como entrada | diff --git a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/tr.md b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/tr.md index b2b43f08d..b241ce276 100644 --- a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/tr.md +++ b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/tr.md @@ -12,4 +12,4 @@ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Giriş olarak sağlanan aynı dize değeri | \ No newline at end of file +| `output` | STRING | Giriş olarak sağlanan aynı dize değeri | diff --git a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/zh-TW.md b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/zh-TW.md index 002fb5ace..4f879f291 100644 --- a/comfyui_embedded_docs/docs/PrimitiveStringMultiline/zh-TW.md +++ b/comfyui_embedded_docs/docs/PrimitiveStringMultiline/zh-TW.md @@ -12,4 +12,4 @@ PrimitiveStringMultiline 節點提供了一個多行文字輸入欄位,用於 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | STRING | 與輸入值相同的字串值 | \ No newline at end of file +| `output` | STRING | 與輸入值相同的字串值 | diff --git a/comfyui_embedded_docs/docs/QuadrupleClipLoader/ar.md b/comfyui_embedded_docs/docs/QuadrupleClipLoader/ar.md index ae3bcc2a8..3ad310e3a 100644 --- a/comfyui_embedded_docs/docs/QuadrupleClipLoader/ar.md +++ b/comfyui_embedded_docs/docs/QuadrupleClipLoader/ar.md @@ -6,4 +6,4 @@ ستكتشف هذه العقدة النماذج الموجودة في مجلد `ComfyUI/models/text_encoders`، كما ستقرأ النماذج من المسارات الإضافية المُكونة في ملف extra_model_paths.yaml. - في بعض الأحيان، بعد إضافة النماذج، قد تحتاج إلى **إعادة تحميل واجهة ComfyUI** للسماح لها بقراءة ملفات النماذج في المجلد المقابل. \ No newline at end of file + في بعض الأحيان، بعد إضافة النماذج، قد تحتاج إلى **إعادة تحميل واجهة ComfyUI** للسماح لها بقراءة ملفات النماذج في المجلد المقابل. diff --git a/comfyui_embedded_docs/docs/QuadrupleClipLoader/pt-BR.md b/comfyui_embedded_docs/docs/QuadrupleClipLoader/pt-BR.md index 660f33411..dec3cb106 100644 --- a/comfyui_embedded_docs/docs/QuadrupleClipLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/QuadrupleClipLoader/pt-BR.md @@ -4,4 +4,4 @@ O Quadruple CLIP Loader, QuadrupleCLIPLoader, é um dos nós principais do Comfy Ele requer 4 modelos CLIP, correspondentes aos parâmetros `clip_name1`, `clip_name2`, `clip_name3` e `clip_name4`, e fornecerá uma saída do modelo CLIP para os nós subsequentes. -Este nó detecta modelos localizados na pasta `ComfyUI/models/text_encoders` e também lê modelos de caminhos adicionais configurados no arquivo extra_model_paths.yaml. Às vezes, após adicionar modelos, pode ser necessário **recarregar a interface do ComfyUI** para permitir que ela leia os arquivos de modelo na pasta correspondente. \ No newline at end of file +Este nó detecta modelos localizados na pasta `ComfyUI/models/text_encoders` e também lê modelos de caminhos adicionais configurados no arquivo extra_model_paths.yaml. Às vezes, após adicionar modelos, pode ser necessário **recarregar a interface do ComfyUI** para permitir que ela leia os arquivos de modelo na pasta correspondente. diff --git a/comfyui_embedded_docs/docs/QuadrupleClipLoader/tr.md b/comfyui_embedded_docs/docs/QuadrupleClipLoader/tr.md index d9b0ab8d4..2d629f00e 100644 --- a/comfyui_embedded_docs/docs/QuadrupleClipLoader/tr.md +++ b/comfyui_embedded_docs/docs/QuadrupleClipLoader/tr.md @@ -4,4 +4,4 @@ 4 adet CLIP modeli gerektirir; bunlar `clip_name1`, `clip_name2`, `clip_name3` ve `clip_name4` parametrelerine karşılık gelir ve sonraki düğümler için bir CLIP model çıktısı sağlayacaktır. -Bu düğüm, `ComfyUI/models/text_encoders` klasöründe bulunan modelleri algılayacak ve ayrıca extra_model_paths.yaml dosyasında yapılandırılan ek yollardan modelleri okuyacaktır. Bazen modelleri ekledikten sonra, ilgili klasördeki model dosyalarını okuyabilmesi için **ComfyUI arayüzünü yeniden yüklemeniz** gerekebilir. \ No newline at end of file +Bu düğüm, `ComfyUI/models/text_encoders` klasöründe bulunan modelleri algılayacak ve ayrıca extra_model_paths.yaml dosyasında yapılandırılan ek yollardan modelleri okuyacaktır. Bazen modelleri ekledikten sonra, ilgili klasördeki model dosyalarını okuyabilmesi için **ComfyUI arayüzünü yeniden yüklemeniz** gerekebilir. diff --git a/comfyui_embedded_docs/docs/QuadrupleClipLoader/zh-TW.md b/comfyui_embedded_docs/docs/QuadrupleClipLoader/zh-TW.md index b0b1878f4..b70eb388c 100644 --- a/comfyui_embedded_docs/docs/QuadrupleClipLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/QuadrupleClipLoader/zh-TW.md @@ -8,4 +8,4 @@ Quadruple CLIP Loader(QuadrupleCLIPLoader)是 ComfyUI 的核心節點之一 此節點會偵測位於 `ComfyUI/models/text_encoders` 資料夾中的模型, 同時也會從 extra_model_paths.yaml 檔案中配置的額外路徑讀取模型。 -有時在添加模型後,您可能需要**重新載入 ComfyUI 介面**,以便讓它讀取相應資料夾中的模型檔案。 \ No newline at end of file +有時在添加模型後,您可能需要**重新載入 ComfyUI 介面**,以便讓它讀取相應資料夾中的模型檔案。 diff --git a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/ar.md b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/ar.md index 69a0acef0..ce34ddf52 100644 --- a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/ar.md +++ b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المعدل مع تطبيق رقعة شبكة تحكم توليف الانتشار | \ No newline at end of file +| `model` | MODEL | النموذج المعدل مع تطبيق رقعة شبكة تحكم توليف الانتشار | diff --git a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/pt-BR.md b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/pt-BR.md index 1ee5de6df..c3e7a55f5 100644 --- a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/pt-BR.md +++ b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/pt-BR.md @@ -19,4 +19,4 @@ O nó QwenImageDiffsynthControlnet aplica um patch de rede de controle de sínte | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com o patch da rede de controle de síntese por difusão aplicado | \ No newline at end of file +| `model` | MODEL | O modelo modificado com o patch da rede de controle de síntese por difusão aplicado | diff --git a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/tr.md b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/tr.md index 006cd7b0a..0ecb1bc75 100644 --- a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/tr.md +++ b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/tr.md @@ -19,4 +19,4 @@ QwenImageDiffsynthControlnet düğümü, bir temel modelin davranışını deği | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Difüzyon sentez kontrol ağı yaması uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Difüzyon sentez kontrol ağı yaması uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/zh-TW.md b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/zh-TW.md index 8804afa5a..87e37327f 100644 --- a/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/zh-TW.md +++ b/comfyui_embedded_docs/docs/QwenImageDiffsynthControlnet/zh-TW.md @@ -19,4 +19,4 @@ QwenImageDiffsynthControlnet 節點應用擴散合成控制網路修補程式來 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用擴散合成控制網路修補程式的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用擴散合成控制網路修補程式的修改後模型 | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/ar.md b/comfyui_embedded_docs/docs/RandomCropImages/ar.md index a2e5e62bb..6974d1282 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/ar.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد تطبيق القص العشوائي. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد تطبيق القص العشوائي. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/en.md b/comfyui_embedded_docs/docs/RandomCropImages/en.md index de55c9d98..fc131d348 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/en.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/en.md @@ -17,4 +17,4 @@ The Random Crop Images node randomly selects a rectangular section from each inp | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resulting image after the random crop has been applied. | \ No newline at end of file +| `image` | IMAGE | The resulting image after the random crop has been applied. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/es.md b/comfyui_embedded_docs/docs/RandomCropImages/es.md index d9ca4626d..3e606ecad 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/es.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/es.md @@ -17,4 +17,4 @@ El nodo Random Crop Images selecciona aleatoriamente una sección rectangular de | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen resultante después de aplicar el recorte aleatorio. | \ No newline at end of file +| `image` | IMAGE | La imagen resultante después de aplicar el recorte aleatorio. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/fr.md b/comfyui_embedded_docs/docs/RandomCropImages/fr.md index 77840a6c7..84b921e90 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/fr.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/fr.md @@ -17,4 +17,4 @@ Le nœud Random Crop Images sélectionne aléatoirement une section rectangulair | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image résultante après l'application du recadrage aléatoire. | \ No newline at end of file +| `image` | IMAGE | L'image résultante après l'application du recadrage aléatoire. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/ja.md b/comfyui_embedded_docs/docs/RandomCropImages/ja.md index b7b88215c..c5a494a70 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/ja.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/ja.md @@ -17,4 +17,4 @@ Random Crop Images ノードは、各入力画像からランダムに矩形領 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | ランダムクロップが適用された結果の画像です。 | \ No newline at end of file +| `image` | IMAGE | ランダムクロップが適用された結果の画像です。 | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/ko.md b/comfyui_embedded_docs/docs/RandomCropImages/ko.md index c5b6a5006..cefef2544 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/ko.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/ko.md @@ -17,4 +17,4 @@ Random Crop Images 노드는 각 입력 이미지에서 무작위로 사각형 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 무작위 자르기가 적용된 결과 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 무작위 자르기가 적용된 결과 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/pt-BR.md b/comfyui_embedded_docs/docs/RandomCropImages/pt-BR.md index a141cb7da..31839229b 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/pt-BR.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/pt-BR.md @@ -17,4 +17,4 @@ O nó Random Crop Images seleciona aleatoriamente uma seção retangular de cada | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem resultante após a aplicação do recorte aleatório. | \ No newline at end of file +| `image` | IMAGE | A imagem resultante após a aplicação do recorte aleatório. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/ru.md b/comfyui_embedded_docs/docs/RandomCropImages/ru.md index 961486c0b..4bcdaf58d 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/ru.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/ru.md @@ -17,4 +17,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Результирующее изображение после применения случайного кадрирования. | \ No newline at end of file +| `image` | IMAGE | Результирующее изображение после применения случайного кадрирования. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/tr.md b/comfyui_embedded_docs/docs/RandomCropImages/tr.md index aec3171b1..1bbc22ff8 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/tr.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/tr.md @@ -17,4 +17,4 @@ Random Crop Images düğümü, her bir girdi görüntüsünden rastgele bir dikd | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Rastgele kırpma uygulandıktan sonra elde edilen görüntü. | \ No newline at end of file +| `image` | IMAGE | Rastgele kırpma uygulandıktan sonra elde edilen görüntü. | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/zh-TW.md b/comfyui_embedded_docs/docs/RandomCropImages/zh-TW.md index 9eeb0e82e..80487ce43 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/zh-TW.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/zh-TW.md @@ -17,4 +17,4 @@ Random Crop Images 節點會從每個輸入圖像中隨機選取一個矩形區 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 套用隨機裁剪後產生的圖像。 | \ No newline at end of file +| `image` | IMAGE | 套用隨機裁剪後產生的圖像。 | diff --git a/comfyui_embedded_docs/docs/RandomCropImages/zh.md b/comfyui_embedded_docs/docs/RandomCropImages/zh.md index 6d43f3b30..23ac51616 100644 --- a/comfyui_embedded_docs/docs/RandomCropImages/zh.md +++ b/comfyui_embedded_docs/docs/RandomCropImages/zh.md @@ -17,4 +17,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 应用随机裁剪后得到的图像。 | \ No newline at end of file +| `image` | IMAGE | 应用随机裁剪后得到的图像。 | diff --git a/comfyui_embedded_docs/docs/RandomNoise/ar.md b/comfyui_embedded_docs/docs/RandomNoise/ar.md index 0c8821f47..d6fcfe269 100644 --- a/comfyui_embedded_docs/docs/RandomNoise/ar.md +++ b/comfyui_embedded_docs/docs/RandomNoise/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `noise` | NOISE | نمط الضوضاء العشوائي المُولد بناءً على قيمة البذرة المُقدمة. | \ No newline at end of file +| `noise` | NOISE | نمط الضوضاء العشوائي المُولد بناءً على قيمة البذرة المُقدمة. | diff --git a/comfyui_embedded_docs/docs/RandomNoise/pt-BR.md b/comfyui_embedded_docs/docs/RandomNoise/pt-BR.md index 323dacb40..eac446412 100644 --- a/comfyui_embedded_docs/docs/RandomNoise/pt-BR.md +++ b/comfyui_embedded_docs/docs/RandomNoise/pt-BR.md @@ -12,4 +12,4 @@ O nó RandomNoise gera padrões de ruído aleatório com base em um valor de sem | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `noise` | NOISE | O padrão de ruído aleatório gerado com base no valor de semente fornecido. | \ No newline at end of file +| `noise` | NOISE | O padrão de ruído aleatório gerado com base no valor de semente fornecido. | diff --git a/comfyui_embedded_docs/docs/RandomNoise/tr.md b/comfyui_embedded_docs/docs/RandomNoise/tr.md index ebafab52f..41c9a78b5 100644 --- a/comfyui_embedded_docs/docs/RandomNoise/tr.md +++ b/comfyui_embedded_docs/docs/RandomNoise/tr.md @@ -12,4 +12,4 @@ RandomNoise düğümü, bir seed değerine dayalı olarak rastgele gürültü de | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `noise` | NOISE | Sağlanan seed değerine dayalı olarak oluşturulan rastgele gürültü deseni. | \ No newline at end of file +| `noise` | NOISE | Sağlanan seed değerine dayalı olarak oluşturulan rastgele gürültü deseni. | diff --git a/comfyui_embedded_docs/docs/RandomNoise/zh-TW.md b/comfyui_embedded_docs/docs/RandomNoise/zh-TW.md index 06b5ddef9..dbfbc18d0 100644 --- a/comfyui_embedded_docs/docs/RandomNoise/zh-TW.md +++ b/comfyui_embedded_docs/docs/RandomNoise/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `noise` | NOISE | 根據提供的種子值生成的隨機噪聲圖案。 | \ No newline at end of file +| `noise` | NOISE | 根據提供的種子值生成的隨機噪聲圖案。 | diff --git a/comfyui_embedded_docs/docs/RebatchImages/ar.md b/comfyui_embedded_docs/docs/RebatchImages/ar.md index 7e6318fed..cafaf7a06 100644 --- a/comfyui_embedded_docs/docs/RebatchImages/ar.md +++ b/comfyui_embedded_docs/docs/RebatchImages/ar.md @@ -13,4 +13,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-------------------------------------------------------------------------------| -| `image`| `IMAGE` | يتكون الإخراج من قائمة بدفعات الصور، المعاد تنظيمها وفقًا لحجم الدفعة المحدد. وهذا يسمح بمعالجة مرنة وفعالة لبيانات الصور في العمليات المجمعة. | \ No newline at end of file +| `image`| `IMAGE` | يتكون الإخراج من قائمة بدفعات الصور، المعاد تنظيمها وفقًا لحجم الدفعة المحدد. وهذا يسمح بمعالجة مرنة وفعالة لبيانات الصور في العمليات المجمعة. | diff --git a/comfyui_embedded_docs/docs/RebatchImages/pt-BR.md b/comfyui_embedded_docs/docs/RebatchImages/pt-BR.md index 2a2f110fe..f2a18a9a3 100644 --- a/comfyui_embedded_docs/docs/RebatchImages/pt-BR.md +++ b/comfyui_embedded_docs/docs/RebatchImages/pt-BR.md @@ -13,4 +13,4 @@ O nó RebatchImages é projetado para reorganizar um lote de imagens em uma nova | Campo | Tipo de Dados | Descrição | |-------|-------------|-------------------------------------------------------------------------------| -| `image`| `IMAGE` | A saída consiste em uma lista de lotes de imagens, reorganizados de acordo com o tamanho de lote especificado. Isso permite um processamento flexível e eficiente dos dados de imagem em operações em lote. | \ No newline at end of file +| `image`| `IMAGE` | A saída consiste em uma lista de lotes de imagens, reorganizados de acordo com o tamanho de lote especificado. Isso permite um processamento flexível e eficiente dos dados de imagem em operações em lote. | diff --git a/comfyui_embedded_docs/docs/RebatchImages/tr.md b/comfyui_embedded_docs/docs/RebatchImages/tr.md index 97c09aaf2..81fc05b1b 100644 --- a/comfyui_embedded_docs/docs/RebatchImages/tr.md +++ b/comfyui_embedded_docs/docs/RebatchImages/tr.md @@ -13,4 +13,4 @@ RebatchImages düğümü, bir grup görseli yeni bir grup konfigürasyonuna gör | Alan | Veri Türü | Açıklama | |--------|-------------|-------------------------------------------------------------------------------| -| `image`| `IMAGE` | Çıktı, belirtilen grup boyutuna göre yeniden düzenlenmiş bir görsel grubu listesinden oluşur. Bu, görsel verilerin grup işlemlerinde esnek ve verimli bir şekilde işlenmesine olanak tanır. | \ No newline at end of file +| `image`| `IMAGE` | Çıktı, belirtilen grup boyutuna göre yeniden düzenlenmiş bir görsel grubu listesinden oluşur. Bu, görsel verilerin grup işlemlerinde esnek ve verimli bir şekilde işlenmesine olanak tanır. | diff --git a/comfyui_embedded_docs/docs/RebatchImages/zh-TW.md b/comfyui_embedded_docs/docs/RebatchImages/zh-TW.md index 956e00ae9..03cf291d0 100644 --- a/comfyui_embedded_docs/docs/RebatchImages/zh-TW.md +++ b/comfyui_embedded_docs/docs/RebatchImages/zh-TW.md @@ -13,4 +13,4 @@ RebatchImages 節點旨在將一批圖像重新組織成新的批次配置,根 | 欄位名稱 | 資料類型 | 描述說明 | |-------|-------------|-------------------------------------------------------------------------------| -| `image`| `IMAGE` | 輸出包含根據指定批次大小重新組織的圖像批次列表。這使得在批次操作中能夠靈活高效地處理圖像資料。 | \ No newline at end of file +| `image`| `IMAGE` | 輸出包含根據指定批次大小重新組織的圖像批次列表。這使得在批次操作中能夠靈活高效地處理圖像資料。 | diff --git a/comfyui_embedded_docs/docs/RebatchLatents/ar.md b/comfyui_embedded_docs/docs/RebatchLatents/ar.md index 72e2c990f..cd524291b 100644 --- a/comfyui_embedded_docs/docs/RebatchLatents/ar.md +++ b/comfyui_embedded_docs/docs/RebatchLatents/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو مجموعة معاد تنظيمها من التمثيلات الكامنة، معدلة وفقًا لحجم المجموعة المحدد. يسهل هذا المخرج المزيد من المعالجة أو التحليل. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو مجموعة معاد تنظيمها من التمثيلات الكامنة، معدلة وفقًا لحجم المجموعة المحدد. يسهل هذا المخرج المزيد من المعالجة أو التحليل. | diff --git a/comfyui_embedded_docs/docs/RebatchLatents/pt-BR.md b/comfyui_embedded_docs/docs/RebatchLatents/pt-BR.md index fed22244d..306903213 100644 --- a/comfyui_embedded_docs/docs/RebatchLatents/pt-BR.md +++ b/comfyui_embedded_docs/docs/RebatchLatents/pt-BR.md @@ -13,4 +13,4 @@ O nó RebatchLatents é projetado para reorganizar um lote de representações l | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é um lote reorganizado de representações latentes, ajustado de acordo com o tamanho de lote especificado. Facilita o processamento ou análise subsequente. | \ No newline at end of file +| `latent` | `LATENT` | A saída é um lote reorganizado de representações latentes, ajustado de acordo com o tamanho de lote especificado. Facilita o processamento ou análise subsequente. | diff --git a/comfyui_embedded_docs/docs/RebatchLatents/tr.md b/comfyui_embedded_docs/docs/RebatchLatents/tr.md index a64ab80ab..b331cc4a2 100644 --- a/comfyui_embedded_docs/docs/RebatchLatents/tr.md +++ b/comfyui_embedded_docs/docs/RebatchLatents/tr.md @@ -13,4 +13,4 @@ RebatchLatents düğümü, bir grup gizli temsili (latent representation), belir | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, belirtilen grup boyutuna göre ayarlanmış, yeniden düzenlenmiş bir gizli temsil grubudur. İleri işlemeyi veya analizi kolaylaştırır. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, belirtilen grup boyutuna göre ayarlanmış, yeniden düzenlenmiş bir gizli temsil grubudur. İleri işlemeyi veya analizi kolaylaştırır. | diff --git a/comfyui_embedded_docs/docs/RebatchLatents/zh-TW.md b/comfyui_embedded_docs/docs/RebatchLatents/zh-TW.md index 561344bd6..e84d69389 100644 --- a/comfyui_embedded_docs/docs/RebatchLatents/zh-TW.md +++ b/comfyui_embedded_docs/docs/RebatchLatents/zh-TW.md @@ -13,4 +13,4 @@ RebatchLatents 節點旨在根據指定的批次大小,將一批潛在表示 | 參數名稱 | 資料類型 | 描述 | |----------|-------------|------| -| `latent` | `LATENT` | 輸出是根據指定批次大小調整後重新組織的潛在表示批次,便於後續處理或分析。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是根據指定批次大小調整後重新組織的潛在表示批次,便於後續處理或分析。 | diff --git a/comfyui_embedded_docs/docs/RecordAudio/ar.md b/comfyui_embedded_docs/docs/RecordAudio/ar.md index eef44812b..1a1c5dce8 100644 --- a/comfyui_embedded_docs/docs/RecordAudio/ar.md +++ b/comfyui_embedded_docs/docs/RecordAudio/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `AUDIO` | AUDIO | بيانات الصوت المُعالجة التي تحتوي على معلومات شكل الموجة ومعدل العينة | \ No newline at end of file +| `AUDIO` | AUDIO | بيانات الصوت المُعالجة التي تحتوي على معلومات شكل الموجة ومعدل العينة | diff --git a/comfyui_embedded_docs/docs/RecordAudio/pt-BR.md b/comfyui_embedded_docs/docs/RecordAudio/pt-BR.md index 160c36ec3..30a5bc892 100644 --- a/comfyui_embedded_docs/docs/RecordAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecordAudio/pt-BR.md @@ -12,4 +12,4 @@ O nó RecordAudio carrega arquivos de áudio que foram gravados ou selecionados | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Os dados de áudio processados, contendo informações da forma de onda e da taxa de amostragem | \ No newline at end of file +| `AUDIO` | AUDIO | Os dados de áudio processados, contendo informações da forma de onda e da taxa de amostragem | diff --git a/comfyui_embedded_docs/docs/RecordAudio/tr.md b/comfyui_embedded_docs/docs/RecordAudio/tr.md index 23735aa2d..676b8eed2 100644 --- a/comfyui_embedded_docs/docs/RecordAudio/tr.md +++ b/comfyui_embedded_docs/docs/RecordAudio/tr.md @@ -12,4 +12,4 @@ RecordAudio düğümü, ses kayıt arayüzü aracılığıyla kaydedilmiş veya | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Dalga formu ve örnekleme hızı bilgilerini içeren işlenmiş ses verisi | \ No newline at end of file +| `AUDIO` | AUDIO | Dalga formu ve örnekleme hızı bilgilerini içeren işlenmiş ses verisi | diff --git a/comfyui_embedded_docs/docs/RecordAudio/zh-TW.md b/comfyui_embedded_docs/docs/RecordAudio/zh-TW.md index de093fe98..4a3a9175d 100644 --- a/comfyui_embedded_docs/docs/RecordAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecordAudio/zh-TW.md @@ -12,4 +12,4 @@ RecordAudio 節點載入透過音訊錄製介面錄製或選取的音訊檔案 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 包含波形和取樣率資訊的已處理音訊資料 | \ No newline at end of file +| `AUDIO` | AUDIO | 包含波形和取樣率資訊的已處理音訊資料 | diff --git a/comfyui_embedded_docs/docs/RecraftColorRGB/ar.md b/comfyui_embedded_docs/docs/RecraftColorRGB/ar.md index 7e895707b..94e4ceb6d 100644 --- a/comfyui_embedded_docs/docs/RecraftColorRGB/ar.md +++ b/comfyui_embedded_docs/docs/RecraftColorRGB/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `لون إعادة الصياغة` | COLOR | كائن لون Recraft المُنشئ الذي يحتوي على قيم RGB المحددة | \ No newline at end of file +| `لون إعادة الصياغة` | COLOR | كائن لون Recraft المُنشئ الذي يحتوي على قيم RGB المحددة | diff --git a/comfyui_embedded_docs/docs/RecraftColorRGB/pt-BR.md b/comfyui_embedded_docs/docs/RecraftColorRGB/pt-BR.md index 7686ffa24..9042d2b9a 100644 --- a/comfyui_embedded_docs/docs/RecraftColorRGB/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftColorRGB/pt-BR.md @@ -15,4 +15,4 @@ Crie uma Cor Recraft escolhendo valores RGB específicos. Este nó permite defin | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `recraft_color` | COLOR | O objeto de cor Recraft criado contendo os valores RGB especificados | \ No newline at end of file +| `recraft_color` | COLOR | O objeto de cor Recraft criado contendo os valores RGB especificados | diff --git a/comfyui_embedded_docs/docs/RecraftColorRGB/tr.md b/comfyui_embedded_docs/docs/RecraftColorRGB/tr.md index 4ef179d13..e641e8108 100644 --- a/comfyui_embedded_docs/docs/RecraftColorRGB/tr.md +++ b/comfyui_embedded_docs/docs/RecraftColorRGB/tr.md @@ -15,4 +15,4 @@ Belirli RGB değerlerini seçerek Recraft Rengi oluşturun. Bu düğüm, bireyse | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_rengi` | COLOR | Belirtilen RGB değerlerini içeren oluşturulmuş Recraft renk nesnesi | \ No newline at end of file +| `recraft_rengi` | COLOR | Belirtilen RGB değerlerini içeren oluşturulmuş Recraft renk nesnesi | diff --git a/comfyui_embedded_docs/docs/RecraftColorRGB/zh-TW.md b/comfyui_embedded_docs/docs/RecraftColorRGB/zh-TW.md index a457b313f..b63fc1cef 100644 --- a/comfyui_embedded_docs/docs/RecraftColorRGB/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftColorRGB/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `recraft_color` | COLOR | 建立的 Recraft 顏色物件,包含指定的 RGB 值 | \ No newline at end of file +| `recraft_color` | COLOR | 建立的 Recraft 顏色物件,包含指定的 RGB 值 | diff --git a/comfyui_embedded_docs/docs/RecraftControls/ar.md b/comfyui_embedded_docs/docs/RecraftControls/ar.md index 0ad0cb41e..105bc04f4 100644 --- a/comfyui_embedded_docs/docs/RecraftControls/ar.md +++ b/comfyui_embedded_docs/docs/RecraftControls/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `recraft_controls` | CONTROLS | عناصر تحكم Recraft المُعدّة التي تحتوي على إعدادات الألوان | \ No newline at end of file +| `recraft_controls` | CONTROLS | عناصر تحكم Recraft المُعدّة التي تحتوي على إعدادات الألوان | diff --git a/comfyui_embedded_docs/docs/RecraftControls/pt-BR.md b/comfyui_embedded_docs/docs/RecraftControls/pt-BR.md index 778ca9d89..902bb933b 100644 --- a/comfyui_embedded_docs/docs/RecraftControls/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftControls/pt-BR.md @@ -13,4 +13,4 @@ Cria Controles Recraft para personalizar a geração Recraft. Este nó permite c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `recraft_controls` | CONTROLS | Os controles Recraft configurados, contendo as definições de cor | \ No newline at end of file +| `recraft_controls` | CONTROLS | Os controles Recraft configurados, contendo as definições de cor | diff --git a/comfyui_embedded_docs/docs/RecraftControls/tr.md b/comfyui_embedded_docs/docs/RecraftControls/tr.md index 456cdc696..a0d112ee0 100644 --- a/comfyui_embedded_docs/docs/RecraftControls/tr.md +++ b/comfyui_embedded_docs/docs/RecraftControls/tr.md @@ -13,4 +13,4 @@ Recraft oluşturmayı özelleştirmek için Recraft Kontrolleri oluşturur. Bu d | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_controls` | CONTROLS | Renk ayarlarını içeren yapılandırılmış Recraft kontrolleri | \ No newline at end of file +| `recraft_controls` | CONTROLS | Renk ayarlarını içeren yapılandırılmış Recraft kontrolleri | diff --git a/comfyui_embedded_docs/docs/RecraftControls/zh-TW.md b/comfyui_embedded_docs/docs/RecraftControls/zh-TW.md index a008a97a9..46a0496f3 100644 --- a/comfyui_embedded_docs/docs/RecraftControls/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftControls/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `recraft_controls` | CONTROLS | 包含色彩設定的已配置 Recraft 控制項 | \ No newline at end of file +| `recraft_controls` | CONTROLS | 包含色彩設定的已配置 Recraft 控制項 | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ar.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ar.md index ef960de49..566752f44 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ar.md @@ -10,4 +10,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `الصورة` | IMAGE | الصورة الناتجة بعد التكبير مع تحسين التفاصيل. | \ No newline at end of file +| `الصورة` | IMAGE | الصورة الناتجة بعد التكبير مع تحسين التفاصيل. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/en.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/en.md index 8488bc829..42a43a8d2 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/en.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/en.md @@ -12,4 +12,4 @@ The Recraft Creative Upscale Image node enhances a raster image by increasing it | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resulting upscaled image with enhanced details. | \ No newline at end of file +| `image` | IMAGE | The resulting upscaled image with enhanced details. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/es.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/es.md index e54365cd1..5aade7d3d 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/es.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/es.md @@ -12,4 +12,4 @@ El nodo Recraft Creative Upscale Image mejora una imagen rasterizada aumentando | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `imagen` | IMAGE | La imagen escalada resultante con detalles mejorados. | \ No newline at end of file +| `imagen` | IMAGE | La imagen escalada resultante con detalles mejorados. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/fr.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/fr.md index df7cedcf7..c85fafce4 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/fr.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/fr.md @@ -10,4 +10,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image suréchantillonnée résultante avec les détails améliorés. | \ No newline at end of file +| `image` | IMAGE | L'image suréchantillonnée résultante avec les détails améliorés. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ja.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ja.md index 567e2b38c..81c222bf9 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ja.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ja.md @@ -12,4 +12,4 @@ Recraft Creative Upscale Image ノードは、ラスター画像の解像度を | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `画像` | IMAGE | ディテールが強化された、アップスケール後の画像です。 | \ No newline at end of file +| `画像` | IMAGE | ディテールが強化された、アップスケール後の画像です。 | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ko.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ko.md index 12bcf224c..d69b7bda9 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ko.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ko.md @@ -12,4 +12,4 @@ Recraft Creative Upscale Image 노드는 래스터 이미지의 해상도를 높 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `이미지` | IMAGE | 세부 사항이 향상된 결과 업스케일 이미지입니다. | \ No newline at end of file +| `이미지` | IMAGE | 세부 사항이 향상된 결과 업스케일 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/pt-BR.md index ab0d30904..2fb1dd37b 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/pt-BR.md @@ -14,4 +14,4 @@ O nó Recraft Creative Upscale Image aprimora uma imagem raster aumentando sua r | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem resultante com resolução aumentada e detalhes aprimorados. | \ No newline at end of file +| `image` | IMAGE | A imagem resultante com resolução aumentada e detalhes aprimorados. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ru.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ru.md index 48b23187c..e276cf62c 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ru.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/ru.md @@ -12,4 +12,4 @@ | Название выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `изображение` | IMAGE | Результирующее изображение после апскейла с улучшенными деталями. | \ No newline at end of file +| `изображение` | IMAGE | Результирующее изображение после апскейла с улучшенными деталями. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/tr.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/tr.md index decd0c6b5..a2819fb25 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/tr.md @@ -12,4 +12,4 @@ Recraft Creative Upscale Image düğümü, bir tarama görüntüsünün çözün | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Geliştirilmiş detaylara sahip, yükseltilmiş sonuç görüntüsü. | \ No newline at end of file +| `görüntü` | IMAGE | Geliştirilmiş detaylara sahip, yükseltilmiş sonuç görüntüsü. | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh-TW.md index 5ae7fb1b8..9b2cc59c7 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh-TW.md @@ -12,4 +12,4 @@ Recraft Creative Upscale Image 節點透過提高解析度來增強點陣圖影 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 經過放大且細節增強後產生的影像。 | \ No newline at end of file +| `影像` | IMAGE | 經過放大且細節增強後產生的影像。 | diff --git a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh.md b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh.md index dc778e396..9b73af163 100644 --- a/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh.md +++ b/comfyui_embedded_docs/docs/RecraftCreativeUpscaleNode/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `图像` | IMAGE | 经过放大且细节增强的结果图像。 | \ No newline at end of file +| `图像` | IMAGE | 经过放大且细节增强的结果图像。 | diff --git a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/ar.md b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/ar.md index d122907c0..0c666230a 100644 --- a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `صورة` | IMAGE | الصورة بعد رفع دقتها مع تحسين الوضوح والنقاء | \ No newline at end of file +| `صورة` | IMAGE | الصورة بعد رفع دقتها مع تحسين الوضوح والنقاء | diff --git a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/pt-BR.md index 9bea751d3..ebe087df3 100644 --- a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/pt-BR.md @@ -14,4 +14,4 @@ Melhora a imagem de forma síncrona. Aprimora uma imagem raster fornecida usando | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem melhorada com resolução e clareza aprimoradas | \ No newline at end of file +| `image` | IMAGE | A imagem melhorada com resolução e clareza aprimoradas | diff --git a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/tr.md b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/tr.md index 8f4aab49a..45986ced4 100644 --- a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/tr.md @@ -14,4 +14,4 @@ Görüntüyü senkron olarak büyütür. Verilen bir raster görüntüyü 'crisp | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Geliştirilmiş çözünürlük ve netliğe sahip büyütülmüş görüntü | \ No newline at end of file +| `görüntü` | IMAGE | Geliştirilmiş çözünürlük ve netliğe sahip büyütülmüş görüntü | diff --git a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/zh-TW.md index 0fe57e1c3..6205c8264 100644 --- a/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftCrispUpscaleNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `圖片` | IMAGE | 經過放大並增強解析度和清晰度的影像 | \ No newline at end of file +| `圖片` | IMAGE | 經過放大並增強解析度和清晰度的影像 | diff --git a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/ar.md b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/ar.md index 0df6ee4ed..83f65fde8 100644 --- a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `صورة` | IMAGE | الصورة (أو الصور) المعدلة التي تم توليدها بناءً على النص الموجه والقناع | \ No newline at end of file +| `صورة` | IMAGE | الصورة (أو الصور) المعدلة التي تم توليدها بناءً على النص الموجه والقناع | diff --git a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/pt-BR.md index 75b6417e3..c3b987027 100644 --- a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/pt-BR.md @@ -20,4 +20,4 @@ Este nó modifica imagens com base em um prompt de texto e uma máscara. Ele usa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A(s) imagem(ns) modificada(s) gerada(s) com base no prompt e na máscara | \ No newline at end of file +| `image` | IMAGE | A(s) imagem(ns) modificada(s) gerada(s) com base no prompt e na máscara | diff --git a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/tr.md b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/tr.md index 259d9e865..599ae11b3 100644 --- a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/tr.md @@ -20,4 +20,4 @@ Bu düğüm, görüntüleri bir metin istemi ve maske temelinde değiştirir. Re | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | İstem ve maske temelinde oluşturulan değiştirilmiş görüntü(ler) | \ No newline at end of file +| `görüntü` | IMAGE | İstem ve maske temelinde oluşturulan değiştirilmiş görüntü(ler) | diff --git a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/zh-TW.md index 1fcc7320b..f83f52954 100644 --- a/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftImageInpaintingNode/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 根據提示和遮罩生成的修改後圖像 | \ No newline at end of file +| `影像` | IMAGE | 根據提示和遮罩生成的修改後圖像 | diff --git a/comfyui_embedded_docs/docs/RecraftImageToImageNode/ar.md b/comfyui_embedded_docs/docs/RecraftImageToImageNode/ar.md index 395ada5e4..77d3e7fd2 100644 --- a/comfyui_embedded_docs/docs/RecraftImageToImageNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftImageToImageNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `صورة` | IMAGE | الصورة (أو الصور) المُولدة بناءً على الصورة المدخلة والنص الموجه | \ No newline at end of file +| `صورة` | IMAGE | الصورة (أو الصور) المُولدة بناءً على الصورة المدخلة والنص الموجه | diff --git a/comfyui_embedded_docs/docs/RecraftImageToImageNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftImageToImageNode/pt-BR.md index 296728985..da8676013 100644 --- a/comfyui_embedded_docs/docs/RecraftImageToImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftImageToImageNode/pt-BR.md @@ -21,4 +21,4 @@ Este nó modifica uma imagem existente com base em um prompt de texto e um parâ | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A(s) imagem(ns) gerada(s) com base na imagem de entrada e no prompt | \ No newline at end of file +| `image` | IMAGE | A(s) imagem(ns) gerada(s) com base na imagem de entrada e no prompt | diff --git a/comfyui_embedded_docs/docs/RecraftImageToImageNode/tr.md b/comfyui_embedded_docs/docs/RecraftImageToImageNode/tr.md index c8ee6ee44..a1f9ffcf0 100644 --- a/comfyui_embedded_docs/docs/RecraftImageToImageNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftImageToImageNode/tr.md @@ -21,4 +21,4 @@ Bu düğüm, mevcut bir görseli metin istemi ve güç parametresine dayanarak d | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Giriş görseli ve isteme dayalı olarak oluşturulan görsel(ler) | \ No newline at end of file +| `görüntü` | IMAGE | Giriş görseli ve isteme dayalı olarak oluşturulan görsel(ler) | diff --git a/comfyui_embedded_docs/docs/RecraftImageToImageNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftImageToImageNode/zh-TW.md index e6f8033b1..2cacb112b 100644 --- a/comfyui_embedded_docs/docs/RecraftImageToImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftImageToImageNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 基於輸入圖像和提示生成的圖像 | \ No newline at end of file +| `影像` | IMAGE | 基於輸入圖像和提示生成的圖像 | diff --git a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/ar.md b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/ar.md index 80627702b..a136fc557 100644 --- a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------| | `صورة` | IMAGE | الصور المعالجة ذات الخلفيات الشفافة | -| `mask` | MASK | أقنعة قناة ألفا التي تشير إلى مناطق الخلفية المُزالَة | \ No newline at end of file +| `mask` | MASK | أقنعة قناة ألفا التي تشير إلى مناطق الخلفية المُزالَة | diff --git a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/pt-BR.md index 7f19e2d1a..59cdf5bbb 100644 --- a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/pt-BR.md @@ -15,4 +15,4 @@ Este nó remove o fundo de imagens utilizando o serviço de API Recraft. Ele pro | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `image` | IMAGE | Imagens processadas com fundos transparentes | -| `mask` | MASK | Máscaras do canal alfa indicando as áreas de fundo removidas | \ No newline at end of file +| `mask` | MASK | Máscaras do canal alfa indicando as áreas de fundo removidas | diff --git a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/tr.md b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/tr.md index d4b89c058..0efe643e4 100644 --- a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/tr.md @@ -15,4 +15,4 @@ Bu düğüm, Recraft API servisini kullanarak görüntülerden arka planı kald | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `görüntü` | IMAGE | Şeffaf arka plana sahip işlenmiş görüntüler | -| `mask` | MASK | Kaldırılan arka plan alanlarını gösteren alfa kanalı maskeleri | \ No newline at end of file +| `mask` | MASK | Kaldırılan arka plan alanlarını gösteren alfa kanalı maskeleri | diff --git a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/zh-TW.md index b5039f980..b1bd315b3 100644 --- a/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftRemoveBackgroundNode/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `圖片` | IMAGE | 具有透明背景的處理後圖像 | -| `mask` | MASK | 標示已移除背景區域的 Alpha 通道遮罩 | \ No newline at end of file +| `mask` | MASK | 標示已移除背景區域的 Alpha 通道遮罩 | diff --git a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/ar.md b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/ar.md index e35fe863c..f218dab36 100644 --- a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | الصورة/الصور المُولَّدة مع الخلفية المستبدلة | \ No newline at end of file +| `IMAGE` | IMAGE | الصورة/الصور المُولَّدة مع الخلفية المستبدلة | diff --git a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/pt-BR.md index 8c737370c..06a7e6ce2 100644 --- a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/pt-BR.md @@ -19,4 +19,4 @@ Substituir o fundo da imagem com base no prompt fornecido. Este nó utiliza a AP | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) com o fundo substituído | \ No newline at end of file +| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) com o fundo substituído | diff --git a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/tr.md b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/tr.md index b05778394..2dc0999c7 100644 --- a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/tr.md @@ -19,4 +19,4 @@ Sağlanan açıklamaya dayanarak görselin arka planını değiştirir. Bu düğ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Arka planı değiştirilmiş olarak oluşturulan görsel(ler) | \ No newline at end of file +| `IMAGE` | IMAGE | Arka planı değiştirilmiş olarak oluşturulan görsel(ler) | diff --git a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/zh-TW.md index 2fe4cf6f9..006056103 100644 --- a/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftReplaceBackgroundNode/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 已替換背景的生成圖像 | \ No newline at end of file +| `IMAGE` | IMAGE | 已替換背景的生成圖像 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ar.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ar.md index e4f28dcaa..4be12bbc9 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ar.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | كائن أسلوب مُعدّ يحتوي على أسلوب "digital_illustration" المحدد والأسلوب الفرعي الاختياري، وجاهز ليتم تمريره إلى عُقد واجهة برمجة تطبيقات Recraft الأخرى. | \ No newline at end of file +| `recraft_style` | STYLEV3 | كائن أسلوب مُعدّ يحتوي على أسلوب "digital_illustration" المحدد والأسلوب الفرعي الاختياري، وجاهز ليتم تمريره إلى عُقد واجهة برمجة تطبيقات Recraft الأخرى. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/en.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/en.md index eb792878d..58782857c 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/en.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/en.md @@ -12,4 +12,4 @@ This node configures a style for use with the Recraft API, specifically selectin | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | A configured style object containing the selected "digital_illustration" style and optional substyle, ready to be passed to other Recraft API nodes. | \ No newline at end of file +| `recraft_style` | STYLEV3 | A configured style object containing the selected "digital_illustration" style and optional substyle, ready to be passed to other Recraft API nodes. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/es.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/es.md index f89e69dd9..353cfad55 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/es.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/es.md @@ -12,4 +12,4 @@ Este nodo configura un estilo para usar con la API de Recraft, seleccionando esp | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Un objeto de estilo configurado que contiene el estilo "digital_illustration" seleccionado y el subestilo opcional, listo para ser pasado a otros nodos de la API de Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Un objeto de estilo configurado que contiene el estilo "digital_illustration" seleccionado y el subestilo opcional, listo para ser pasado a otros nodos de la API de Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/fr.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/fr.md index 027f72f90..5b4207407 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/fr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/fr.md @@ -12,4 +12,4 @@ Ce nœud configure un style pour utilisation avec l'API Recraft, en sélectionna | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Un objet de style configuré contenant le style "digital_illustration" sélectionné et le sous-style optionnel, prêt à être transmis à d'autres nœuds de l'API Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Un objet de style configuré contenant le style "digital_illustration" sélectionné et le sous-style optionnel, prêt à être transmis à d'autres nœuds de l'API Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ja.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ja.md index a852d5c5b..7e9891fd6 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ja.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 選択された「digital_illustration」スタイルとオプションのサブスタイルを含む、設定済みのスタイルオブジェクトです。他のRecraft APIノードに渡す準備ができています。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 選択された「digital_illustration」スタイルとオプションのサブスタイルを含む、設定済みのスタイルオブジェクトです。他のRecraft APIノードに渡す準備ができています。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ko.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ko.md index bce2fbae2..da60a7865 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ko.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 선택된 "digital_illustration" 스타일과 선택적 서브스타일을 포함하는 구성된 스타일 객체로, 다른 Recraft API 노드로 전달할 준비가 되어 있습니다. | \ No newline at end of file +| `recraft_style` | STYLEV3 | 선택된 "digital_illustration" 스타일과 선택적 서브스타일을 포함하는 구성된 스타일 객체로, 다른 Recraft API 노드로 전달할 준비가 되어 있습니다. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/pt-BR.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/pt-BR.md index 6f0eff0ef..fb95b40af 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/pt-BR.md @@ -12,4 +12,4 @@ Este nó configura um estilo para uso com a API Recraft, selecionando especifica | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Um objeto de estilo configurado contendo o estilo "digital_illustration" selecionado e o subestilo opcional, pronto para ser passado para outros nós da API Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Um objeto de estilo configurado contendo o estilo "digital_illustration" selecionado e o subestilo opcional, pronto para ser passado para outros nós da API Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ru.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ru.md index 45e62c14a..9c244f57d 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ru.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Настроенный объект стиля, содержащий выбранный стиль "digital_illustration" и опциональный подстиль, готовый для передачи в другие узлы API Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Настроенный объект стиля, содержащий выбранный стиль "digital_illustration" и опциональный подстиль, готовый для передачи в другие узлы API Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/tr.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/tr.md index de7739a5d..23f03b666 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/tr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/tr.md @@ -12,4 +12,4 @@ Bu düğüm, Recraft API ile kullanılmak üzere bir stil yapılandırır ve öz | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Seçilen "digital_illustration" stilini ve isteğe bağlı alt stili içeren, diğer Recraft API düğümlerine iletilmeye hazır yapılandırılmış bir stil nesnesi. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Seçilen "digital_illustration" stilini ve isteğe bağlı alt stili içeren, diğer Recraft API düğümlerine iletilmeye hazır yapılandırılmış bir stil nesnesi. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh-TW.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh-TW.md index 598e5d6c8..d3b9c10bd 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 一個配置好的風格物件,包含選定的「digital_illustration」風格和可選的子風格,準備好傳遞給其他 Recraft API 節點。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 一個配置好的風格物件,包含選定的「digital_illustration」風格和可選的子風格,準備好傳遞給其他 Recraft API 節點。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh.md b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh.md index a2a79df72..8f4a0150a 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3DigitalIllustration/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 一个配置好的风格对象,包含选定的 "digital_illustration" 风格和可选的子风格,可传递给其他 Recraft API 节点使用。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 一个配置好的风格对象,包含选定的 "digital_illustration" 风格和可选的子风格,可传递给其他 Recraft API 节点使用。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/ar.md b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/ar.md index 1776296a5..50c85ce81 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/ar.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | كائن النمط المحدد من مكتبة الأنماط اللانهائية لـ Recraft | \ No newline at end of file +| `recraft_style` | STYLEV3 | كائن النمط المحدد من مكتبة الأنماط اللانهائية لـ Recraft | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/pt-BR.md b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/pt-BR.md index 92db64694..323b6df40 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/pt-BR.md @@ -14,4 +14,4 @@ Este nó permite que você selecione um estilo da Biblioteca de Estilos Infinito | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | O objeto de estilo selecionado da Biblioteca de Estilos Infinitos da Recraft | \ No newline at end of file +| `recraft_style` | STYLEV3 | O objeto de estilo selecionado da Biblioteca de Estilos Infinitos da Recraft | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/tr.md b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/tr.md index c5254f556..4f4befd6a 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/tr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/tr.md @@ -14,4 +14,4 @@ Bu düğüm, önceden var olan bir UUID kullanarak Recraft'ın Sonsuz Stil Küt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Recraft'ın Sonsuz Stil Kütüphanesi'nden seçilen stil nesnesi | \ No newline at end of file +| `recraft_style` | STYLEV3 | Recraft'ın Sonsuz Stil Kütüphanesi'nden seçilen stil nesnesi | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/zh-TW.md b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/zh-TW.md index e91316ba8..a0d49be4a 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3InfiniteStyleLibrary/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 從 Recraft 的 Infinite Style Library 中選擇的樣式物件 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 從 Recraft 的 Infinite Style Library 中選擇的樣式物件 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/ar.md b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/ar.md index 1829a1599..440bbea9d 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/ar.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | صورة الشعار المُنشَمة مع تطبيق النمط النقطي المحدد | \ No newline at end of file +| `output` | IMAGE | صورة الشعار المُنشَمة مع تطبيق النمط النقطي المحدد | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/pt-BR.md b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/pt-BR.md index 81d59b4d9..bd74ca9d1 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/pt-BR.md @@ -12,4 +12,4 @@ Este nó permite que você selecione o estilo de rasterização do logotipo e es | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem do logotipo gerada com o estilo de raster selecionado aplicado | \ No newline at end of file +| `output` | IMAGE | A imagem do logotipo gerada com o estilo de raster selecionado aplicado | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/tr.md b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/tr.md index bc30bab9e..a6a1064b2 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/tr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/tr.md @@ -12,4 +12,4 @@ Bu düğüm, logo tarama stilini seçmenize ve mevcut alt stiller arasından ter | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Seçilen tarama stili uygulanmış olarak oluşturulan logo görüntüsü | \ No newline at end of file +| `output` | IMAGE | Seçilen tarama stili uygulanmış olarak oluşturulan logo görüntüsü | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/zh-TW.md b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/zh-TW.md index 885ce0ae4..5044b0ecb 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3LogoRaster/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 應用所選點陣樣式後生成的標誌圖像 | \ No newline at end of file +| `output` | IMAGE | 應用所選點陣樣式後生成的標誌圖像 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/ar.md b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/ar.md index 73647aa1d..a61ef25b6 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/ar.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | يُرجع كائن تكوين نمط Recraft الذي يحتوي على النمط realistic_image وإعدادات النمط الفرعي المحدد. | \ No newline at end of file +| `recraft_style` | STYLEV3 | يُرجع كائن تكوين نمط Recraft الذي يحتوي على النمط realistic_image وإعدادات النمط الفرعي المحدد. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/pt-BR.md b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/pt-BR.md index b54704685..ca3dbcd2a 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/pt-BR.md @@ -12,4 +12,4 @@ Este nó cria uma configuração de estilo de imagem realista para uso com a API | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Retorna um objeto de configuração de estilo do Recraft contendo o estilo `realistic_image` e as configurações do subestilo selecionado. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Retorna um objeto de configuração de estilo do Recraft contendo o estilo `realistic_image` e as configurações do subestilo selecionado. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/tr.md b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/tr.md index dd3546fde..a0162f940 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/tr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/tr.md @@ -12,4 +12,4 @@ Bu düğüm, Recraft API'si ile kullanılmak üzere gerçekçi bir görüntü st | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Gerçekçi görüntü stilini ve seçilen alt stil ayarlarını içeren bir Recraft stili yapılandırma nesnesi döndürür. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Gerçekçi görüntü stilini ve seçilen alt stil ayarlarını içeren bir Recraft stili yapılandırma nesnesi döndürür. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/zh-TW.md b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/zh-TW.md index 1810c41b3..9e640842f 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3RealisticImage/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 返回包含 realistic_image 風格和所選子風格設定的 Recraft 風格配置物件。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 返回包含 realistic_image 風格和所選子風格設定的 Recraft 風格配置物件。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ar.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ar.md index bc417786e..e6ece3099 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | كائن تكوين نمط لواجهة برمجة تطبيقات Recraft يحتوي على نمط `vector_illustration` المحدد والنمط الفرعي الاختياري. يمكن توصيل هذا الكائن بعُقد Recraft الأخرى. | \ No newline at end of file +| `recraft_style` | STYLEV3 | كائن تكوين نمط لواجهة برمجة تطبيقات Recraft يحتوي على نمط `vector_illustration` المحدد والنمط الفرعي الاختياري. يمكن توصيل هذا الكائن بعُقد Recraft الأخرى. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/en.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/en.md index ae2ef944c..e6425d1f0 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/en.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/en.md @@ -12,4 +12,4 @@ This node configures a style for use with the Recraft API, specifically selectin | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | A Recraft API style configuration object containing the selected `vector_illustration` style and optional substyle. This can be connected to other Recraft nodes. | \ No newline at end of file +| `recraft_style` | STYLEV3 | A Recraft API style configuration object containing the selected `vector_illustration` style and optional substyle. This can be connected to other Recraft nodes. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/es.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/es.md index d549af8ca..2e1026070 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/es.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/es.md @@ -12,4 +12,4 @@ Este nodo configura un estilo para usar con la API de Recraft, seleccionando esp | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Un objeto de configuración de estilo para la API de Recraft que contiene el estilo `vector_illustration` seleccionado y el subestilo opcional. Esto puede conectarse a otros nodos de Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Un objeto de configuración de estilo para la API de Recraft que contiene el estilo `vector_illustration` seleccionado y el subestilo opcional. Esto puede conectarse a otros nodos de Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/fr.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/fr.md index bb0aa8f18..8f713264d 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/fr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/fr.md @@ -12,4 +12,4 @@ Ce nœud configure un style pour une utilisation avec l'API Recraft, en sélecti | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Un objet de configuration de style pour l'API Recraft contenant le style `vector_illustration` sélectionné et le sous-style optionnel. Celui-ci peut être connecté à d'autres nœuds Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Un objet de configuration de style pour l'API Recraft contenant le style `vector_illustration` sélectionné et le sous-style optionnel. Celui-ci peut être connecté à d'autres nœuds Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ja.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ja.md index 212d2edea..af2fe90f8 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ja.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 選択された`vector_illustration`スタイルとオプションのサブスタイルを含む、Recraft APIスタイル設定オブジェクトです。これは他のRecraftノードに接続することができます。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 選択された`vector_illustration`スタイルとオプションのサブスタイルを含む、Recraft APIスタイル設定オブジェクトです。これは他のRecraftノードに接続することができます。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ko.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ko.md index e8db1daf3..abeef64ac 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ko.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 선택된 `vector_illustration` 스타일과 선택적 서브스타일을 포함하는 Recraft API 스타일 구성 객체입니다. 이는 다른 Recraft 노드에 연결할 수 있습니다. | \ No newline at end of file +| `recraft_style` | STYLEV3 | 선택된 `vector_illustration` 스타일과 선택적 서브스타일을 포함하는 Recraft API 스타일 구성 객체입니다. 이는 다른 Recraft 노드에 연결할 수 있습니다. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/pt-BR.md index 0162f7a0d..14f6ddbc0 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/pt-BR.md @@ -12,4 +12,4 @@ Este nó configura um estilo para uso com a API Recraft, selecionando especifica | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Um objeto de configuração de estilo da API Recraft contendo o estilo `vector_illustration` selecionado e o subestilo opcional. Isso pode ser conectado a outros nós Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Um objeto de configuração de estilo da API Recraft contendo o estilo `vector_illustration` selecionado e o subestilo opcional. Isso pode ser conectado a outros nós Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ru.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ru.md index a075aeb93..0b8f022d1 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ru.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Объект конфигурации стиля API Recraft, содержащий выбранный стиль `vector_illustration` и опциональный подстиль. Может быть подключен к другим узлам Recraft. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Объект конфигурации стиля API Recraft, содержащий выбранный стиль `vector_illustration` и опциональный подстиль. Может быть подключен к другим узлам Recraft. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/tr.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/tr.md index b183fdb24..e41899c5e 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/tr.md @@ -12,4 +12,4 @@ Bu düğüm, Recraft API ile kullanılmak üzere, özellikle `vector_illustratio | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | Seçilen `vector_illustration` stilini ve isteğe bağlı alt stilini içeren bir Recraft API stil yapılandırma nesnesi. Bu, diğer Recraft düğümlerine bağlanabilir. | \ No newline at end of file +| `recraft_style` | STYLEV3 | Seçilen `vector_illustration` stilini ve isteğe bağlı alt stilini içeren bir Recraft API stil yapılandırma nesnesi. Bu, diğer Recraft düğümlerine bağlanabilir. | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh-TW.md index a9d36d65f..f324550d8 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 一個 Recraft API 樣式配置物件,包含所選的 `vector_illustration` 樣式和可選的子樣式。此物件可以連接到其他 Recraft 節點。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 一個 Recraft API 樣式配置物件,包含所選的 `vector_illustration` 樣式和可選的子樣式。此物件可以連接到其他 Recraft 節點。 | diff --git a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh.md b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh.md index babc5c7f2..1619b2978 100644 --- a/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh.md +++ b/comfyui_embedded_docs/docs/RecraftStyleV3VectorIllustrationNode/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `recraft_style` | STYLEV3 | 一个 Recraft API 样式配置对象,包含选定的 `vector_illustration` 风格及可选的子风格。可连接到其他 Recraft 节点。 | \ No newline at end of file +| `recraft_style` | STYLEV3 | 一个 Recraft API 样式配置对象,包含选定的 `vector_illustration` 风格及可选的子风格。可连接到其他 Recraft 节点。 | diff --git a/comfyui_embedded_docs/docs/RecraftTextToImageNode/ar.md b/comfyui_embedded_docs/docs/RecraftTextToImageNode/ar.md index d0fe15e4b..45e6e2bba 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToImageNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftTextToImageNode/ar.md @@ -20,4 +20,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | الصورة (أو الصور) المُنشأة كمخرج موتر. | \ No newline at end of file +| `IMAGE` | IMAGE | الصورة (أو الصور) المُنشأة كمخرج موتر. | diff --git a/comfyui_embedded_docs/docs/RecraftTextToImageNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftTextToImageNode/pt-BR.md index 6228b3bfc..d5e743d0c 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftTextToImageNode/pt-BR.md @@ -20,4 +20,4 @@ Gera imagens de forma síncrona com base em prompt e resolução. Este nó conec | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) como saída de tensor. | \ No newline at end of file +| `IMAGE` | IMAGE | A(s) imagem(ns) gerada(s) como saída de tensor. | diff --git a/comfyui_embedded_docs/docs/RecraftTextToImageNode/tr.md b/comfyui_embedded_docs/docs/RecraftTextToImageNode/tr.md index 3c6eb2ec7..9333121e0 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToImageNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftTextToImageNode/tr.md @@ -20,4 +20,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Tensor çıktısı olarak oluşturulan görüntü(ler). | \ No newline at end of file +| `IMAGE` | IMAGE | Tensor çıktısı olarak oluşturulan görüntü(ler). | diff --git a/comfyui_embedded_docs/docs/RecraftTextToImageNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftTextToImageNode/zh-TW.md index 2da221388..98b50b78c 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftTextToImageNode/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 以張量形式輸出的生成圖像。 | \ No newline at end of file +| `IMAGE` | IMAGE | 以張量形式輸出的生成圖像。 | diff --git a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/ar.md b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/ar.md index 32d8554df..73e847e76 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `SVG` | SVG | الرسم التوضيحي المتجه المُنشأ بتنسيق SVG | \ No newline at end of file +| `SVG` | SVG | الرسم التوضيحي المتجه المُنشأ بتنسيق SVG | diff --git a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/pt-BR.md index a31f5b73d..cb4534363 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/pt-BR.md @@ -20,4 +20,4 @@ Gera SVG de forma síncrona com base no prompt e na resolução. Este nó cria i | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `SVG` | SVG | A ilustração vetorial gerada no formato SVG | \ No newline at end of file +| `SVG` | SVG | A ilustração vetorial gerada no formato SVG | diff --git a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/tr.md b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/tr.md index a40215def..3e68fe3e2 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/tr.md @@ -20,4 +20,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `SVG` | SVG | SVG formatında oluşturulan vektör çizimi | \ No newline at end of file +| `SVG` | SVG | SVG formatında oluşturulan vektör çizimi | diff --git a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/zh-TW.md index b7cbfad86..fdf48cdb6 100644 --- a/comfyui_embedded_docs/docs/RecraftTextToVectorNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftTextToVectorNode/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `SVG` | SVG | 以 SVG 格式生成的向量插圖 | \ No newline at end of file +| `SVG` | SVG | 以 SVG 格式生成的向量插圖 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ar.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ar.md new file mode 100644 index 000000000..d3fd40d0b --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ar.md @@ -0,0 +1,23 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ar.md) + +يُنتج هذا العقد صورًا من أوصاف نصية باستخدام نماذج الذكاء الاصطناعي Recraft V4 أو V4 Pro. يرسل طلبك (prompt) إلى واجهة برمجة تطبيقات (API) خارجية ويعيد الصور المُنشأة. يمكنك التحكم في الناتج عن طريق تحديد النموذج، وحجم الصورة، وعدد الصور المراد إنشاؤها. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | نعم | غير مطبق | الطلب النصي (prompt) لتوليد الصورة. الحد الأقصى 10,000 حرف. | +| `negative_prompt` | STRING | لا | غير مطبق | وصف نصي اختياري للعناصر غير المرغوب فيها في الصورة. | +| `model` | COMBO | نعم | `"recraftv4"`
`"recraftv4_pro"` | النموذج المستخدم في التوليد. اختيار النموذج يحدد أحجام الصور المتاحة. | +| `size` | COMBO | نعم | يختلف حسب النموذج | حجم الصورة المُنشأة. الخيارات المتاحة تعتمد على النموذج المحدد. بالنسبة لـ `recraftv4`، القيمة الافتراضية هي "1024x1024". بالنسبة لـ `recraftv4_pro`، القيمة الافتراضية هي "2048x2048". | +| `n` | INT | نعم | 1 إلى 6 | عدد الصور المراد توليدها (الافتراضي: 1). | +| `seed` | INT | نعم | 0 إلى 18446744073709551615 | قيمة بذرية لتحديد ما إذا كان يجب على العقد إعادة التشغيل؛ النتائج الفعلية غير حتمية بغض النظر عن القيمة البذرية (الافتراضي: 0). | +| `recraft_controls` | CUSTOM | لا | غير مطبق | ضوابط اختيارية إضافية على عملية التوليد عبر عقد Recraft Controls. | + +**ملاحظة:** معامل `size` هو مدخل ديناميكي تتغير خياراته المتاحة بناءً على النموذج المحدد `model`. قيمة `seed` لا تضمن نتائج صور قابلة للتكرار. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `output` | IMAGE | الصورة أو مجموعة الصور المُنشأة. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/en.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/en.md new file mode 100644 index 000000000..fbc69f40e --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/en.md @@ -0,0 +1,23 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/en.md) + +This node generates images from text descriptions using the Recraft V4 or V4 Pro AI models. It sends your prompt to an external API and returns the generated images. You can control the output by specifying the model, image size, and number of images to create. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Yes | N/A | Prompt for the image generation. Maximum 10,000 characters. | +| `negative_prompt` | STRING | No | N/A | An optional text description of undesired elements on an image. | +| `model` | COMBO | Yes | `"recraftv4"`
`"recraftv4_pro"` | The model to use for generation. Selecting a model determines the available image sizes. | +| `size` | COMBO | Yes | Varies by model | The size of the generated image. The available options depend on the selected model. For `recraftv4`, the default is "1024x1024". For `recraftv4_pro`, the default is "2048x2048". | +| `n` | INT | Yes | 1 to 6 | The number of images to generate (default: 1). | +| `seed` | INT | Yes | 0 to 18446744073709551615 | Seed to determine if node should re-run; actual results are nondeterministic regardless of seed (default: 0). | +| `recraft_controls` | CUSTOM | No | N/A | Optional additional controls over the generation via the Recraft Controls node. | + +**Note:** The `size` parameter is a dynamic input whose available options change based on the selected `model`. The `seed` value does not guarantee reproducible image outputs. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `output` | IMAGE | The generated image or batch of images. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/es.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/es.md new file mode 100644 index 000000000..8e38259e3 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/es.md @@ -0,0 +1,23 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/es.md) + +Este nodo genera imágenes a partir de descripciones de texto utilizando los modelos de IA Recraft V4 o V4 Pro. Envía su *prompt* a una API externa y devuelve las imágenes generadas. Puede controlar la salida especificando el modelo, el tamaño de la imagen y el número de imágenes a crear. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sí | N/A | *Prompt* para la generación de la imagen. Máximo 10.000 caracteres. | +| `negative_prompt` | STRING | No | N/A | Una descripción de texto opcional de elementos no deseados en la imagen. | +| `model` | COMBO | Sí | `"recraftv4"`
`"recraftv4_pro"` | El modelo a utilizar para la generación. La selección del modelo determina los tamaños de imagen disponibles. | +| `size` | COMBO | Sí | Varía según el modelo | El tamaño de la imagen generada. Las opciones disponibles dependen del modelo seleccionado. Para `recraftv4`, el valor por defecto es "1024x1024". Para `recraftv4_pro`, el valor por defecto es "2048x2048". | +| `n` | INT | Sí | 1 a 6 | El número de imágenes a generar (por defecto: 1). | +| `seed` | INT | Sí | 0 a 18446744073709551615 | Semilla para determinar si el nodo debe volver a ejecutarse; los resultados reales son no deterministas independientemente de la semilla (por defecto: 0). | +| `recraft_controls` | CUSTOM | No | N/A | Controles adicionales opcionales sobre la generación a través del nodo Recraft Controls. | + +**Nota:** El parámetro `size` es una entrada dinámica cuyas opciones disponibles cambian según el `model` seleccionado. El valor de `seed` no garantiza salidas de imagen reproducibles. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `output` | IMAGE | La imagen o lote de imágenes generadas. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/fr.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/fr.md new file mode 100644 index 000000000..7cd4d69ac --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/fr.md @@ -0,0 +1,23 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/fr.md) + +Ce nœud génère des images à partir de descriptions textuelles en utilisant les modèles d'IA Recraft V4 ou V4 Pro. Il envoie votre prompt à une API externe et renvoie les images générées. Vous pouvez contrôler le résultat en spécifiant le modèle, la taille de l'image et le nombre d'images à créer. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Oui | N/A | Prompt pour la génération d'image. Maximum 10 000 caractères. | +| `negative_prompt` | STRING | Non | N/A | Une description textuelle facultative des éléments indésirables sur une image. | +| `model` | COMBO | Oui | `"recraftv4"`
`"recraftv4_pro"` | Le modèle à utiliser pour la génération. La sélection d'un modèle détermine les tailles d'image disponibles. | +| `size` | COMBO | Oui | Varie selon le modèle | La taille de l'image générée. Les options disponibles dépendent du modèle sélectionné. Pour `recraftv4`, la valeur par défaut est "1024x1024". Pour `recraftv4_pro`, la valeur par défaut est "2048x2048". | +| `n` | INT | Oui | 1 à 6 | Le nombre d'images à générer (par défaut : 1). | +| `seed` | INT | Oui | 0 à 18446744073709551615 | Graine pour déterminer si le nœud doit être réexécuté ; les résultats réels sont non déterministes quelle que soit la graine (par défaut : 0). | +| `recraft_controls` | CUSTOM | Non | N/A | Contrôles additionnels facultatifs sur la génération via le nœud Recraft Controls. | + +**Note :** Le paramètre `size` est une entrée dynamique dont les options disponibles changent en fonction du `model` sélectionné. La valeur de `seed` ne garantit pas des sorties d'image reproductibles. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `output` | IMAGE | L'image ou le lot d'images généré. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ja.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ja.md new file mode 100644 index 000000000..fe2982207 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ja.md @@ -0,0 +1,23 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ja.md) + +このノードは、Recraft V4またはV4 Pro AIモデルを使用して、テキストの説明から画像を生成します。プロンプトを外部APIに送信し、生成された画像を返します。モデル、画像サイズ、生成する画像の数を指定することで、出力を制御できます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | はい | N/A | 画像生成のためのプロンプト。最大10,000文字。 | +| `negative_prompt` | STRING | いいえ | N/A | 画像上で望ましくない要素のオプションのテキスト説明。 | +| `model` | COMBO | はい | `"recraftv4"`
`"recraftv4_pro"` | 生成に使用するモデル。モデルを選択すると、利用可能な画像サイズが決まります。 | +| `size` | COMBO | はい | モデルによって異なる | 生成される画像のサイズ。利用可能なオプションは選択されたモデルに依存します。`recraftv4`の場合、デフォルトは"1024x1024"です。`recraftv4_pro`の場合、デフォルトは"2048x2048"です。 | +| `n` | INT | はい | 1 から 6 | 生成する画像の数(デフォルト: 1)。 | +| `seed` | INT | はい | 0 から 18446744073709551615 | ノードを再実行するかどうかを決定するためのシード値。実際の結果はシードに関係なく非決定的です(デフォルト: 0)。 | +| `recraft_controls` | CUSTOM | いいえ | N/A | Recraft Controlsノードを介した生成に対するオプションの追加制御。 | + +**注記:** `size`パラメータは動的入力であり、選択された`model`に基づいて利用可能なオプションが変化します。`seed`の値は再現可能な画像出力を保証するものではありません。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `output` | IMAGE | 生成された画像、または画像のバッチ。 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ko.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ko.md new file mode 100644 index 000000000..9685918d0 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ko.md @@ -0,0 +1,23 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ko.md) + +이 노드는 Recraft V4 또는 V4 Pro AI 모델을 사용하여 텍스트 설명으로부터 이미지를 생성합니다. 사용자의 프롬프트를 외부 API로 전송하고 생성된 이미지를 반환합니다. 모델, 이미지 크기, 생성할 이미지 수를 지정하여 출력을 제어할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 예 | 해당 없음 | 이미지 생성을 위한 프롬프트입니다. 최대 10,000자입니다. | +| `negative_prompt` | STRING | 아니요 | 해당 없음 | 이미지에서 원하지 않는 요소에 대한 선택적 텍스트 설명입니다. | +| `model` | COMBO | 예 | `"recraftv4"`
`"recraftv4_pro"` | 생성에 사용할 모델입니다. 모델 선택에 따라 사용 가능한 이미지 크기가 결정됩니다. | +| `size` | COMBO | 예 | 모델별로 다름 | 생성될 이미지의 크기입니다. 사용 가능한 옵션은 선택한 모델에 따라 다릅니다. `recraftv4`의 경우 기본값은 "1024x1024"입니다. `recraftv4_pro`의 경우 기본값은 "2048x2048"입니다. | +| `n` | INT | 예 | 1 ~ 6 | 생성할 이미지의 수입니다 (기본값: 1). | +| `seed` | INT | 예 | 0 ~ 18446744073709551615 | 노드가 재실행되어야 하는지 결정하는 시드 값입니다. 시드 값과 관계없이 실제 결과는 비결정적입니다 (기본값: 0). | +| `recraft_controls` | CUSTOM | 아니요 | 해당 없음 | Recraft Controls 노드를 통한 생성에 대한 선택적 추가 제어입니다. | + +**참고:** `size` 매개변수는 선택된 `model`에 따라 사용 가능한 옵션이 변경되는 동적 입력입니다. `seed` 값은 재현 가능한 이미지 출력을 보장하지 않습니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `output` | IMAGE | 생성된 이미지 또는 이미지 배치입니다. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/pt-BR.md new file mode 100644 index 000000000..87229cb09 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/pt-BR.md @@ -0,0 +1,23 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/pt-BR.md) + +Este nó gera imagens a partir de descrições de texto usando os modelos de IA Recraft V4 ou V4 Pro. Ele envia seu prompt para uma API externa e retorna as imagens geradas. Você pode controlar a saída especificando o modelo, o tamanho da imagem e o número de imagens a serem criadas. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sim | N/A | Prompt para a geração da imagem. Máximo de 10.000 caracteres. | +| `negative_prompt` | STRING | Não | N/A | Uma descrição de texto opcional de elementos indesejados em uma imagem. | +| `model` | COMBO | Sim | `"recraftv4"`
`"recraftv4_pro"` | O modelo a ser usado para a geração. A seleção de um modelo determina os tamanhos de imagem disponíveis. | +| `size` | COMBO | Sim | Varia por modelo | O tamanho da imagem gerada. As opções disponíveis dependem do modelo selecionado. Para `recraftv4`, o padrão é "1024x1024". Para `recraftv4_pro`, o padrão é "2048x2048". | +| `n` | INT | Sim | 1 a 6 | O número de imagens a serem geradas (padrão: 1). | +| `seed` | INT | Sim | 0 a 18446744073709551615 | Semente para determinar se o nó deve ser executado novamente; os resultados reais são não determinísticos independentemente da semente (padrão: 0). | +| `recraft_controls` | CUSTOM | Não | N/A | Controles adicionais opcionais sobre a geração via o nó Recraft Controls. | + +**Observação:** O parâmetro `size` é uma entrada dinâmica cujas opções disponíveis mudam com base no `model` selecionado. O valor da `seed` não garante saídas de imagem reproduzíveis. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `output` | IMAGE | A imagem gerada ou o lote de imagens. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ru.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ru.md new file mode 100644 index 000000000..716921ebc --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ru.md @@ -0,0 +1,23 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/ru.md) + +Этот узел генерирует изображения из текстовых описаний с использованием моделей искусственного интеллекта Recraft V4 или V4 Pro. Он отправляет ваш промпт во внешний API и возвращает сгенерированные изображения. Вы можете управлять результатом, указывая модель, размер изображения и количество создаваемых изображений. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Да | Н/Д | Промпт для генерации изображения. Максимум 10 000 символов. | +| `negative_prompt` | STRING | Нет | Н/Д | Необязательное текстовое описание нежелательных элементов на изображении. | +| `model` | COMBO | Да | `"recraftv4"`
`"recraftv4_pro"` | Модель, используемая для генерации. Выбор модели определяет доступные размеры изображений. | +| `size` | COMBO | Да | Зависит от модели | Размер генерируемого изображения. Доступные опции зависят от выбранной модели. Для `recraftv4` значение по умолчанию — "1024x1024". Для `recraftv4_pro` значение по умолчанию — "2048x2048". | +| `n` | INT | Да | от 1 до 6 | Количество изображений для генерации (по умолчанию: 1). | +| `seed` | INT | Да | от 0 до 18446744073709551615 | Сид (начальное число) для определения, должен ли узел запускаться повторно; фактические результаты не являются детерминированными независимо от сида (по умолчанию: 0). | +| `recraft_controls` | CUSTOM | Нет | Н/Д | Необязательные дополнительные элементы управления генерацией через узел Recraft Controls. | + +**Примечание:** Параметр `size` является динамическим входом, доступные опции которого меняются в зависимости от выбранной `model`. Значение `seed` не гарантирует воспроизводимость результатов генерации изображений. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `output` | IMAGE | Сгенерированное изображение или пакет изображений. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/tr.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/tr.md new file mode 100644 index 000000000..53786e386 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/tr.md @@ -0,0 +1,23 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/tr.md) + +Bu düğüm, Recraft V4 veya V4 Pro AI modellerini kullanarak metin açıklamalarından görüntüler oluşturur. İsteğinizi harici bir API'ye gönderir ve oluşturulan görüntüleri döndürür. Çıktıyı model, görüntü boyutu ve oluşturulacak görüntü sayısını belirterek kontrol edebilirsiniz. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Evet | Yok | Görüntü oluşturma için istek. Maksimum 10.000 karakter. | +| `negative_prompt` | STRING | Hayır | Yok | Bir görüntüde istenmeyen öğelerin isteğe bağlı metin açıklaması. | +| `model` | COMBO | Evet | `"recraftv4"`
`"recraftv4_pro"` | Oluşturma için kullanılacak model. Bir model seçmek, mevcut görüntü boyutlarını belirler. | +| `size` | COMBO | Evet | Modele göre değişir | Oluşturulan görüntünün boyutu. Mevcut seçenekler seçilen modele bağlıdır. `recraftv4` için varsayılan "1024x1024"tür. `recraftv4_pro` için varsayılan "2048x2048"dir. | +| `n` | INT | Evet | 1 ile 6 | Oluşturulacak görüntü sayısı (varsayılan: 1). | +| `seed` | INT | Evet | 0 ile 18446744073709551615 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını belirlemek için tohum; gerçek sonuçlar tohumdan bağımsız olarak belirleyici değildir (varsayılan: 0). | +| `recraft_controls` | CUSTOM | Hayır | Yok | Recraft Kontroller düğümü aracılığıyla oluşturma üzerinde isteğe bağlı ek kontroller. | + +**Not:** `size` parametresi, mevcut seçenekleri seçilen `model`e göre değişen dinamik bir girdidir. `seed` değeri, tekrarlanabilir görüntü çıktılarını garanti etmez. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `output` | IMAGE | Oluşturulan görüntü veya görüntü grubu. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh-TW.md new file mode 100644 index 000000000..4e7e74881 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh-TW.md @@ -0,0 +1,23 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh-TW.md) + +此節點使用 Recraft V4 或 V4 Pro AI 模型,根據文字描述生成圖像。它會將您的提示發送到外部 API 並返回生成的圖像。您可以透過指定模型、圖像尺寸和要創建的圖像數量來控制輸出。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | N/A | 圖像生成的提示。最多 10,000 個字元。 | +| `negative_prompt` | STRING | 否 | N/A | 圖像上不希望出現元素的選用文字描述。 | +| `model` | COMBO | 是 | `"recraftv4"`
`"recraftv4_pro"` | 用於生成的模型。選擇的模型決定了可用的圖像尺寸。 | +| `size` | COMBO | 是 | 依模型而異 | 生成圖像的尺寸。可用選項取決於所選模型。對於 `recraftv4`,預設為 "1024x1024"。對於 `recraftv4_pro`,預設為 "2048x2048"。 | +| `n` | INT | 是 | 1 到 6 | 要生成的圖像數量(預設值:1)。 | +| `seed` | INT | 是 | 0 到 18446744073709551615 | 用於決定節點是否應重新執行的種子值;無論種子為何,實際結果都是非確定性的(預設值:0)。 | +| `recraft_controls` | CUSTOM | 否 | N/A | 透過 Recraft Controls 節點對生成過程進行選用的額外控制。 | + +**注意:** `size` 參數是一個動態輸入,其可用選項會根據所選的 `model` 而改變。`seed` 值並不能保證圖像輸出的可重現性。 + +## 輸出 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `output` | IMAGE | 生成的單張圖像或圖像批次。 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh.md b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh.md new file mode 100644 index 000000000..f78fa85a4 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh.md @@ -0,0 +1,23 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToImageNode/zh.md) + +此节点使用 Recraft V4 或 V4 Pro AI 模型,根据文本描述生成图像。它会将您的提示词发送到外部 API 并返回生成的图像。您可以通过指定模型、图像尺寸和生成数量来控制输出。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | 不适用 | 用于图像生成的提示词。最多 10,000 个字符。 | +| `negative_prompt` | STRING | 否 | 不适用 | 可选,描述图像中不希望出现的元素的文本。 | +| `model` | COMBO | 是 | `"recraftv4"`
`"recraftv4_pro"` | 用于生成的模型。选择的模型决定了可用的图像尺寸。 | +| `size` | COMBO | 是 | 随模型变化 | 生成图像的尺寸。可用选项取决于所选的模型。对于 `recraftv4`,默认值为 "1024x1024"。对于 `recraftv4_pro`,默认值为 "2048x2048"。 | +| `n` | INT | 是 | 1 到 6 | 要生成的图像数量(默认值:1)。 | +| `seed` | INT | 是 | 0 到 18446744073709551615 | 用于确定节点是否应重新运行的种子值;无论种子值如何,实际结果都是非确定性的(默认值:0)。 | +| `recraft_controls` | CUSTOM | 否 | 不适用 | 可选,通过 Recraft Controls 节点对生成过程进行额外控制。 | + +**注意:** `size` 参数是一个动态输入,其可用选项会根据所选的 `model` 而变化。`seed` 值不能保证图像输出的可复现性。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `output` | IMAGE | 生成的单张图像或图像批次。 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ar.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ar.md new file mode 100644 index 000000000..74c6ea203 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ar.md @@ -0,0 +1,23 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ar.md) + +يُولِّد عُقدة Recraft V4 Text to Vector رسومات متجهية قابلة للتوسيع (SVG) من وصف نصي. تتصل العقدة بواجهة برمجة تطبيقات خارجية لاستخدام نموذج Recraft V4 أو Recraft V4 Pro لتوليد الصور. تُخرج العقدة صورة أو أكثر بصيغة SVG استنادًا إلى المُطالبة النصية التي تقدمها. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | نعم | غير متاح | المُطالبة النصية لتوليد الصورة. الحد الأقصى 10,000 حرف. | +| `negative_prompt` | STRING | لا | غير متاح | وصف نصي اختياري للعناصر غير المرغوب فيها في الصورة. | +| `model` | COMBO | نعم | `"recraftv4"`
`"recraftv4_pro"` | النموذج المستخدم في عملية التوليد. اختيار النموذج يغير خيارات `size` المتاحة. | +| `size` | COMBO | نعم | لنموذج `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
لنموذج `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | حجم الصورة المُولَّدة. الخيارات المتاحة تعتمد على نموذج `model` المختار. القيمة الافتراضية هي `"1024x1024"` لنموذج `recraftv4` و `"2048x2048"` لنموذج `recraftv4_pro`. | +| `n` | INT | نعم | 1 إلى 6 | عدد الصور المطلوب توليدها (القيمة الافتراضية: 1). | +| `seed` | INT | نعم | 0 إلى 18446744073709551615 | قيمة بذرية لتحديد ما إذا كان يجب على العقدة إعادة التشغيل؛ النتائج الفعلية غير حتمية بغض النظر عن قيمة البذرة. | +| `recraft_controls` | CUSTOM | لا | غير متاح | عناصر تحكم اختيارية إضافية على عملية التوليد عبر عقدة Recraft Controls. | + +**ملاحظة:** معامل `size` هو مدخل ديناميكي تتغير خياراته المتاحة بناءً على نموذج `model` المختار. قيمة `seed` لا تضمن نتائج قابلة للتكرار من واجهة برمجة التطبيقات الخارجية. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `output` | SVG | الصورة (أو الصور) المُولَّدة بصيغة Scalable Vector Graphics (SVG). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/en.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/en.md new file mode 100644 index 000000000..0fe647312 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/en.md @@ -0,0 +1,23 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/en.md) + +The Recraft V4 Text to Vector node generates Scalable Vector Graphics (SVG) illustrations from a text description. It connects to an external API to use either the Recraft V4 or Recraft V4 Pro model for image generation. The node outputs one or more SVG images based on your prompt. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Yes | N/A | Prompt for the image generation. Maximum 10,000 characters. | +| `negative_prompt` | STRING | No | N/A | An optional text description of undesired elements on an image. | +| `model` | COMBO | Yes | `"recraftv4"`
`"recraftv4_pro"` | The model to use for generation. Selecting a model changes the available `size` options. | +| `size` | COMBO | Yes | For `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
For `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | The size of the generated image. The available options depend on the selected `model`. Default is `"1024x1024"` for `recraftv4` and `"2048x2048"` for `recraftv4_pro`. | +| `n` | INT | Yes | 1 to 6 | The number of images to generate (default: 1). | +| `seed` | INT | Yes | 0 to 18446744073709551615 | Seed to determine if node should re-run; actual results are nondeterministic regardless of seed. | +| `recraft_controls` | CUSTOM | No | N/A | Optional additional controls over the generation via the Recraft Controls node. | + +**Note:** The `size` parameter is a dynamic input whose available options change based on the selected `model`. The `seed` value does not guarantee reproducible results from the external API. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `output` | SVG | The generated Scalable Vector Graphics (SVG) image(s). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/es.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/es.md new file mode 100644 index 000000000..b33f8fbfe --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/es.md @@ -0,0 +1,23 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/es.md) + +El nodo Recraft V4 Text to Vector genera ilustraciones en formato de gráficos vectoriales escalables (SVG) a partir de una descripción de texto. Se conecta a una API externa para utilizar el modelo Recraft V4 o Recraft V4 Pro para la generación de imágenes. El nodo devuelve una o más imágenes SVG basadas en tu indicación (prompt). + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sí | N/A | Indicación (prompt) para la generación de la imagen. Máximo 10.000 caracteres. | +| `negative_prompt` | STRING | No | N/A | Una descripción de texto opcional de elementos no deseados en la imagen. | +| `model` | COMBO | Sí | `"recraftv4"`
`"recraftv4_pro"` | El modelo a utilizar para la generación. La selección del modelo cambia las opciones disponibles para `size`. | +| `size` | COMBO | Sí | Para `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
Para `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | El tamaño de la imagen generada. Las opciones disponibles dependen del `model` seleccionado. El valor por defecto es `"1024x1024"` para `recraftv4` y `"2048x2048"` para `recraftv4_pro`. | +| `n` | INT | Sí | 1 a 6 | El número de imágenes a generar (por defecto: 1). | +| `seed` | INT | Sí | 0 a 18446744073709551615 | Semilla para determinar si el nodo debe volver a ejecutarse; los resultados reales son no deterministas independientemente de la semilla. | +| `recraft_controls` | CUSTOM | No | N/A | Controles adicionales opcionales sobre la generación a través del nodo Recraft Controls. | + +**Nota:** El parámetro `size` es una entrada dinámica cuyas opciones disponibles cambian según el `model` seleccionado. El valor de `seed` no garantiza resultados reproducibles desde la API externa. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `output` | SVG | La(s) imagen(es) generada(s) en formato de gráficos vectoriales escalables (SVG). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/fr.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/fr.md new file mode 100644 index 000000000..248751fae --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/fr.md @@ -0,0 +1,23 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/fr.md) + +Le nœud Recraft V4 Text to Vector génère des illustrations au format Scalable Vector Graphics (SVG) à partir d'une description textuelle. Il se connecte à une API externe pour utiliser le modèle Recraft V4 ou Recraft V4 Pro pour la génération d'images. Le nœud produit une ou plusieurs images SVG en fonction de votre prompt. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Oui | N/A | Prompt pour la génération d'image. Maximum 10 000 caractères. | +| `negative_prompt` | STRING | Non | N/A | Une description textuelle facultative des éléments indésirables sur une image. | +| `model` | COMBO | Oui | `"recraftv4"`
`"recraftv4_pro"` | Le modèle à utiliser pour la génération. La sélection d'un modèle modifie les options de `size` disponibles. | +| `size` | COMBO | Oui | Pour `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
Pour `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | La taille de l'image générée. Les options disponibles dépendent du `model` sélectionné. La valeur par défaut est `"1024x1024"` pour `recraftv4` et `"2048x2048"` pour `recraftv4_pro`. | +| `n` | INT | Oui | 1 à 6 | Le nombre d'images à générer (par défaut : 1). | +| `seed` | INT | Oui | 0 à 18446744073709551615 | Graine pour déterminer si le nœud doit être réexécuté ; les résultats réels sont non déterministes quelle que soit la graine. | +| `recraft_controls` | CUSTOM | Non | N/A | Contrôles additionnels facultatifs sur la génération via le nœud Recraft Controls. | + +**Note :** Le paramètre `size` est une entrée dynamique dont les options disponibles changent en fonction du `model` sélectionné. La valeur de `seed` ne garantit pas des résultats reproductibles de l'API externe. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `output` | SVG | L'image ou les images Scalable Vector Graphics (SVG) générée(s). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ja.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ja.md new file mode 100644 index 000000000..f66e2f006 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ja.md @@ -0,0 +1,23 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ja.md) + +Recraft V4 Text to Vector ノードは、テキストの説明からスケーラブルベクターグラフィックス(SVG)のイラストを生成します。外部APIに接続し、画像生成にRecraft V4またはRecraft V4 Proモデルを使用します。このノードは、プロンプトに基づいて1つ以上のSVG画像を出力します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | はい | N/A | 画像生成のためのプロンプト。最大10,000文字。 | +| `negative_prompt` | STRING | いいえ | N/A | 画像上で望ましくない要素を記述するオプションのテキスト説明です。 | +| `model` | COMBO | はい | `"recraftv4"`
`"recraftv4_pro"` | 生成に使用するモデル。モデルを選択すると、利用可能な `size` オプションが変わります。 | +| `size` | COMBO | はい | `recraftv4`の場合: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
`recraftv4_pro`の場合: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | 生成される画像のサイズ。利用可能なオプションは、選択された `model` に依存します。デフォルトは `recraftv4` で `"1024x1024"`、`recraftv4_pro` で `"2048x2048"` です。 | +| `n` | INT | はい | 1 から 6 | 生成する画像の数(デフォルト: 1)。 | +| `seed` | INT | はい | 0 から 18446744073709551615 | ノードを再実行するかどうかを決定するためのシード値です。実際の結果はシードに関係なく非決定的です。 | +| `recraft_controls` | CUSTOM | いいえ | N/A | Recraft Controls ノードを介した生成に対するオプションの追加制御です。 | + +**注意:** `size` パラメータは、選択された `model` に基づいて利用可能なオプションが変化する動的な入力です。`seed` の値は、外部APIからの再現可能な結果を保証するものではありません。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `output` | SVG | 生成されたスケーラブルベクターグラフィックス(SVG)画像です。 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ko.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ko.md new file mode 100644 index 000000000..8f2814718 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ko.md @@ -0,0 +1,23 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ko.md) + +Recraft V4 Text to Vector 노드는 텍스트 설명으로부터 확장 가능한 벡터 그래픽(SVG) 일러스트레이션을 생성합니다. 이미지 생성을 위해 Recraft V4 또는 Recraft V4 Pro 모델을 사용하기 위해 외부 API에 연결됩니다. 이 노드는 사용자의 프롬프트를 기반으로 하나 이상의 SVG 이미지를 출력합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 예 | 해당 없음 | 이미지 생성을 위한 프롬프트입니다. 최대 10,000자입니다. | +| `negative_prompt` | STRING | 아니요 | 해당 없음 | 이미지에서 원하지 않는 요소에 대한 선택적 텍스트 설명입니다. | +| `model` | COMBO | 예 | `"recraftv4"`
`"recraftv4_pro"` | 생성에 사용할 모델입니다. 모델을 선택하면 사용 가능한 `size` 옵션이 변경됩니다. | +| `size` | COMBO | 예 | `recraftv4`의 경우: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
`recraftv4_pro`의 경우: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | 생성될 이미지의 크기입니다. 사용 가능한 옵션은 선택된 `model`에 따라 다릅니다. 기본값은 `recraftv4`의 경우 `"1024x1024"`, `recraftv4_pro`의 경우 `"2048x2048"`입니다. | +| `n` | INT | 예 | 1부터 6 | 생성할 이미지의 수입니다 (기본값: 1). | +| `seed` | INT | 예 | 0부터 18446744073709551615 | 노드가 재실행되어야 하는지 결정하기 위한 시드 값입니다. 실제 결과는 시드 값과 관계없이 비결정적입니다. | +| `recraft_controls` | CUSTOM | 아니요 | 해당 없음 | Recraft Controls 노드를 통한 생성에 대한 선택적 추가 제어 옵션입니다. | + +**참고:** `size` 매개변수는 선택된 `model`에 따라 사용 가능한 옵션이 변경되는 동적 입력입니다. `seed` 값은 외부 API로부터 재현 가능한 결과를 보장하지 않습니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `output` | SVG | 생성된 확장 가능한 벡터 그래픽(SVG) 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/pt-BR.md new file mode 100644 index 000000000..2d2ae467c --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/pt-BR.md @@ -0,0 +1,23 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/pt-BR.md) + +O nó Recraft V4 Text to Vector gera ilustrações em Scalable Vector Graphics (SVG) a partir de uma descrição textual. Ele se conecta a uma API externa para usar o modelo Recraft V4 ou Recraft V4 Pro para geração de imagens. O nó gera uma ou mais imagens SVG com base no seu prompt. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Sim | N/A | Prompt para a geração da imagem. Máximo de 10.000 caracteres. | +| `negative_prompt` | STRING | Não | N/A | Uma descrição textual opcional de elementos indesejados na imagem. | +| `model` | COMBO | Sim | `"recraftv4"`
`"recraftv4_pro"` | O modelo a ser usado para a geração. A seleção de um modelo altera as opções de `size` disponíveis. | +| `size` | COMBO | Sim | Para `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
Para `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | O tamanho da imagem gerada. As opções disponíveis dependem do `model` selecionado. O padrão é `"1024x1024"` para `recraftv4` e `"2048x2048"` para `recraftv4_pro`. | +| `n` | INT | Sim | 1 a 6 | O número de imagens a serem geradas (padrão: 1). | +| `seed` | INT | Sim | 0 a 18446744073709551615 | Semente para determinar se o nó deve ser executado novamente; os resultados reais são não determinísticos independentemente da semente. | +| `recraft_controls` | CUSTOM | Não | N/A | Controles adicionais opcionais sobre a geração via o nó Recraft Controls. | + +**Observação:** O parâmetro `size` é uma entrada dinâmica cujas opções disponíveis mudam com base no `model` selecionado. O valor de `seed` não garante resultados reproduzíveis da API externa. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `output` | SVG | A(s) imagem(ns) Scalable Vector Graphics (SVG) gerada(s). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ru.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ru.md new file mode 100644 index 000000000..cbf18f345 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ru.md @@ -0,0 +1,23 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/ru.md) + +Узел Recraft V4 Text to Vector создаёт иллюстрации в формате Scalable Vector Graphics (SVG) на основе текстового описания. Он подключается к внешнему API для использования модели Recraft V4 или Recraft V4 Pro для генерации изображений. Узел выводит одно или несколько SVG-изображений в соответствии с вашим промптом. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Да | Н/Д | Промпт для генерации изображения. Максимум 10 000 символов. | +| `negative_prompt` | STRING | Нет | Н/Д | Необязательное текстовое описание нежелательных элементов на изображении. | +| `model` | COMBO | Да | `"recraftv4"`
`"recraftv4_pro"` | Модель, используемая для генерации. Выбор модели изменяет доступные опции `size`. | +| `size` | COMBO | Да | Для `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
Для `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | Размер генерируемого изображения. Доступные опции зависят от выбранной `model`. По умолчанию `"1024x1024"` для `recraftv4` и `"2048x2048"` для `recraftv4_pro`. | +| `n` | INT | Да | 1 до 6 | Количество изображений для генерации (по умолчанию: 1). | +| `seed` | INT | Да | 0 до 18446744073709551615 | Сид для определения, должен ли узел перезапускаться; фактические результаты не являются детерминированными независимо от сида. | +| `recraft_controls` | CUSTOM | Нет | Н/Д | Необязательные дополнительные элементы управления генерацией через узел Recraft Controls. | + +**Примечание:** Параметр `size` является динамическим входом, доступные опции которого меняются в зависимости от выбранной `model`. Значение `seed` не гарантирует воспроизводимых результатов от внешнего API. + +## Выходные данные + +| Выходное имя | Тип данных | Описание | +|-------------|-----------|-------------| +| `output` | SVG | Сгенерированное(ые) изображение(я) в формате Scalable Vector Graphics (SVG). | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/tr.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/tr.md new file mode 100644 index 000000000..99bf3ad0e --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/tr.md @@ -0,0 +1,23 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/tr.md) + +Recraft V4 Metinden Vektöre düğümü, bir metin açıklamasından Ölçeklenebilir Vektör Grafikleri (SVG) illüstrasyonları oluşturur. Görüntü oluşturma için Recraft V4 veya Recraft V4 Pro modelini kullanmak üzere harici bir API'ye bağlanır. Düğüm, girdiğiniz komuta dayalı olarak bir veya daha fazla SVG görüntüsü çıktılar. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | Evet | Yok | Görüntü oluşturma komutu. Maksimum 10.000 karakter. | +| `negative_prompt` | STRING | Hayır | Yok | Bir görüntüde istenmeyen öğelerin isteğe bağlı metin açıklaması. | +| `model` | COMBO | Evet | `"recraftv4"`
`"recraftv4_pro"` | Oluşturma için kullanılacak model. Bir model seçmek, mevcut `size` seçeneklerini değiştirir. | +| `size` | COMBO | Evet | `recraftv4` için: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
`recraftv4_pro` için: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | Oluşturulan görüntünün boyutu. Mevcut seçenekler seçilen `model`'e bağlıdır. Varsayılan, `recraftv4` için `"1024x1024"` ve `recraftv4_pro` için `"2048x2048"`'dir. | +| `n` | INT | Evet | 1 - 6 | Oluşturulacak görüntü sayısı (varsayılan: 1). | +| `seed` | INT | Evet | 0 - 18446744073709551615 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını belirlemek için tohum; gerçek sonuçlar tohumdan bağımsız olarak belirleyici değildir. | +| `recraft_controls` | CUSTOM | Hayır | Yok | Recraft Kontrolleri düğümü aracılığıyla oluşturma üzerinde isteğe bağlı ek kontroller. | + +**Not:** `size` parametresi, mevcut seçenekleri seçilen `model`'e göre değişen dinamik bir girdidir. `seed` değeri, harici API'den tekrarlanabilir sonuçlar garanti etmez. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `output` | SVG | Oluşturulan Ölçeklenebilir Vektör Grafikleri (SVG) görüntüsü/görüntüleri. | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh-TW.md new file mode 100644 index 000000000..8e0a7093b --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh-TW.md @@ -0,0 +1,23 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh-TW.md) + +此節點根據文字描述生成可縮放向量圖形(SVG)插圖。它連接至外部 API,使用 Recraft V4 或 Recraft V4 Pro 模型進行圖像生成。該節點會根據您的提示輸出一個或多個 SVG 圖像。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | N/A | 用於圖像生成的提示詞。最多 10,000 個字元。 | +| `negative_prompt` | STRING | 否 | N/A | 描述圖像中不希望出現元素的選用文字。 | +| `model` | COMBO | 是 | `"recraftv4"`
`"recraftv4_pro"` | 用於生成的模型。選擇模型會改變可用的 `size` 選項。 | +| `size` | COMBO | 是 | 對於 `recraftv4`:`"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
對於 `recraftv4_pro`:`"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | 生成圖像的尺寸。可用選項取決於所選的 `model`。預設值為:`recraftv4` 是 `"1024x1024"`,`recraftv4_pro` 是 `"2048x2048"`。 | +| `n` | INT | 是 | 1 到 6 | 要生成的圖像數量(預設值:1)。 | +| `seed` | INT | 是 | 0 到 18446744073709551615 | 用於決定節點是否應重新執行的種子值;無論種子為何,實際結果均為非確定性。 | +| `recraft_controls` | CUSTOM | 否 | N/A | 透過 Recraft Controls 節點對生成過程進行選用的額外控制。 | + +**注意:** `size` 參數是一個動態輸入,其可用選項會根據所選的 `model` 而改變。`seed` 值無法保證外部 API 產生可重現的結果。 + +## 輸出 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `output` | SVG | 生成的可縮放向量圖形(SVG)圖像。 | diff --git a/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh.md b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh.md new file mode 100644 index 000000000..b086b32a8 --- /dev/null +++ b/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh.md @@ -0,0 +1,23 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/RecraftV4TextToVectorNode/zh.md) + +Recraft V4 文本转矢量节点可根据文本描述生成可缩放矢量图形(SVG)插图。它通过连接外部 API 来使用 Recraft V4 或 Recraft V4 Pro 模型进行图像生成。该节点会根据您的提示输出一个或多个 SVG 图像。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `prompt` | STRING | 是 | 不适用 | 用于图像生成的提示词。最多 10,000 个字符。 | +| `negative_prompt` | STRING | 否 | 不适用 | 对图像中不希望出现的元素的可选文本描述。 | +| `model` | COMBO | 是 | `"recraftv4"`
`"recraftv4_pro"` | 用于生成的模型。选择不同的模型会改变可用的 `size` 选项。 | +| `size` | COMBO | 是 | 对于 `recraftv4`: `"1024x1024"`, `"1152x896"`, `"896x1152"`, `"1216x832"`, `"832x1216"`, `"1344x768"`, `"768x1344"`, `"1536x640"`, `"640x1536"`
对于 `recraftv4_pro`: `"2048x2048"`, `"2304x1792"`, `"1792x2304"`, `"2432x1664"`, `"1664x2432"`, `"2688x1536"`, `"1536x2688"`, `"3072x1280"`, `"1280x3072"` | 生成图像的尺寸。可用选项取决于所选的 `model`。默认值为 `recraftv4` 模型为 `"1024x1024"`,`recraftv4_pro` 模型为 `"2048x2048"`。 | +| `n` | INT | 是 | 1 到 6 | 要生成的图像数量(默认值:1)。 | +| `seed` | INT | 是 | 0 到 18446744073709551615 | 用于确定节点是否应重新运行的种子值;无论种子值如何,实际结果都是非确定性的。 | +| `recraft_controls` | CUSTOM | 否 | 不适用 | 通过 Recraft Controls 节点对生成过程进行可选额外控制。 | + +**注意:** `size` 参数是一个动态输入,其可用选项会根据所选的 `model` 而变化。`seed` 值不能保证外部 API 产生可重现的结果。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `output` | SVG | 生成的可缩放矢量图形(SVG)图像。 | diff --git a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/ar.md b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/ar.md index 1d422fe22..f818f21d3 100644 --- a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/ar.md +++ b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `SVG` | SVG | ناتج الرسومات المتجهة المُنشَئ الذي يجمع جميع الصور المُعالَجة | \ No newline at end of file +| `SVG` | SVG | ناتج الرسومات المتجهة المُنشَئ الذي يجمع جميع الصور المُعالَجة | diff --git a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/pt-BR.md b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/pt-BR.md index 77b9193cc..176543fc1 100644 --- a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/pt-BR.md @@ -14,4 +14,4 @@ Gera SVG de forma síncrona a partir de uma imagem de entrada. Este nó converte | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `SVG` | SVG | A saída de gráficos vetoriais gerada, combinando todas as imagens processadas | \ No newline at end of file +| `SVG` | SVG | A saída de gráficos vetoriais gerada, combinando todas as imagens processadas | diff --git a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/tr.md b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/tr.md index a6c23e37c..a10a57098 100644 --- a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/tr.md +++ b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/tr.md @@ -14,4 +14,4 @@ Girdi görüntüsünden SVG'yi eşzamanlı olarak oluşturur. Bu düğüm, pikse | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `SVG` | SVG | İşlenen tüm görüntülerin birleştirilmesiyle oluşturulan vektör grafik çıktısı | \ No newline at end of file +| `SVG` | SVG | İşlenen tüm görüntülerin birleştirilmesiyle oluşturulan vektör grafik çıktısı | diff --git a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/zh-TW.md b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/zh-TW.md index dd2350ff4..785b7f55e 100644 --- a/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RecraftVectorizeImageNode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `SVG` | SVG | 將所有處理過的圖像合併後生成的向量圖形輸出 | \ No newline at end of file +| `SVG` | SVG | 將所有處理過的圖像合併後生成的向量圖形輸出 | diff --git a/comfyui_embedded_docs/docs/ReferenceLatent/ar.md b/comfyui_embedded_docs/docs/ReferenceLatent/ar.md index ad7b11736..110c9b690 100644 --- a/comfyui_embedded_docs/docs/ReferenceLatent/ar.md +++ b/comfyui_embedded_docs/docs/ReferenceLatent/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|---------| -| `output` | CONDITIONING | بيانات التكييف المعدلة التي تحتوي على معلومات المرجع الكامن | \ No newline at end of file +| `output` | CONDITIONING | بيانات التكييف المعدلة التي تحتوي على معلومات المرجع الكامن | diff --git a/comfyui_embedded_docs/docs/ReferenceLatent/pt-BR.md b/comfyui_embedded_docs/docs/ReferenceLatent/pt-BR.md index 47701e41d..f2ce3abea 100644 --- a/comfyui_embedded_docs/docs/ReferenceLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/ReferenceLatent/pt-BR.md @@ -13,4 +13,4 @@ Este nó define o latente de referência para um modelo de edição. Ele recebe | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | CONDITIONING | Os dados de condicionamento modificados contendo informações do latente de referência | \ No newline at end of file +| `output` | CONDITIONING | Os dados de condicionamento modificados contendo informações do latente de referência | diff --git a/comfyui_embedded_docs/docs/ReferenceLatent/tr.md b/comfyui_embedded_docs/docs/ReferenceLatent/tr.md index 33618db4c..d266600ad 100644 --- a/comfyui_embedded_docs/docs/ReferenceLatent/tr.md +++ b/comfyui_embedded_docs/docs/ReferenceLatent/tr.md @@ -13,4 +13,4 @@ Bu düğüm, bir düzenleme modeli için kılavuz gizli katmanı (latent) ayarla | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | CONDITIONING | Referans gizli katman bilgilerini içeren değiştirilmiş koşullandırma verileri | \ No newline at end of file +| `output` | CONDITIONING | Referans gizli katman bilgilerini içeren değiştirilmiş koşullandırma verileri | diff --git a/comfyui_embedded_docs/docs/ReferenceLatent/zh-TW.md b/comfyui_embedded_docs/docs/ReferenceLatent/zh-TW.md index ab974885b..3f0255c4f 100644 --- a/comfyui_embedded_docs/docs/ReferenceLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/ReferenceLatent/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | CONDITIONING | 包含參考潛在資訊的已修改條件化資料 | \ No newline at end of file +| `output` | CONDITIONING | 包含參考潛在資訊的已修改條件化資料 | diff --git a/comfyui_embedded_docs/docs/RegexExtract/ar.md b/comfyui_embedded_docs/docs/RegexExtract/ar.md index b30c069aa..4f89c07bf 100644 --- a/comfyui_embedded_docs/docs/RegexExtract/ar.md +++ b/comfyui_embedded_docs/docs/RegexExtract/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | النص المستخرج بناءً على النمط والمعاملات المحددة | \ No newline at end of file +| `output` | STRING | النص المستخرج بناءً على النمط والمعاملات المحددة | diff --git a/comfyui_embedded_docs/docs/RegexExtract/pt-BR.md b/comfyui_embedded_docs/docs/RegexExtract/pt-BR.md index 63747d5fe..9ec783df3 100644 --- a/comfyui_embedded_docs/docs/RegexExtract/pt-BR.md +++ b/comfyui_embedded_docs/docs/RegexExtract/pt-BR.md @@ -20,4 +20,4 @@ O nó RegexExtract busca por padrões em texto usando expressões regulares. Ele | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | O texto extraído com base no modo e parâmetros selecionados | \ No newline at end of file +| `output` | STRING | O texto extraído com base no modo e parâmetros selecionados | diff --git a/comfyui_embedded_docs/docs/RegexExtract/tr.md b/comfyui_embedded_docs/docs/RegexExtract/tr.md index 046501d07..c701c025c 100644 --- a/comfyui_embedded_docs/docs/RegexExtract/tr.md +++ b/comfyui_embedded_docs/docs/RegexExtract/tr.md @@ -20,4 +20,4 @@ RegexExtract düğümü, metin içinde düzenli ifadeler kullanarak desenleri ar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Seçilen mod ve parametrelere dayalı olarak çıkarılan metin | \ No newline at end of file +| `output` | STRING | Seçilen mod ve parametrelere dayalı olarak çıkarılan metin | diff --git a/comfyui_embedded_docs/docs/RegexExtract/zh-TW.md b/comfyui_embedded_docs/docs/RegexExtract/zh-TW.md index 1ab6f37f9..0f474947e 100644 --- a/comfyui_embedded_docs/docs/RegexExtract/zh-TW.md +++ b/comfyui_embedded_docs/docs/RegexExtract/zh-TW.md @@ -20,4 +20,4 @@ RegexExtract 節點使用正規表示式在文字中搜尋模式。它可以找 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 根據所選模式和參數提取的文字 | \ No newline at end of file +| `output` | STRING | 根據所選模式和參數提取的文字 | diff --git a/comfyui_embedded_docs/docs/RegexMatch/ar.md b/comfyui_embedded_docs/docs/RegexMatch/ar.md index c0aa1ca6d..12964573f 100644 --- a/comfyui_embedded_docs/docs/RegexMatch/ar.md +++ b/comfyui_embedded_docs/docs/RegexMatch/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `matches` | BOOLEAN | يُرجع True إذا كان نمط regex يطابق أي جزء من سلسلة الإدخال، ويُرجع False في الحالة الأخرى | \ No newline at end of file +| `matches` | BOOLEAN | يُرجع True إذا كان نمط regex يطابق أي جزء من سلسلة الإدخال، ويُرجع False في الحالة الأخرى | diff --git a/comfyui_embedded_docs/docs/RegexMatch/pt-BR.md b/comfyui_embedded_docs/docs/RegexMatch/pt-BR.md index 1b8024b60..3681d0103 100644 --- a/comfyui_embedded_docs/docs/RegexMatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/RegexMatch/pt-BR.md @@ -16,4 +16,4 @@ O nó RegexMatch verifica se uma string de texto corresponde a um padrão de exp | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `matches` | BOOLEAN | Retorna Verdadeiro se o padrão regex corresponder a qualquer parte da string de entrada, Falso caso contrário | \ No newline at end of file +| `matches` | BOOLEAN | Retorna Verdadeiro se o padrão regex corresponder a qualquer parte da string de entrada, Falso caso contrário | diff --git a/comfyui_embedded_docs/docs/RegexMatch/tr.md b/comfyui_embedded_docs/docs/RegexMatch/tr.md index aa9c9a83c..973285700 100644 --- a/comfyui_embedded_docs/docs/RegexMatch/tr.md +++ b/comfyui_embedded_docs/docs/RegexMatch/tr.md @@ -16,4 +16,4 @@ RegexMatch düğümü, bir metin dizesinin belirtilen normal ifade deseniyle eş | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `matches` | BOOLEAN | Regex deseni girdi dizesinin herhangi bir bölümüyle eşleşirse True, aksi takdirde False döndürür | \ No newline at end of file +| `matches` | BOOLEAN | Regex deseni girdi dizesinin herhangi bir bölümüyle eşleşirse True, aksi takdirde False döndürür | diff --git a/comfyui_embedded_docs/docs/RegexMatch/zh-TW.md b/comfyui_embedded_docs/docs/RegexMatch/zh-TW.md index d630c584c..5f145e735 100644 --- a/comfyui_embedded_docs/docs/RegexMatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/RegexMatch/zh-TW.md @@ -16,4 +16,4 @@ RegexMatch 節點用於檢查文字字串是否符合指定的正規表示式模 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `matches` | BOOLEAN | 如果正規表示式模式匹配輸入字串的任何部分則回傳 True,否則回傳 False | \ No newline at end of file +| `matches` | BOOLEAN | 如果正規表示式模式匹配輸入字串的任何部分則回傳 True,否則回傳 False | diff --git a/comfyui_embedded_docs/docs/RegexReplace/ar.md b/comfyui_embedded_docs/docs/RegexReplace/ar.md index d2af75b3f..e25e277b0 100644 --- a/comfyui_embedded_docs/docs/RegexReplace/ar.md +++ b/comfyui_embedded_docs/docs/RegexReplace/ar.md @@ -18,4 +18,4 @@ |-------------|-----------|-------------| | `output` | STRING | السلسلة المعدلة مع تطبيق عمليات الاستبدال المحددة | -يقوم عقدة RegexReplace بالبحث عن النص واستبداله في السلاسل النصية باستخدام أنماط التعبيرات النمطية. يسمح لك بالبحث عن أنماط النص واستبدالها بنص جديد، مع خيارات للتحكم في كيفية عمل مطابقة الأنماط بما في ذلك حساسية حالة الأحرف، والمطابقة متعددة الأسطر، والحد من عدد عمليات الاستبدال. \ No newline at end of file +يقوم عقدة RegexReplace بالبحث عن النص واستبداله في السلاسل النصية باستخدام أنماط التعبيرات النمطية. يسمح لك بالبحث عن أنماط النص واستبدالها بنص جديد، مع خيارات للتحكم في كيفية عمل مطابقة الأنماط بما في ذلك حساسية حالة الأحرف، والمطابقة متعددة الأسطر، والحد من عدد عمليات الاستبدال. diff --git a/comfyui_embedded_docs/docs/RegexReplace/pt-BR.md b/comfyui_embedded_docs/docs/RegexReplace/pt-BR.md index 43c275d86..0ea0e07f2 100644 --- a/comfyui_embedded_docs/docs/RegexReplace/pt-BR.md +++ b/comfyui_embedded_docs/docs/RegexReplace/pt-BR.md @@ -18,4 +18,4 @@ O nó RegexReplace localiza e substitui texto em strings usando padrões de expr | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string modificada com as substituições especificadas aplicadas | \ No newline at end of file +| `output` | STRING | A string modificada com as substituições especificadas aplicadas | diff --git a/comfyui_embedded_docs/docs/RegexReplace/tr.md b/comfyui_embedded_docs/docs/RegexReplace/tr.md index ad59a5a3c..3f1457621 100644 --- a/comfyui_embedded_docs/docs/RegexReplace/tr.md +++ b/comfyui_embedded_docs/docs/RegexReplace/tr.md @@ -18,4 +18,4 @@ RegexReplace düğümü, metin dizilerinde düzenli ifade desenleri kullanarak m | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Belirtilen değiştirmelerin uygulandığı değiştirilmiş dizi | \ No newline at end of file +| `output` | STRING | Belirtilen değiştirmelerin uygulandığı değiştirilmiş dizi | diff --git a/comfyui_embedded_docs/docs/RegexReplace/zh-TW.md b/comfyui_embedded_docs/docs/RegexReplace/zh-TW.md index 4e2b646d9..981798600 100644 --- a/comfyui_embedded_docs/docs/RegexReplace/zh-TW.md +++ b/comfyui_embedded_docs/docs/RegexReplace/zh-TW.md @@ -18,4 +18,4 @@ RegexReplace 節點使用正規表示式模式在字串中尋找並取代文字 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 應用指定替換後的修改字串 | \ No newline at end of file +| `output` | STRING | 應用指定替換後的修改字串 | diff --git a/comfyui_embedded_docs/docs/RenormCFG/ar.md b/comfyui_embedded_docs/docs/RenormCFG/ar.md index e4459ca65..d6ffbf9f6 100644 --- a/comfyui_embedded_docs/docs/RenormCFG/ar.md +++ b/comfyui_embedded_docs/docs/RenormCFG/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق وظيفة إعادة تطبيع CFG | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق وظيفة إعادة تطبيع CFG | diff --git a/comfyui_embedded_docs/docs/RenormCFG/pt-BR.md b/comfyui_embedded_docs/docs/RenormCFG/pt-BR.md index 7a16da240..2fbc4922e 100644 --- a/comfyui_embedded_docs/docs/RenormCFG/pt-BR.md +++ b/comfyui_embedded_docs/docs/RenormCFG/pt-BR.md @@ -14,4 +14,4 @@ O nó RenormCFG modifica o processo de orientação sem classificador (CFG) em m | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a função CFG renormalizada aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a função CFG renormalizada aplicada | diff --git a/comfyui_embedded_docs/docs/RenormCFG/tr.md b/comfyui_embedded_docs/docs/RenormCFG/tr.md index 2b222129a..426b08004 100644 --- a/comfyui_embedded_docs/docs/RenormCFG/tr.md +++ b/comfyui_embedded_docs/docs/RenormCFG/tr.md @@ -14,4 +14,4 @@ RenormCFG düğümü, yayılım modellerinde sınıflandırıcısız kılavuzluk | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Yeniden normalleştirilmiş CFG işlevi uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Yeniden normalleştirilmiş CFG işlevi uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/RenormCFG/zh-TW.md b/comfyui_embedded_docs/docs/RenormCFG/zh-TW.md index 722f938e9..4f90af5ba 100644 --- a/comfyui_embedded_docs/docs/RenormCFG/zh-TW.md +++ b/comfyui_embedded_docs/docs/RenormCFG/zh-TW.md @@ -14,4 +14,4 @@ RenormCFG 節點透過應用條件縮放與正規化,來修改擴散模型中 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用重新正規化 CFG 功能的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用重新正規化 CFG 功能的修改後模型 | diff --git a/comfyui_embedded_docs/docs/RepeatImageBatch/ar.md b/comfyui_embedded_docs/docs/RepeatImageBatch/ar.md index 4df916ad0..fe2758bcc 100644 --- a/comfyui_embedded_docs/docs/RepeatImageBatch/ar.md +++ b/comfyui_embedded_docs/docs/RepeatImageBatch/ar.md @@ -13,4 +13,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|--------------------------------------------------------------------------| -| `الصورة`| `IMAGE` | المخرج عبارة عن مجموعة من الصور، كل منها مطابقة لصورة الإدخال، مكررة وفقًا للعدد المحدد في 'amount'. | \ No newline at end of file +| `الصورة`| `IMAGE` | المخرج عبارة عن مجموعة من الصور، كل منها مطابقة لصورة الإدخال، مكررة وفقًا للعدد المحدد في 'amount'. | diff --git a/comfyui_embedded_docs/docs/RepeatImageBatch/pt-BR.md b/comfyui_embedded_docs/docs/RepeatImageBatch/pt-BR.md index b60ef34d8..77b474ce7 100644 --- a/comfyui_embedded_docs/docs/RepeatImageBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/RepeatImageBatch/pt-BR.md @@ -13,4 +13,4 @@ O nó RepeatImageBatch foi projetado para replicar uma determinada imagem um nú | Campo | Tipo de Dados | Descrição | |--------|---------------|------------------------------------------------------------------------| -| `image`| `IMAGE` | A saída é um lote de imagens, cada uma idêntica à imagem de entrada, replicada de acordo com o `amount` especificado. | \ No newline at end of file +| `image`| `IMAGE` | A saída é um lote de imagens, cada uma idêntica à imagem de entrada, replicada de acordo com o `amount` especificado. | diff --git a/comfyui_embedded_docs/docs/RepeatImageBatch/tr.md b/comfyui_embedded_docs/docs/RepeatImageBatch/tr.md index 55900fc01..b951760ca 100644 --- a/comfyui_embedded_docs/docs/RepeatImageBatch/tr.md +++ b/comfyui_embedded_docs/docs/RepeatImageBatch/tr.md @@ -13,4 +13,4 @@ RepeatImageBatch düğümü, belirli bir görüntüyü belirtilen sayıda kopyal | Alan | Veri Türü | Açıklama | |--------|-----------|-----------------------------------------------------------------------| -| `görüntü`| `IMAGE` | Çıktı, her biri girdi görüntüsünün aynısı olan ve belirtilen 'amount' değerine göre çoğaltılmış görüntülerden oluşan bir toplu işlemdir. | \ No newline at end of file +| `görüntü`| `IMAGE` | Çıktı, her biri girdi görüntüsünün aynısı olan ve belirtilen 'amount' değerine göre çoğaltılmış görüntülerden oluşan bir toplu işlemdir. | diff --git a/comfyui_embedded_docs/docs/RepeatImageBatch/zh-TW.md b/comfyui_embedded_docs/docs/RepeatImageBatch/zh-TW.md index 5454cc34e..51dede8ad 100644 --- a/comfyui_embedded_docs/docs/RepeatImageBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/RepeatImageBatch/zh-TW.md @@ -13,4 +13,4 @@ RepeatImageBatch 節點旨在將指定影像複製特定次數,建立由相同 | 欄位 | 資料類型 | 描述 | |---------|-------------|-------------------------------------------------------------------| -| `影像` | `IMAGE` | 輸出為一批影像,每張影像均與輸入影像相同,並根據指定的 `數量` 參數進行複製。 | \ No newline at end of file +| `影像` | `IMAGE` | 輸出為一批影像,每張影像均與輸入影像相同,並根據指定的 `數量` 參數進行複製。 | diff --git a/comfyui_embedded_docs/docs/RepeatLatentBatch/ar.md b/comfyui_embedded_docs/docs/RepeatLatentBatch/ar.md index eae30347d..07b60c521 100644 --- a/comfyui_embedded_docs/docs/RepeatLatentBatch/ar.md +++ b/comfyui_embedded_docs/docs/RepeatLatentBatch/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `latent` | `LATENT` | المخرجات هي نسخة معدلة من التمثيلات الكامنة المدخلة، تم تكرارها وفقًا للعدد المحدد في 'amount'. قد تتضمن أقنعة ضوضاء مكررة وفهارس دُفعات معدلة، إذا كانت قابلة للتطبيق. | \ No newline at end of file +| `latent` | `LATENT` | المخرجات هي نسخة معدلة من التمثيلات الكامنة المدخلة، تم تكرارها وفقًا للعدد المحدد في 'amount'. قد تتضمن أقنعة ضوضاء مكررة وفهارس دُفعات معدلة، إذا كانت قابلة للتطبيق. | diff --git a/comfyui_embedded_docs/docs/RepeatLatentBatch/pt-BR.md b/comfyui_embedded_docs/docs/RepeatLatentBatch/pt-BR.md index 78bcd1af2..afd44e002 100644 --- a/comfyui_embedded_docs/docs/RepeatLatentBatch/pt-BR.md +++ b/comfyui_embedded_docs/docs/RepeatLatentBatch/pt-BR.md @@ -13,4 +13,4 @@ O nó RepeatLatentBatch foi projetado para replicar um determinado lote de repre | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, replicadas de acordo com o 'amount' especificado. Pode incluir máscaras de ruído replicadas e índices de lote ajustados, se aplicável. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma versão modificada das representações latentes de entrada, replicadas de acordo com o 'amount' especificado. Pode incluir máscaras de ruído replicadas e índices de lote ajustados, se aplicável. | diff --git a/comfyui_embedded_docs/docs/RepeatLatentBatch/tr.md b/comfyui_embedded_docs/docs/RepeatLatentBatch/tr.md index ae9012745..0f2b87a46 100644 --- a/comfyui_embedded_docs/docs/RepeatLatentBatch/tr.md +++ b/comfyui_embedded_docs/docs/RepeatLatentBatch/tr.md @@ -13,4 +13,4 @@ RepeatLatentBatch düğümü, belirli sayıda gizli temsil grubunu çoğaltmak v | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin, belirtilen 'amount' değerine göre çoğaltılmış halidir. Uygulanabilir olduğu durumlarda, çoğaltılmış gürültü maskelerini ve ayarlanmış grup indekslerini içerebilir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, girdi olarak verilen gizli temsillerin, belirtilen 'amount' değerine göre çoğaltılmış halidir. Uygulanabilir olduğu durumlarda, çoğaltılmış gürültü maskelerini ve ayarlanmış grup indekslerini içerebilir. | diff --git a/comfyui_embedded_docs/docs/RepeatLatentBatch/zh-TW.md b/comfyui_embedded_docs/docs/RepeatLatentBatch/zh-TW.md index 3f0c3531f..e7cd440d7 100644 --- a/comfyui_embedded_docs/docs/RepeatLatentBatch/zh-TW.md +++ b/comfyui_embedded_docs/docs/RepeatLatentBatch/zh-TW.md @@ -13,4 +13,4 @@ RepeatLatentBatch 節點旨在將指定的潛在表示批次複製特定次數 | 參數名稱 | 資料類型 | 參數說明 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出是根據指定重複次數複製後的輸入潛在表示修改版本,可能包含複製的雜訊遮罩和調整後的批次索引(如適用)。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是根據指定重複次數複製後的輸入潛在表示修改版本,可能包含複製的雜訊遮罩和調整後的批次索引(如適用)。 | diff --git a/comfyui_embedded_docs/docs/ReplaceText/ar.md b/comfyui_embedded_docs/docs/ReplaceText/ar.md index a527bae81..fca413ad3 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/ar.md +++ b/comfyui_embedded_docs/docs/ReplaceText/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص المعالج بعد استبدال جميع تكرارات نص `find` بنص `replace`. | \ No newline at end of file +| `text` | STRING | النص المعالج بعد استبدال جميع تكرارات نص `find` بنص `replace`. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/en.md b/comfyui_embedded_docs/docs/ReplaceText/en.md index f79c53b1d..bea73f2ec 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/en.md +++ b/comfyui_embedded_docs/docs/ReplaceText/en.md @@ -14,4 +14,4 @@ The Replace Text node performs a simple text substitution. It searches for a spe | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The processed text with all occurrences of the `find` text replaced by the `replace` text. | \ No newline at end of file +| `text` | STRING | The processed text with all occurrences of the `find` text replaced by the `replace` text. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/es.md b/comfyui_embedded_docs/docs/ReplaceText/es.md index e1e2d65af..13c2d5b84 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/es.md +++ b/comfyui_embedded_docs/docs/ReplaceText/es.md @@ -14,4 +14,4 @@ El nodo Replace Text realiza una sustitución de texto simple. Busca un fragment | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto procesado, con todas las ocurrencias del texto `find` reemplazadas por el texto `replace`. | \ No newline at end of file +| `text` | STRING | El texto procesado, con todas las ocurrencias del texto `find` reemplazadas por el texto `replace`. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/fr.md b/comfyui_embedded_docs/docs/ReplaceText/fr.md index b54c968af..f14913666 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/fr.md +++ b/comfyui_embedded_docs/docs/ReplaceText/fr.md @@ -14,4 +14,4 @@ Le nœud Replace Text effectue une substitution de texte simple. Il recherche un | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte traité, avec toutes les occurrences du texte `find` remplacées par le texte `replace`. | \ No newline at end of file +| `text` | STRING | Le texte traité, avec toutes les occurrences du texte `find` remplacées par le texte `replace`. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/ja.md b/comfyui_embedded_docs/docs/ReplaceText/ja.md index 64bcb41a8..b5e224577 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/ja.md +++ b/comfyui_embedded_docs/docs/ReplaceText/ja.md @@ -14,4 +14,4 @@ Replace Textノードは、単純なテキスト置換を実行します。入 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | `find`テキストのすべての出現箇所が`replace`テキストに置き換えられた、処理済みのテキストです。 | \ No newline at end of file +| `text` | STRING | `find`テキストのすべての出現箇所が`replace`テキストに置き換えられた、処理済みのテキストです。 | diff --git a/comfyui_embedded_docs/docs/ReplaceText/ko.md b/comfyui_embedded_docs/docs/ReplaceText/ko.md index 3c2a57570..91986c1fd 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/ko.md +++ b/comfyui_embedded_docs/docs/ReplaceText/ko.md @@ -14,4 +14,4 @@ Replace Text 노드는 간단한 텍스트 치환을 수행합니다. 입력 텍 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | `find` 텍스트의 모든 발생이 `replace` 텍스트로 교체된 처리된 텍스트입니다. | \ No newline at end of file +| `text` | STRING | `find` 텍스트의 모든 발생이 `replace` 텍스트로 교체된 처리된 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/pt-BR.md b/comfyui_embedded_docs/docs/ReplaceText/pt-BR.md index edef5a0d8..7bedf4d6d 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/pt-BR.md +++ b/comfyui_embedded_docs/docs/ReplaceText/pt-BR.md @@ -14,4 +14,4 @@ O nó Replace Text realiza uma substituição simples de texto. Ele procura por | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto processado, com todas as ocorrências do texto `find` substituídas pelo texto `replace`. | \ No newline at end of file +| `text` | STRING | O texto processado, com todas as ocorrências do texto `find` substituídas pelo texto `replace`. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/ru.md b/comfyui_embedded_docs/docs/ReplaceText/ru.md index 6331da6e5..45fc0969d 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/ru.md +++ b/comfyui_embedded_docs/docs/ReplaceText/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Обработанный текст, в котором все вхождения текста `find` заменены на текст `replace`. | \ No newline at end of file +| `text` | STRING | Обработанный текст, в котором все вхождения текста `find` заменены на текст `replace`. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/tr.md b/comfyui_embedded_docs/docs/ReplaceText/tr.md index 9f1de7a23..687edc82a 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/tr.md +++ b/comfyui_embedded_docs/docs/ReplaceText/tr.md @@ -14,4 +14,4 @@ Replace Text düğümü basit bir metin değiştirme işlemi gerçekleştirir. G | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | `find` metninin tüm geçtiği yerlerin `replace` metniyle değiştirildiği işlenmiş metin. | \ No newline at end of file +| `text` | STRING | `find` metninin tüm geçtiği yerlerin `replace` metniyle değiştirildiği işlenmiş metin. | diff --git a/comfyui_embedded_docs/docs/ReplaceText/zh-TW.md b/comfyui_embedded_docs/docs/ReplaceText/zh-TW.md index a0e7850f3..2f716bc65 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/zh-TW.md +++ b/comfyui_embedded_docs/docs/ReplaceText/zh-TW.md @@ -14,4 +14,4 @@ Replace Text 節點執行簡單的文字替換功能。它會在輸入文字中 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 處理後的文字,其中所有 `find` 文字均已被 `replace` 文字替換。 | \ No newline at end of file +| `text` | STRING | 處理後的文字,其中所有 `find` 文字均已被 `replace` 文字替換。 | diff --git a/comfyui_embedded_docs/docs/ReplaceText/zh.md b/comfyui_embedded_docs/docs/ReplaceText/zh.md index 2c23c59f9..a3236c1d3 100644 --- a/comfyui_embedded_docs/docs/ReplaceText/zh.md +++ b/comfyui_embedded_docs/docs/ReplaceText/zh.md @@ -14,4 +14,4 @@ Replace Text 节点执行简单的文本替换操作。它在输入文本中搜 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 处理后的文本,其中所有 `find` 文本的匹配项都已替换为 `replace` 文本。 | \ No newline at end of file +| `text` | STRING | 处理后的文本,其中所有 `find` 文本的匹配项都已替换为 `replace` 文本。 | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ar.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ar.md index 37e53370d..cacbeb35f 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ar.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ar.md @@ -9,11 +9,12 @@ | `index` | INT | لا | -MAX_RESOLUTION إلى MAX_RESOLUTION | فهرس إطار الكمون البدائي في الكمون الهدف حيث سيتم وضع إطارات الكمون المصدر. تحسب القيم السالبة من النهاية (القيمة الافتراضية: 0). | **القيود:** -* يجب أن يكون `index` ضمن حدود عدد إطارات الكمون الهدف. إذا لم يكن كذلك، يتم تسجيل تحذير وإرجاع الهدف دون تغيير. -* يجب أن تتلاءم إطارات الكمون المصدر ضمن إطارات الكمون الهدف بدءًا من `index` المحدد. إذا لم تتلاءم، يتم تسجيل تحذير وإرجاع الهدف دون تغيير. + +* يجب أن يكون `index` ضمن حدود عدد إطارات الكمون الهدف. إذا لم يكن كذلك، يتم تسجيل تحذير وإرجاع الهدف دون تغيير. +* يجب أن تتلاءم إطارات الكمون المصدر ضمن إطارات الكمون الهدف بدءًا من `index` المحدد. إذا لم تتلاءم، يتم تسجيل تحذير وإرجاع الهدف دون تغيير. ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | LATENT | فيديو الكمون الناتج بعد عملية استبدال الإطارات. | \ No newline at end of file +| `output` | LATENT | فيديو الكمون الناتج بعد عملية استبدال الإطارات. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/en.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/en.md index a8f2b0f53..4c4fc45b2 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/en.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/en.md @@ -11,11 +11,12 @@ The ReplaceVideoLatentFrames node inserts frames from a source latent video into | `index` | INT | No | -MAX_RESOLUTION to MAX_RESOLUTION | The starting latent frame index in the destination latent where the source latent frames will be placed. Negative values count from the end (default: 0). | **Constraints:** -* The `index` must be within the bounds of the destination latent's frame count. If it is not, a warning is logged and the destination is returned unchanged. -* The source latent frames must fit within the destination latent frames starting from the specified `index`. If they do not, a warning is logged and the destination is returned unchanged. + +* The `index` must be within the bounds of the destination latent's frame count. If it is not, a warning is logged and the destination is returned unchanged. +* The source latent frames must fit within the destination latent frames starting from the specified `index`. If they do not, a warning is logged and the destination is returned unchanged. ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | LATENT | The resulting latent video after the frame replacement operation. | \ No newline at end of file +| `output` | LATENT | The resulting latent video after the frame replacement operation. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/es.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/es.md index e7a8c087b..55b6707cf 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/es.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/es.md @@ -11,11 +11,12 @@ El nodo ReplaceVideoLatentFrames inserta fotogramas de un vídeo latente fuente | `index` | INT | No | -MAX_RESOLUTION a MAX_RESOLUTION | El índice de fotograma latente inicial en el latente destino donde se colocarán los fotogramas del latente fuente. Los valores negativos cuentan desde el final (por defecto: 0). | **Restricciones:** -* El `index` debe estar dentro de los límites del número de fotogramas del latente destino. Si no lo está, se registra una advertencia y se devuelve el destino sin cambios. -* Los fotogramas del latente fuente deben caber dentro de los fotogramas del latente destino a partir del `index` especificado. Si no es así, se registra una advertencia y se devuelve el destino sin cambios. + +* El `index` debe estar dentro de los límites del número de fotogramas del latente destino. Si no lo está, se registra una advertencia y se devuelve el destino sin cambios. +* Los fotogramas del latente fuente deben caber dentro de los fotogramas del latente destino a partir del `index` especificado. Si no es así, se registra una advertencia y se devuelve el destino sin cambios. ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | LATENT | El vídeo latente resultante tras la operación de reemplazo de fotogramas. | \ No newline at end of file +| `output` | LATENT | El vídeo latente resultante tras la operación de reemplazo de fotogramas. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/fr.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/fr.md index 2e12f57dd..fe8e6f2fa 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/fr.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/fr.md @@ -13,11 +13,12 @@ Le nœud ReplaceVideoLatentFrames insère des trames d'une vidéo latente source | `index` | INT | Non | -MAX_RESOLUTION à MAX_RESOLUTION | L'index de la trame latente de départ dans la destination latente où les trames de la source latente seront placées. Les valeurs négatives comptent à partir de la fin (par défaut : 0). | **Contraintes :** -* L'`index` doit être dans les limites du nombre de trames de la destination latente. Si ce n'est pas le cas, un avertissement est enregistré et la destination est renvoyée inchangée. -* Les trames de la source latente doivent pouvoir tenir dans les trames de la destination latente à partir de l'`index` spécifié. Si ce n'est pas le cas, un avertissement est enregistré et la destination est renvoyée inchangée. + +* L'`index` doit être dans les limites du nombre de trames de la destination latente. Si ce n'est pas le cas, un avertissement est enregistré et la destination est renvoyée inchangée. +* Les trames de la source latente doivent pouvoir tenir dans les trames de la destination latente à partir de l'`index` spécifié. Si ce n'est pas le cas, un avertissement est enregistré et la destination est renvoyée inchangée. ## Sorties | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | LATENT | La vidéo latente résultante après l'opération de remplacement de trames. | \ No newline at end of file +| `output` | LATENT | La vidéo latente résultante après l'opération de remplacement de trames. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ja.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ja.md index 9007bea8e..00ca72bbd 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ja.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ja.md @@ -11,11 +11,12 @@ ReplaceVideoLatentFramesノードは、指定されたフレームインデッ | `index` | INT | いいえ | -MAX_RESOLUTION から MAX_RESOLUTION | ソース潜在動画のフレームが配置される、宛先潜在動画内の開始潜在フレームインデックスです。負の値は末尾から数えます(デフォルト: 0)。 | **制約事項:** -* `index`は、宛先潜在動画のフレーム数の範囲内である必要があります。範囲外の場合、警告が記録され、宛先は変更されずに返されます。 -* ソース潜在動画のフレームは、指定された`index`から始まる宛先潜在動画のフレーム内に収まる必要があります。収まらない場合、警告が記録され、宛先は変更されずに返されます。 + +* `index`は、宛先潜在動画のフレーム数の範囲内である必要があります。範囲外の場合、警告が記録され、宛先は変更されずに返されます。 +* ソース潜在動画のフレームは、指定された`index`から始まる宛先潜在動画のフレーム内に収まる必要があります。収まらない場合、警告が記録され、宛先は変更されずに返されます。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | LATENT | フレーム置換操作後の結果となる潜在動画です。 | \ No newline at end of file +| `output` | LATENT | フレーム置換操作後の結果となる潜在動画です。 | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ko.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ko.md index 1b85a14ec..0dfc4dba9 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ko.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ko.md @@ -11,11 +11,12 @@ ReplaceVideoLatentFrames 노드는 지정된 프레임 인덱스부터 시작하 | `index` | INT | 아니요 | -MAX_RESOLUTION ~ MAX_RESOLUTION | 소스 잠재 비디오 프레임이 배치될 대상 잠재 비디오 내의 시작 잠재 프레임 인덱스입니다. 음수 값은 끝에서부터 역순으로 계산됩니다 (기본값: 0). | **제약 조건:** -* `index`는 대상 잠재 비디오의 프레임 수 범위 내에 있어야 합니다. 그렇지 않으면 경고가 기록되고 대상 비디오가 변경되지 않은 상태로 반환됩니다. -* 지정된 `index`부터 시작하여 소스 잠재 비디오 프레임이 대상 잠재 비디오 프레임 내에 맞아야 합니다. 그렇지 않으면 경고가 기록되고 대상 비디오가 변경되지 않은 상태로 반환됩니다. + +* `index`는 대상 잠재 비디오의 프레임 수 범위 내에 있어야 합니다. 그렇지 않으면 경고가 기록되고 대상 비디오가 변경되지 않은 상태로 반환됩니다. +* 지정된 `index`부터 시작하여 소스 잠재 비디오 프레임이 대상 잠재 비디오 프레임 내에 맞아야 합니다. 그렇지 않으면 경고가 기록되고 대상 비디오가 변경되지 않은 상태로 반환됩니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | LATENT | 프레임 교체 작업 후의 결과 잠재 비디오입니다. | \ No newline at end of file +| `output` | LATENT | 프레임 교체 작업 후의 결과 잠재 비디오입니다. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/pt-BR.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/pt-BR.md index 226447d19..5de93e6e5 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/pt-BR.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/pt-BR.md @@ -11,11 +11,12 @@ O nó ReplaceVideoLatentFrames insere quadros de um vídeo latente de origem em | `index` | INT | Não | -MAX_RESOLUTION a MAX_RESOLUTION | O índice do quadro latente inicial no latente de destino onde os quadros do latente de origem serão colocados. Valores negativos contam a partir do final (padrão: 0). | **Restrições:** -* O `index` deve estar dentro dos limites da contagem de quadros do latente de destino. Caso contrário, um aviso é registrado e o destino é retornado inalterado. -* Os quadros do latente de origem devem caber dentro dos quadros do latente de destino a partir do `index` especificado. Caso contrário, um aviso é registrado e o destino é retornado inalterado. + +* O `index` deve estar dentro dos limites da contagem de quadros do latente de destino. Caso contrário, um aviso é registrado e o destino é retornado inalterado. +* Os quadros do latente de origem devem caber dentro dos quadros do latente de destino a partir do `index` especificado. Caso contrário, um aviso é registrado e o destino é retornado inalterado. ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | O vídeo latente resultante após a operação de substituição de quadros. | \ No newline at end of file +| `output` | LATENT | O vídeo latente resultante após a operação de substituição de quadros. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ru.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ru.md index 1cb7fb2a9..9e6fe3314 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ru.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/ru.md @@ -11,11 +11,12 @@ | `index` | INT | Нет | -MAX_RESOLUTION до MAX_RESOLUTION | Начальный индекс латентного кадра в целевом латентном видеопотоке, с которого будут размещены кадры исходного латентного видеопотока. Отрицательные значения отсчитываются с конца (по умолчанию: 0). | **Ограничения:** -* Параметр `index` должен находиться в пределах количества кадров целевого латентного видеопотока. Если это не так, записывается предупреждение и целевой видеопоток возвращается без изменений. -* Кадры исходного латентного видеопотока должны помещаться в пределах кадров целевого латентного видеопотока, начиная с указанного `index`. Если это не так, записывается предупреждение и целевой видеопоток возвращается без изменений. + +* Параметр `index` должен находиться в пределах количества кадров целевого латентного видеопотока. Если это не так, записывается предупреждение и целевой видеопоток возвращается без изменений. +* Кадры исходного латентного видеопотока должны помещаться в пределах кадров целевого латентного видеопотока, начиная с указанного `index`. Если это не так, записывается предупреждение и целевой видеопоток возвращается без изменений. ## Выходные данные | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | LATENT | Результирующий латентный видеопоток после операции замены кадров. | \ No newline at end of file +| `output` | LATENT | Результирующий латентный видеопоток после операции замены кадров. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/tr.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/tr.md index 0958c068d..39a02223f 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/tr.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/tr.md @@ -11,11 +11,12 @@ ReplaceVideoLatentFrames düğümü, bir kaynak gizli videodan alınan kareleri, | `index` | INT | Hayır | -MAX_RESOLUTION to MAX_RESOLUTION | Kaynak gizli video karelerinin yerleştirileceği, hedef gizli videodaki başlangıç gizli kare indeksi. Negatif değerler sondan sayılır (varsayılan: 0). | **Kısıtlamalar:** -* `index`, hedef gizli videonun kare sayısı sınırları içinde olmalıdır. Değilse, bir uyarı kaydedilir ve hedef video değiştirilmeden döndürülür. -* Kaynak gizli video kareleri, belirtilen `index`'ten başlayarak hedef gizli video kareleri içine sığmalıdır. Sığmazsa, bir uyarı kaydedilir ve hedef video değiştirilmeden döndürülür. + +* `index`, hedef gizli videonun kare sayısı sınırları içinde olmalıdır. Değilse, bir uyarı kaydedilir ve hedef video değiştirilmeden döndürülür. +* Kaynak gizli video kareleri, belirtilen `index`'ten başlayarak hedef gizli video kareleri içine sığmalıdır. Sığmazsa, bir uyarı kaydedilir ve hedef video değiştirilmeden döndürülür. ## Çıkışlar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | Kare değiştirme işlemi sonucunda elde edilen gizli video. | \ No newline at end of file +| `output` | LATENT | Kare değiştirme işlemi sonucunda elde edilen gizli video. | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh-TW.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh-TW.md index fb297d038..0ea1aeeca 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh-TW.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh-TW.md @@ -11,11 +11,12 @@ ReplaceVideoLatentFrames 節點會將來源潛變數影片中的幀插入到目 | `index` | INT | 否 | -MAX_RESOLUTION 到 MAX_RESOLUTION | 在目標潛變數影片中,來源潛變數幀將被放置的起始潛變數幀索引。負數表示從末尾開始計數(預設值:0)。 | **限制條件:** -* `index` 必須在目標潛變數影片的幀數範圍內。如果不是,將記錄警告並返回未更改的目標潛變數。 -* 從指定的 `index` 開始,來源潛變數幀必須能夠放入目標潛變數幀中。如果不能,將記錄警告並返回未更改的目標潛變數。 + +* `index` 必須在目標潛變數影片的幀數範圍內。如果不是,將記錄警告並返回未更改的目標潛變數。 +* 從指定的 `index` 開始,來源潛變數幀必須能夠放入目標潛變數幀中。如果不能,將記錄警告並返回未更改的目標潛變數。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 幀替換操作後產生的潛變數影片。 | \ No newline at end of file +| `output` | LATENT | 幀替換操作後產生的潛變數影片。 | diff --git a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh.md b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh.md index fb082556f..28c84e48c 100644 --- a/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh.md +++ b/comfyui_embedded_docs/docs/ReplaceVideoLatentFrames/zh.md @@ -11,11 +11,12 @@ ReplaceVideoLatentFrames 节点将源潜在视频中的帧插入到目标潜在 | `index` | INT | 否 | -MAX_RESOLUTION 到 MAX_RESOLUTION | 目标潜在视频中开始放置源潜在视频帧的起始潜在帧索引。负值表示从末尾开始计数(默认值:0)。 | **约束条件:** -* `index` 必须在目标潜在视频的帧数范围内。如果超出范围,将记录警告并原样返回目标视频。 -* 从指定的 `index` 开始,源潜在视频的帧必须能完全放入目标潜在视频的帧中。如果不能,将记录警告并原样返回目标视频。 + +* `index` 必须在目标潜在视频的帧数范围内。如果超出范围,将记录警告并原样返回目标视频。 +* 从指定的 `index` 开始,源潜在视频的帧必须能完全放入目标潜在视频的帧中。如果不能,将记录警告并原样返回目标视频。 ## 输出结果 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 执行帧替换操作后得到的潜在视频。 | \ No newline at end of file +| `output` | LATENT | 执行帧替换操作后得到的潜在视频。 | diff --git a/comfyui_embedded_docs/docs/Reroute/ar.md b/comfyui_embedded_docs/docs/Reroute/ar.md index b145643ef..c5dbd3596 100644 --- a/comfyui_embedded_docs/docs/Reroute/ar.md +++ b/comfyui_embedded_docs/docs/Reroute/ar.md @@ -12,4 +12,4 @@ | تعيين عمودي | ضبط اتجاه التوصيل للعقدة إلى الوضع العمودي | | تعيين أفقي | ضبط اتجاه التوصيل للعقدة إلى الوضع الأفقي | -عندما يكون منطق التوصيل طويلاً ومعقدًا جدًا، وتريد ترتيب الواجهة، يمكنك إدراج عقدة ```Reroute``` بين نقطتي اتصال. مدخلات ومخرجات هذه العقدة غير مقيدة بنوع محدد، والنمط الافتراضي هو الأفقي. يمكنك تغيير اتجاه التوصيل إلى العمودي من خلال القائمة اليمنى. \ No newline at end of file +عندما يكون منطق التوصيل طويلاً ومعقدًا جدًا، وتريد ترتيب الواجهة، يمكنك إدراج عقدة ```Reroute``` بين نقطتي اتصال. مدخلات ومخرجات هذه العقدة غير مقيدة بنوع محدد، والنمط الافتراضي هو الأفقي. يمكنك تغيير اتجاه التوصيل إلى العمودي من خلال القائمة اليمنى. diff --git a/comfyui_embedded_docs/docs/Reroute/pt-BR.md b/comfyui_embedded_docs/docs/Reroute/pt-BR.md index 1bb5130dc..fee8073a4 100644 --- a/comfyui_embedded_docs/docs/Reroute/pt-BR.md +++ b/comfyui_embedded_docs/docs/Reroute/pt-BR.md @@ -12,4 +12,4 @@ Propósito do Nó: Usado principalmente para organizar a lógica de linhas de co | Set Vertical | Define a direção da fiação do nó como vertical | | Set Horizontal | Define a direção da fiação do nó como horizontal | -Quando a lógica de fiação está muito longa e complexa, e você deseja organizar a interface, pode inserir um nó ```Reroute``` entre dois pontos de conexão. A entrada e a saída deste nó não possuem restrição de tipo, e o estilo padrão é horizontal. Você pode alterar a direção da fiação para vertical através do menu de clique com o botão direito. \ No newline at end of file +Quando a lógica de fiação está muito longa e complexa, e você deseja organizar a interface, pode inserir um nó ```Reroute``` entre dois pontos de conexão. A entrada e a saída deste nó não possuem restrição de tipo, e o estilo padrão é horizontal. Você pode alterar a direção da fiação para vertical através do menu de clique com o botão direito. diff --git a/comfyui_embedded_docs/docs/Reroute/tr.md b/comfyui_embedded_docs/docs/Reroute/tr.md index f82de1f99..106307261 100644 --- a/comfyui_embedded_docs/docs/Reroute/tr.md +++ b/comfyui_embedded_docs/docs/Reroute/tr.md @@ -12,4 +12,4 @@ Düğüm Amacı: Esas olarak, ComfyUI iş akışında aşırı uzun bağlantı h | Dikey Ayarla | Düğümün bağlantı yönünü dikey olarak ayarlar | | Yatay Ayarla | Düğümün bağlantı yönünü yatay olarak ayarlar | -Bağlantı mantığınız çok uzun ve karmaşıksa ve arayüzü düzenlemek istiyorsanız, iki bağlantı noktası arasına bir ```Reroute``` düğümü ekleyebilirsiniz. Bu düğümün giriş ve çıkışı tür kısıtlamasına tabi değildir ve varsayılan stili yataydır. Bağlantı yönünü sağ tıklama menüsü üzerinden dikey olarak değiştirebilirsiniz. \ No newline at end of file +Bağlantı mantığınız çok uzun ve karmaşıksa ve arayüzü düzenlemek istiyorsanız, iki bağlantı noktası arasına bir ```Reroute``` düğümü ekleyebilirsiniz. Bu düğümün giriş ve çıkışı tür kısıtlamasına tabi değildir ve varsayılan stili yataydır. Bağlantı yönünü sağ tıklama menüsü üzerinden dikey olarak değiştirebilirsiniz. diff --git a/comfyui_embedded_docs/docs/Reroute/zh-TW.md b/comfyui_embedded_docs/docs/Reroute/zh-TW.md index e2572d792..a0fa749c2 100644 --- a/comfyui_embedded_docs/docs/Reroute/zh-TW.md +++ b/comfyui_embedded_docs/docs/Reroute/zh-TW.md @@ -12,4 +12,4 @@ | 設定垂直 | 設定節點的佈線方向為垂直 | | 設定水平 | 設定節點的佈線方向為水平 | -當您的佈線邏輯過長且複雜,想要整理介面時,可以在兩個連接點之間插入一個 ```Reroute``` 節點。此節點的輸入和輸出不受類型限制,預設樣式為水平方向。您可以透過右鍵選單將佈線方向更改為垂直。 \ No newline at end of file +當您的佈線邏輯過長且複雜,想要整理介面時,可以在兩個連接點之間插入一個 ```Reroute``` 節點。此節點的輸入和輸出不受類型限制,預設樣式為水平方向。您可以透過右鍵選單將佈線方向更改為垂直。 diff --git a/comfyui_embedded_docs/docs/RescaleCfg/ar.md b/comfyui_embedded_docs/docs/RescaleCfg/ar.md index 615fc66d9..71b6a60b5 100644 --- a/comfyui_embedded_docs/docs/RescaleCfg/ar.md +++ b/comfyui_embedded_docs/docs/RescaleCfg/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `النموذج` | MODEL | النموذج المعدل بمقاييس تكييف وعدم تكييف معدلة. من المتوقع أن ينتج هذا النموذج مخرجات ذات خصائص محسنة محتملة بسبب إعادة القياس المطبقة. | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل بمقاييس تكييف وعدم تكييف معدلة. من المتوقع أن ينتج هذا النموذج مخرجات ذات خصائص محسنة محتملة بسبب إعادة القياس المطبقة. | diff --git a/comfyui_embedded_docs/docs/RescaleCfg/pt-BR.md b/comfyui_embedded_docs/docs/RescaleCfg/pt-BR.md index 356362e67..4ba6dd4d0 100644 --- a/comfyui_embedded_docs/docs/RescaleCfg/pt-BR.md +++ b/comfyui_embedded_docs/docs/RescaleCfg/pt-BR.md @@ -13,4 +13,4 @@ O nó RescaleCFG foi projetado para ajustar as escalas de condicionamento e não | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | O modelo modificado com as escalas de condicionamento e não condicionamento ajustadas. Espera-se que este modelo produza saídas com características potencialmente aprimoradas devido ao reescalonamento aplicado. | \ No newline at end of file +| `model` | MODEL | O modelo modificado com as escalas de condicionamento e não condicionamento ajustadas. Espera-se que este modelo produza saídas com características potencialmente aprimoradas devido ao reescalonamento aplicado. | diff --git a/comfyui_embedded_docs/docs/RescaleCfg/tr.md b/comfyui_embedded_docs/docs/RescaleCfg/tr.md index 8a939cd86..c44d134fe 100644 --- a/comfyui_embedded_docs/docs/RescaleCfg/tr.md +++ b/comfyui_embedded_docs/docs/RescaleCfg/tr.md @@ -13,4 +13,4 @@ RescaleCFG düğümü, bir modelin çıktısındaki koşullandırma ve koşulsuz | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | Koşullandırma ve koşulsuzlandırma ölçekleri ayarlanmış, değiştirilmiş model. Uygulanan yeniden ölçeklendirme nedeniyle, bu modelin potansiyel olarak gelişmiş özelliklere sahip çıktılar üretmesi beklenir. | \ No newline at end of file +| `model` | MODEL | Koşullandırma ve koşulsuzlandırma ölçekleri ayarlanmış, değiştirilmiş model. Uygulanan yeniden ölçeklendirme nedeniyle, bu modelin potansiyel olarak gelişmiş özelliklere sahip çıktılar üretmesi beklenir. | diff --git a/comfyui_embedded_docs/docs/RescaleCfg/zh-TW.md b/comfyui_embedded_docs/docs/RescaleCfg/zh-TW.md index c1ad5fe9b..739ebcf23 100644 --- a/comfyui_embedded_docs/docs/RescaleCfg/zh-TW.md +++ b/comfyui_embedded_docs/docs/RescaleCfg/zh-TW.md @@ -13,4 +13,4 @@ RescaleCFG 節點旨在根據指定的乘數調整模型輸出的條件化與非 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `model` | MODEL | 經過調整條件化與非條件化比例後的修改模型。由於應用了重新縮放,此模型預期能產生具有潛在增強特性的輸出。 | \ No newline at end of file +| `model` | MODEL | 經過調整條件化與非條件化比例後的修改模型。由於應用了重新縮放,此模型預期能產生具有潛在增強特性的輸出。 | diff --git a/comfyui_embedded_docs/docs/ResizeAndPadImage/ar.md b/comfyui_embedded_docs/docs/ResizeAndPadImage/ar.md index 3367f2e2f..e0250b793 100644 --- a/comfyui_embedded_docs/docs/ResizeAndPadImage/ar.md +++ b/comfyui_embedded_docs/docs/ResizeAndPadImage/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة بعد تغيير حجمها وإضافة الحشوة | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة بعد تغيير حجمها وإضافة الحشوة | diff --git a/comfyui_embedded_docs/docs/ResizeAndPadImage/pt-BR.md b/comfyui_embedded_docs/docs/ResizeAndPadImage/pt-BR.md index e2381224b..438099f73 100644 --- a/comfyui_embedded_docs/docs/ResizeAndPadImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/ResizeAndPadImage/pt-BR.md @@ -16,4 +16,4 @@ O nó ResizeAndPadImage redimensiona uma imagem para caber dentro de dimensões | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída redimensionada e com preenchimento | \ No newline at end of file +| `image` | IMAGE | A imagem de saída redimensionada e com preenchimento | diff --git a/comfyui_embedded_docs/docs/ResizeAndPadImage/tr.md b/comfyui_embedded_docs/docs/ResizeAndPadImage/tr.md index 5e6dae51d..5a9b45f76 100644 --- a/comfyui_embedded_docs/docs/ResizeAndPadImage/tr.md +++ b/comfyui_embedded_docs/docs/ResizeAndPadImage/tr.md @@ -16,4 +16,4 @@ ResizeAndPadImage düğümü, bir görüntüyü orijinal en-boy oranını koruya | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Yeniden boyutlandırılmış ve dolgu eklenmiş çıktı görüntüsü | \ No newline at end of file +| `image` | IMAGE | Yeniden boyutlandırılmış ve dolgu eklenmiş çıktı görüntüsü | diff --git a/comfyui_embedded_docs/docs/ResizeAndPadImage/zh-TW.md b/comfyui_embedded_docs/docs/ResizeAndPadImage/zh-TW.md index 06d8ca260..872d3e02e 100644 --- a/comfyui_embedded_docs/docs/ResizeAndPadImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/ResizeAndPadImage/zh-TW.md @@ -16,4 +16,4 @@ ResizeAndPadImage 節點會將圖片調整大小以符合指定尺寸,同時 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 經過調整大小和填充處理後的輸出圖片 | \ No newline at end of file +| `image` | IMAGE | 經過調整大小和填充處理後的輸出圖片 | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ar.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ar.md index 32428e6ae..449302de2 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ar.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ar.md @@ -24,4 +24,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `resized` | IMAGE أو MASK | الصورة أو القناع الذي تم تغيير حجمه، مطابقًا لنوع بيانات الإدخال. | \ No newline at end of file +| `resized` | IMAGE أو MASK | الصورة أو القناع الذي تم تغيير حجمه، مطابقًا لنوع بيانات الإدخال. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/en.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/en.md index 9c2096488..aab2eafa9 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/en.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/en.md @@ -24,4 +24,4 @@ The Resize Image/Mask node provides multiple methods to change the dimensions of | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `resized` | IMAGE or MASK | The resized image or mask, matching the data type of the input. | \ No newline at end of file +| `resized` | IMAGE or MASK | The resized image or mask, matching the data type of the input. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/es.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/es.md index 0f8fee822..1732d08b7 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/es.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/es.md @@ -24,4 +24,4 @@ El nodo Redimensionar Imagen/Máscara proporciona múltiples métodos para cambi | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `resized` | IMAGE o MASK | La imagen o máscara redimensionada, que coincide con el tipo de dato de la entrada. | \ No newline at end of file +| `resized` | IMAGE o MASK | La imagen o máscara redimensionada, que coincide con el tipo de dato de la entrada. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/fr.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/fr.md index ad2768de5..d512ee1a8 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/fr.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/fr.md @@ -24,4 +24,4 @@ Le nœud Redimensionner Image/Masque propose plusieurs méthodes pour modifier l | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `resized` | IMAGE ou MASK | L'image ou le masque redimensionné, correspondant au type de données de l'entrée. | \ No newline at end of file +| `resized` | IMAGE ou MASK | L'image ou le masque redimensionné, correspondant au type de données de l'entrée. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ja.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ja.md index 589c730b8..4cd3ba320 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ja.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ja.md @@ -24,4 +24,4 @@ Resize Image/Maskノードは、入力画像またはマスクの寸法を変更 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `resized` | IMAGE または MASK | リサイズされた画像またはマスク。入力のデータ型と一致します。 | \ No newline at end of file +| `resized` | IMAGE または MASK | リサイズされた画像またはマスク。入力のデータ型と一致します。 | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ko.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ko.md index 999484a44..da4c52af3 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ko.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ko.md @@ -24,4 +24,4 @@ Resize Image/Mask 노드는 입력 이미지나 마스크의 크기를 변경하 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `resized` | IMAGE 또는 MASK | 크기가 조정된 이미지 또는 마스크로, 입력의 데이터 타입과 일치합니다. | \ No newline at end of file +| `resized` | IMAGE 또는 MASK | 크기가 조정된 이미지 또는 마스크로, 입력의 데이터 타입과 일치합니다. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/pt-BR.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/pt-BR.md index 9a4d04415..f44ea2355 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/pt-BR.md @@ -24,4 +24,4 @@ O nó Redimensionar Imagem/Máscara fornece múltiplos métodos para alterar as | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `resized` | IMAGE ou MASK | A imagem ou máscara redimensionada, correspondendo ao tipo de dados da entrada. | \ No newline at end of file +| `resized` | IMAGE ou MASK | A imagem ou máscara redimensionada, correspondendo ao tipo de dados da entrada. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ru.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ru.md index bc529c957..04bd61eea 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/ru.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/ru.md @@ -24,4 +24,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `resized` | IMAGE или MASK | Измененное по размеру изображение или маска, соответствующие типу данных входного параметра. | \ No newline at end of file +| `resized` | IMAGE или MASK | Измененное по размеру изображение или маска, соответствующие типу данных входного параметра. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/tr.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/tr.md index 7fddf2913..b2cb0600d 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/tr.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/tr.md @@ -24,4 +24,4 @@ Resize Image/Mask düğümü, bir giriş görüntüsünün veya maskesinin boyut | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `resized` | IMAGE veya MASK | Yeniden boyutlandırılmış görüntü veya maske, girişin veri türüyle eşleşir. | \ No newline at end of file +| `resized` | IMAGE veya MASK | Yeniden boyutlandırılmış görüntü veya maske, girişin veri türüyle eşleşir. | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh-TW.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh-TW.md index 2957415db..1ecb3afb3 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh-TW.md @@ -24,4 +24,4 @@ Resize Image/Mask 節點提供多種方法來改變輸入圖像或遮罩的尺 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `resized` | IMAGE 或 MASK | 調整尺寸後的圖像或遮罩,其資料類型與輸入相同。 | \ No newline at end of file +| `resized` | IMAGE 或 MASK | 調整尺寸後的圖像或遮罩,其資料類型與輸入相同。 | diff --git a/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh.md b/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh.md index a784eef65..f4e844837 100644 --- a/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh.md +++ b/comfyui_embedded_docs/docs/ResizeImageMaskNode/zh.md @@ -24,4 +24,4 @@ Resize Image/Mask 节点提供多种方法来改变输入图像或遮罩的尺 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `resized` | IMAGE 或 MASK | 调整尺寸后的图像或遮罩,其数据类型与输入一致。 | \ No newline at end of file +| `resized` | IMAGE 或 MASK | 调整尺寸后的图像或遮罩,其数据类型与输入一致。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ar.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ar.md index c7733878a..3c773009f 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ar.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة أو مجموعة الصور التي تم تغيير حجمها. سيكون للمخرج نفس عدد الصور الموجودة في المدخل، مع تطابق الحافة الأطول لكل صورة مع طول `longer_edge` المحدد. | \ No newline at end of file +| `image` | IMAGE | الصورة أو مجموعة الصور التي تم تغيير حجمها. سيكون للمخرج نفس عدد الصور الموجودة في المدخل، مع تطابق الحافة الأطول لكل صورة مع طول `longer_edge` المحدد. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/en.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/en.md index 96e1e7c04..2033b4d86 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/en.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/en.md @@ -13,4 +13,4 @@ The Resize Images by Longer Edge node resizes one or more images so that their l | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resized image or batch of images. The output will have the same number of images as the input, with each one's longer edge matching the specified `longer_edge` length. | \ No newline at end of file +| `image` | IMAGE | The resized image or batch of images. The output will have the same number of images as the input, with each one's longer edge matching the specified `longer_edge` length. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/es.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/es.md index eeeeda123..76676bf4b 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/es.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/es.md @@ -13,4 +13,4 @@ El nodo Redimensionar Imágenes por Borde Más Largo redimensiona una o más im | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen o lote de imágenes redimensionadas. La salida tendrá el mismo número de imágenes que la entrada, con el borde más largo de cada una coincidiendo con la longitud `longer_edge` especificada. | \ No newline at end of file +| `image` | IMAGE | La imagen o lote de imágenes redimensionadas. La salida tendrá el mismo número de imágenes que la entrada, con el borde más largo de cada una coincidiendo con la longitud `longer_edge` especificada. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/fr.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/fr.md index 3b851feef..a96618dfd 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/fr.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/fr.md @@ -13,4 +13,4 @@ Le nœud Redimensionner les Images par le Bord le Plus Long redimensionne une ou | Nom de Sortie | Type de Données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image ou le lot d'images redimensionné(s). La sortie contiendra le même nombre d'images que l'entrée, le bord le plus long de chacune correspondant à la longueur `longer_edge` spécifiée. | \ No newline at end of file +| `image` | IMAGE | L'image ou le lot d'images redimensionné(s). La sortie contiendra le même nombre d'images que l'entrée, le bord le plus long de chacune correspondant à la longueur `longer_edge` spécifiée. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ja.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ja.md index d2a649383..5c248a749 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ja.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ja.md @@ -13,4 +13,4 @@ Resize Images by Longer Edge ノードは、1つまたは複数の画像をリ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | リサイズされた画像または画像バッチです。出力される画像数は入力と同じで、各画像の長辺は指定された `longer_edge` の長さに一致します。 | \ No newline at end of file +| `image` | IMAGE | リサイズされた画像または画像バッチです。出力される画像数は入力と同じで、各画像の長辺は指定された `longer_edge` の長さに一致します。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ko.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ko.md index 4690677fb..2184d8801 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ko.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ko.md @@ -13,4 +13,4 @@ Resize Images by Longer Edge 노드는 하나 이상의 이미지를 가장 긴 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 크기가 조정된 이미지 또는 이미지 배치입니다. 출력은 입력과 동일한 수의 이미지를 가지며, 각 이미지의 더 긴 변은 지정된 `longer_edge` 길이와 일치합니다. | \ No newline at end of file +| `image` | IMAGE | 크기가 조정된 이미지 또는 이미지 배치입니다. 출력은 입력과 동일한 수의 이미지를 가지며, 각 이미지의 더 긴 변은 지정된 `longer_edge` 길이와 일치합니다. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/pt-BR.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/pt-BR.md index 1ab4025f6..3a5b5b84d 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/pt-BR.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/pt-BR.md @@ -13,4 +13,4 @@ O nó **Redimensionar Imagens pela Borda Mais Longa** redimensiona uma ou mais i | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem ou lote de imagens redimensionado. A saída terá o mesmo número de imagens que a entrada, com a borda mais longa de cada uma correspondendo ao comprimento `longer_edge` especificado. | \ No newline at end of file +| `image` | IMAGE | A imagem ou lote de imagens redimensionado. A saída terá o mesmo número de imagens que a entrada, com a borda mais longa de cada uma correspondendo ao comprimento `longer_edge` especificado. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ru.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ru.md index f32008e78..b7ecec426 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ru.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Изменённое по размеру изображение или пакет изображений. На выходе будет то же количество изображений, что и на входе, причём более длинный край каждого из них будет соответствовать указанной длине `longer_edge`. | \ No newline at end of file +| `image` | IMAGE | Изменённое по размеру изображение или пакет изображений. На выходе будет то же количество изображений, что и на входе, причём более длинный край каждого из них будет соответствовать указанной длине `longer_edge`. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/tr.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/tr.md index bcf3b20b4..946b4d67d 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/tr.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/tr.md @@ -13,4 +13,4 @@ Resize Images by Longer Edge düğümü, bir veya daha fazla görüntüyü, en u | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Yeniden boyutlandırılmış görüntü veya görüntü grubu. Çıktı, girdiyle aynı sayıda görüntü içerecek ve her birinin en uzun kenarı belirtilen `longer_edge` uzunluğuyla eşleşecektir. | \ No newline at end of file +| `image` | IMAGE | Yeniden boyutlandırılmış görüntü veya görüntü grubu. Çıktı, girdiyle aynı sayıda görüntü içerecek ve her birinin en uzun kenarı belirtilen `longer_edge` uzunluğuyla eşleşecektir. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh-TW.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh-TW.md index 02faa396b..ab22004d2 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh-TW.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 調整尺寸後的圖像或圖像批次。輸出的圖像數量與輸入相同,每個圖像的最長邊都會符合指定的 `longer_edge` 長度。 | \ No newline at end of file +| `image` | IMAGE | 調整尺寸後的圖像或圖像批次。輸出的圖像數量與輸入相同,每個圖像的最長邊都會符合指定的 `longer_edge` 長度。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh.md b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh.md index 2e87b902a..20c02ea94 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh.md @@ -1,15 +1,18 @@ > 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/ResizeImagesByLongerEdge/zh.md) ## 概述 + Resize Images by Longer Edge 节点通过调整图像尺寸,使其最长边与指定的目标长度匹配。该节点会自动判断图像的宽度或高度哪一边更长,并按比例缩放另一维度以保持原始宽高比。此功能适用于基于图像最大维度进行尺寸标准化的场景。 ## 输入 + | 参数 | 数据类型 | 必填 | 取值范围 | 描述 | |-----------|-----------|----------|-------|-------------| | `image` | IMAGE | 是 | - | 需要调整尺寸的输入图像或图像批次。 | | `longer_edge` | INT | 否 | 1 - 8192 | 最长边的目标长度。较短边将按比例缩放。(默认值:1024) | ## 输出 + | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 调整尺寸后的图像或图像批次。输出的图像数量与输入相同,每张图像的最长边均与指定的 `longer_edge` 长度匹配。 | \ No newline at end of file +| `image` | IMAGE | 调整尺寸后的图像或图像批次。输出的图像数量与输入相同,每张图像的最长边均与指定的 `longer_edge` 长度匹配。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ar.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ar.md index ee93dbd06..150bc9810 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ar.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة بعد تغيير حجمها. | \ No newline at end of file +| `image` | IMAGE | الصورة بعد تغيير حجمها. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/en.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/en.md index 0f72e35f6..41ce320db 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/en.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/en.md @@ -13,4 +13,4 @@ This node resizes images by adjusting their dimensions so that the length of the | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The resized image. | \ No newline at end of file +| `image` | IMAGE | The resized image. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/es.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/es.md index a6fc4ce6c..82c6c1976 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/es.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/es.md @@ -13,4 +13,4 @@ Este nodo redimensiona imágenes ajustando sus dimensiones para que la longitud | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen redimensionada. | \ No newline at end of file +| `image` | IMAGE | La imagen redimensionada. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/fr.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/fr.md index 420394d33..4ba45841d 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/fr.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/fr.md @@ -13,4 +13,4 @@ Ce nœud redimensionne les images en ajustant leurs dimensions de sorte que la l | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image redimensionnée. | \ No newline at end of file +| `image` | IMAGE | L'image redimensionnée. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ja.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ja.md index 6d8f92d6c..029a4927c 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ja.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ja.md @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | リサイズされた画像。 | \ No newline at end of file +| `image` | IMAGE | リサイズされた画像。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ko.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ko.md index 0f9e0754c..954f469fc 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ko.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 크기가 조정된 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 크기가 조정된 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/pt-BR.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/pt-BR.md index 30a623f24..82bb956be 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/pt-BR.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/pt-BR.md @@ -13,4 +13,4 @@ Este nó redimensiona imagens ajustando suas dimensões para que o comprimento d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem redimensionada. | \ No newline at end of file +| `image` | IMAGE | A imagem redimensionada. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ru.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ru.md index fc20705d6..d027d5b42 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ru.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Изображение с измененным размером. | \ No newline at end of file +| `image` | IMAGE | Изображение с измененным размером. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/tr.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/tr.md index 19abbb048..1dd48ea26 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/tr.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/tr.md @@ -13,4 +13,4 @@ Bu düğüm, görüntülerin boyutlarını, kısa kenarın uzunluğu belirtilen | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Yeniden boyutlandırılmış görüntü. | \ No newline at end of file +| `image` | IMAGE | Yeniden boyutlandırılmış görüntü. | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh-TW.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh-TW.md index dbf86c9d2..43735875b 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh-TW.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 調整大小後的圖像。 | \ No newline at end of file +| `image` | IMAGE | 調整大小後的圖像。 | diff --git a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh.md b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh.md index 3d00a6bfe..9f27f8611 100644 --- a/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh.md +++ b/comfyui_embedded_docs/docs/ResizeImagesByShorterEdge/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 调整尺寸后的图像。 | \ No newline at end of file +| `image` | IMAGE | 调整尺寸后的图像。 | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/ar.md b/comfyui_embedded_docs/docs/ResolutionBucket/ar.md index 38bcaf7bc..7bd6415a0 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/ar.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `latents` | LATENT | قائمة بقواميس الصور الكامنة المجمعة، واحد لكل مجموعة دقة. | -| `conditioning` | CONDITIONING | قائمة بقوائم التكييف، واحدة لكل مجموعة دقة. | \ No newline at end of file +| `conditioning` | CONDITIONING | قائمة بقوائم التكييف، واحدة لكل مجموعة دقة. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/en.md b/comfyui_embedded_docs/docs/ResolutionBucket/en.md index 7855b7f8a..159e5eb6a 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/en.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/en.md @@ -16,4 +16,4 @@ This node organizes a list of latent images and their corresponding conditioning | Output Name | Data Type | Description | |-------------|-----------|-------------| | `latents` | LATENT | List of batched latent dicts, one per resolution bucket. | -| `conditioning` | CONDITIONING | List of condition lists, one per resolution bucket. | \ No newline at end of file +| `conditioning` | CONDITIONING | List of condition lists, one per resolution bucket. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/es.md b/comfyui_embedded_docs/docs/ResolutionBucket/es.md index a5f0fd043..0ff69ed50 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/es.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/es.md @@ -16,4 +16,4 @@ Este nodo organiza una lista de imágenes latentes y sus datos de condicionamien | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `latents` | LATENT | Lista de diccionarios latentes agrupados en lotes, uno por grupo de resolución. | -| `conditioning` | CONDITIONING | Lista de listas de condicionamiento, una por grupo de resolución. | \ No newline at end of file +| `conditioning` | CONDITIONING | Lista de listas de condicionamiento, una por grupo de resolución. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/fr.md b/comfyui_embedded_docs/docs/ResolutionBucket/fr.md index 6dafdbd02..861ad0147 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/fr.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/fr.md @@ -16,4 +16,4 @@ Ce nœud organise une liste d'images latentes et leurs données de conditionneme | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| | `latents` | LATENT | Liste de dictionnaires latents groupés en lots, un par groupe de résolution. | -| `conditioning` | CONDITIONING | Liste de listes de conditionnement, une par groupe de résolution. | \ No newline at end of file +| `conditioning` | CONDITIONING | Liste de listes de conditionnement, une par groupe de résolution. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/ja.md b/comfyui_embedded_docs/docs/ResolutionBucket/ja.md index 36eac86e0..176770f71 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/ja.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/ja.md @@ -16,4 +16,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `latents` | LATENT | バッチ化された潜在辞書のリスト。解像度バケットごとに1つ。 | -| `conditioning` | CONDITIONING | コンディショニングリストのリスト。解像度バケットごとに1つ。 | \ No newline at end of file +| `conditioning` | CONDITIONING | コンディショニングリストのリスト。解像度バケットごとに1つ。 | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/ko.md b/comfyui_embedded_docs/docs/ResolutionBucket/ko.md index 42de1c12f..055e5d33b 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/ko.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/ko.md @@ -16,4 +16,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `latents` | LATENT | 해상도 버킷별로 하나씩, 배치 처리된 잠재 딕셔너리 목록입니다. | -| `conditioning` | CONDITIONING | 해상도 버킷별로 하나씩, 조건화 리스트 목록입니다. | \ No newline at end of file +| `conditioning` | CONDITIONING | 해상도 버킷별로 하나씩, 조건화 리스트 목록입니다. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/pt-BR.md b/comfyui_embedded_docs/docs/ResolutionBucket/pt-BR.md index 67558ce6d..8abef89c1 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/pt-BR.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/pt-BR.md @@ -16,4 +16,4 @@ Este nó organiza uma lista de imagens latentes e seus dados de condicionamento | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `latents` | LATENT | Lista de dicionários latentes em lote, um por grupo de resolução. | -| `conditioning` | CONDITIONING | Lista de listas de condicionamento, uma por grupo de resolução. | \ No newline at end of file +| `conditioning` | CONDITIONING | Lista de listas de condicionamento, uma por grupo de resolução. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/ru.md b/comfyui_embedded_docs/docs/ResolutionBucket/ru.md index aee3bf6d9..732b9cd23 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/ru.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `latents` | LATENT | Список пакетированных словарей латентных изображений, по одному на каждую группу разрешений. | -| `conditioning` | CONDITIONING | Список списков кондиционирования, по одному на каждую группу разрешений. | \ No newline at end of file +| `conditioning` | CONDITIONING | Список списков кондиционирования, по одному на каждую группу разрешений. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/tr.md b/comfyui_embedded_docs/docs/ResolutionBucket/tr.md index 8153efa3e..374164f3d 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/tr.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/tr.md @@ -16,4 +16,4 @@ Bu düğüm, bir liste gizli görüntüyü ve bunlara karşılık gelen koşulla | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `latents` | LATENT | Toplu işlenmiş gizli sözlüklerin listesi, her çözünürlük grubu için bir tane. | -| `conditioning` | CONDITIONING | Koşullandırma listelerinin listesi, her çözünürlük grubu için bir tane. | \ No newline at end of file +| `conditioning` | CONDITIONING | Koşullandırma listelerinin listesi, her çözünürlük grubu için bir tane. | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/zh-TW.md b/comfyui_embedded_docs/docs/ResolutionBucket/zh-TW.md index 83826ad1f..39dfb79cf 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/zh-TW.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 批次化的潛在字典清單,每個解析度桶一個。 | -| `conditioning` | CONDITIONING | 條件資料清單的清單,每個解析度桶一個。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 條件資料清單的清單,每個解析度桶一個。 | diff --git a/comfyui_embedded_docs/docs/ResolutionBucket/zh.md b/comfyui_embedded_docs/docs/ResolutionBucket/zh.md index 45b485955..f944015f2 100644 --- a/comfyui_embedded_docs/docs/ResolutionBucket/zh.md +++ b/comfyui_embedded_docs/docs/ResolutionBucket/zh.md @@ -16,4 +16,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `latents` | LATENT | 已分批次处理的潜在字典列表,每个分辨率桶对应一个。 | -| `conditioning` | CONDITIONING | 条件列表,每个分辨率桶对应一个。 | \ No newline at end of file +| `conditioning` | CONDITIONING | 条件列表,每个分辨率桶对应一个。 | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Detail/ar.md b/comfyui_embedded_docs/docs/Rodin3D_Detail/ar.md index 314800483..17bed9643 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Detail/ar.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Detail/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنشأ | \ No newline at end of file +| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنشأ | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Detail/pt-BR.md b/comfyui_embedded_docs/docs/Rodin3D_Detail/pt-BR.md index 35aec2ae4..e1f928416 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Detail/pt-BR.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Detail/pt-BR.md @@ -15,4 +15,4 @@ O nó Rodin 3D Detail gera ativos 3D detalhados usando a API Rodin. Ele recebe i | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | \ No newline at end of file +| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Detail/tr.md b/comfyui_embedded_docs/docs/Rodin3D_Detail/tr.md index 0a6272a75..222dcd4e4 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Detail/tr.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Detail/tr.md @@ -15,4 +15,4 @@ Rodin 3D Detail düğümü, Rodin API'sini kullanarak detaylı 3B varlıklar olu | Çıktı Adı | Veri Tipi | Açıklama | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | \ No newline at end of file +| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Detail/zh-TW.md b/comfyui_embedded_docs/docs/Rodin3D_Detail/zh-TW.md index b6c0b5bf7..e7c4e39d3 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Detail/zh-TW.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Detail/zh-TW.md @@ -15,4 +15,4 @@ Rodin 3D Detail 節點使用 Rodin API 生成詳細的 3D 資產。它接收輸 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | \ No newline at end of file +| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Gen2/ar.md b/comfyui_embedded_docs/docs/Rodin3D_Gen2/ar.md index bc32debd5..0ca24ece6 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Gen2/ar.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Gen2/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنتج | \ No newline at end of file +| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنتج | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Gen2/pt-BR.md b/comfyui_embedded_docs/docs/Rodin3D_Gen2/pt-BR.md index f56a2ad17..e693c9387 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Gen2/pt-BR.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Gen2/pt-BR.md @@ -16,4 +16,4 @@ O nó Rodin3D_Gen2 gera ativos 3D usando a API Rodin. Ele recebe imagens de entr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | \ No newline at end of file +| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Gen2/tr.md b/comfyui_embedded_docs/docs/Rodin3D_Gen2/tr.md index 7e9807234..05a9b03aa 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Gen2/tr.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Gen2/tr.md @@ -16,4 +16,4 @@ Rodin3D_Gen2 düğümü, Rodin API'sini kullanarak 3B varlıklar oluşturur. Gir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | \ No newline at end of file +| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Gen2/zh-TW.md b/comfyui_embedded_docs/docs/Rodin3D_Gen2/zh-TW.md index 2a0c80d31..0101b8563 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Gen2/zh-TW.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Gen2/zh-TW.md @@ -16,4 +16,4 @@ Rodin3D_Gen2 節點使用 Rodin API 來生成 3D 資產。它接收輸入圖像 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `3D Model Path` | STRING | 生成的 3D 模型的檔案路徑 | \ No newline at end of file +| `3D Model Path` | STRING | 生成的 3D 模型的檔案路徑 | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Regular/ar.md b/comfyui_embedded_docs/docs/Rodin3D_Regular/ar.md index 28e0daf18..ba5e780eb 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Regular/ar.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Regular/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنشأ | \ No newline at end of file +| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنشأ | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Regular/pt-BR.md b/comfyui_embedded_docs/docs/Rodin3D_Regular/pt-BR.md index 424c79914..885a3d1c3 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Regular/pt-BR.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Regular/pt-BR.md @@ -15,4 +15,4 @@ O nó Rodin 3D Regular gera ativos 3D usando a API Rodin. Ele recebe imagens de | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | \ No newline at end of file +| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Regular/tr.md b/comfyui_embedded_docs/docs/Rodin3D_Regular/tr.md index 27afb69c4..f925efa92 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Regular/tr.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Regular/tr.md @@ -15,4 +15,4 @@ Rodin 3D Regular düğümü, Rodin API'sini kullanarak 3B varlıklar oluşturur. | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | \ No newline at end of file +| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Regular/zh-TW.md b/comfyui_embedded_docs/docs/Rodin3D_Regular/zh-TW.md index 9783b71fd..22ec70659 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Regular/zh-TW.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Regular/zh-TW.md @@ -15,4 +15,4 @@ Rodin 3D Regular 節點使用 Rodin API 來生成 3D 資產。它接收輸入圖 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | \ No newline at end of file +| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Sketch/ar.md b/comfyui_embedded_docs/docs/Rodin3D_Sketch/ar.md index 5a9e83083..be870b14a 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Sketch/ar.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Sketch/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنتَج | \ No newline at end of file +| `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد المُنتَج | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Sketch/pt-BR.md b/comfyui_embedded_docs/docs/Rodin3D_Sketch/pt-BR.md index 69e454075..b6aa33eeb 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Sketch/pt-BR.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Sketch/pt-BR.md @@ -13,4 +13,4 @@ Este nó gera ativos 3D usando a API Rodin. Ele recebe imagens de entrada e as c | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | \ No newline at end of file +| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D gerado | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Sketch/tr.md b/comfyui_embedded_docs/docs/Rodin3D_Sketch/tr.md index 901800ce6..ae6f18958 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Sketch/tr.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Sketch/tr.md @@ -13,4 +13,4 @@ Bu düğüm, Rodin API'sini kullanarak 3B varlıklar oluşturur. Girdi görünt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | \ No newline at end of file +| `3D Model Path` | STRING | Oluşturulan 3B modelin dosya yolu | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Sketch/zh-TW.md b/comfyui_embedded_docs/docs/Rodin3D_Sketch/zh-TW.md index 9cdee7a9f..c777424e8 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Sketch/zh-TW.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Sketch/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | \ No newline at end of file +| `3D Model Path` | STRING | 生成的 3D 模型檔案路徑 | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Smooth/ar.md b/comfyui_embedded_docs/docs/Rodin3D_Smooth/ar.md index 53c912f4b..500fd8900 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Smooth/ar.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Smooth/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-----------------|---------------|--------| | `3D Model Path` | STRING | مسار الملف للنموذج ثلاثي الأبعاد الذي تم تنزيله | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/Rodin3D_Smooth/pt-BR.md b/comfyui_embedded_docs/docs/Rodin3D_Smooth/pt-BR.md index d6afe9ec7..59d321fb9 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Smooth/pt-BR.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Smooth/pt-BR.md @@ -15,4 +15,4 @@ O nó Rodin 3D Smooth gera ativos 3D usando a API Rodin, processando imagens de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D baixado | \ No newline at end of file +| `3D Model Path` | STRING | Caminho do arquivo para o modelo 3D baixado | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Smooth/tr.md b/comfyui_embedded_docs/docs/Rodin3D_Smooth/tr.md index 8a676fd08..113f4a79a 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Smooth/tr.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Smooth/tr.md @@ -15,4 +15,4 @@ Rodin 3D Smooth düğümü, giriş görüntülerini işleyerek bunları pürüzs | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `3D Model Path` | STRING | İndirilen 3B modelin dosya yolu | \ No newline at end of file +| `3D Model Path` | STRING | İndirilen 3B modelin dosya yolu | diff --git a/comfyui_embedded_docs/docs/Rodin3D_Smooth/zh-TW.md b/comfyui_embedded_docs/docs/Rodin3D_Smooth/zh-TW.md index 69e2a34f4..b6daa7dc8 100644 --- a/comfyui_embedded_docs/docs/Rodin3D_Smooth/zh-TW.md +++ b/comfyui_embedded_docs/docs/Rodin3D_Smooth/zh-TW.md @@ -15,4 +15,4 @@ Rodin 3D Smooth 節點透過處理輸入圖像並將其轉換為平滑的 3D 模 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `3D Model Path` | STRING | 已下載 3D 模型的檔案路徑 | \ No newline at end of file +| `3D Model Path` | STRING | 已下載 3D 模型的檔案路徑 | diff --git a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/ar.md b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/ar.md index 32dd073a7..13adb1417 100644 --- a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/ar.md +++ b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `output` | VIDEO | الفيديو المُنشئ الذي ينتقل بين الإطارات الأولية والنهائية | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/pt-BR.md index a1c0013c2..56eb11e2a 100644 --- a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/pt-BR.md @@ -24,4 +24,4 @@ O nó Runway First-Last-Frame to Video gera vídeos fazendo upload de quadros-ch | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado, fazendo a transição entre os quadros inicial e final | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado, fazendo a transição entre os quadros inicial e final | diff --git a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/tr.md b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/tr.md index 7770adcdf..de07ad5a6 100644 --- a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/tr.md +++ b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/tr.md @@ -24,4 +24,4 @@ Runway First-Last-Frame to Video düğümü, birinci ve son anahtar kareleri bir | Çıkış Adı | Veri Tipi | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Başlangıç ve bitiş kareleri arasında geçiş yapan oluşturulmuş video | \ No newline at end of file +| `output` | VIDEO | Başlangıç ve bitiş kareleri arasında geçiş yapan oluşturulmuş video | diff --git a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/zh-TW.md index 626d51f12..f019af28c 100644 --- a/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RunwayFirstLastFrameNode/zh-TW.md @@ -24,4 +24,4 @@ Runway First-Last-Frame to Video 節點透過上傳首尾關鍵影格及文字 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 在起始影格和結束影格之間過渡生成的影片 | \ No newline at end of file +| `output` | VIDEO | 在起始影格和結束影格之間過渡生成的影片 | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/ar.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/ar.md index 69ea3d95f..d13127648 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/ar.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `output` | VIDEO | تسلسل الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | تسلسل الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/pt-BR.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/pt-BR.md index b724a18f2..827f3fa6f 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/pt-BR.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/pt-BR.md @@ -22,4 +22,4 @@ O nó Runway Image to Video (Gen3a Turbo) gera um vídeo a partir de um único q | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | A sequência de vídeo gerada | \ No newline at end of file +| `output` | VIDEO | A sequência de vídeo gerada | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/tr.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/tr.md index e0d88e42f..703f3e258 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/tr.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/tr.md @@ -22,4 +22,4 @@ Runway Image to Video (Gen3a Turbo) düğümü, Runway'nin Gen3a Turbo modelini | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dizisi | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dizisi | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/zh-TW.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/zh-TW.md index a73b42d04..70fbbeb4b 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/zh-TW.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen3a/zh-TW.md @@ -22,4 +22,4 @@ Runway Image to Video (Gen3a Turbo) 節點使用 Runway 的 Gen3a Turbo 模型 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片序列 | \ No newline at end of file +| `output` | VIDEO | 生成的影片序列 | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/ar.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/ar.md index 58291fe3e..016f4d027 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/ar.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/ar.md @@ -24,4 +24,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `output` | VIDEO | الفيديو المُنشأ بناءً على إطار الإدخال والنص التوجيهي | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/pt-BR.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/pt-BR.md index 5d38f9dd4..7815da36c 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/pt-BR.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/pt-BR.md @@ -22,4 +22,4 @@ O nó Runway Image to Video (Gen4 Turbo) gera um vídeo a partir de um único qu | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base no quadro de entrada e no prompt | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base no quadro de entrada e no prompt | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/tr.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/tr.md index f0f168fd7..65e86fd68 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/tr.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/tr.md @@ -22,4 +22,4 @@ Runway Image to Video (Gen4 Turbo) düğümü, Runway'nin Gen4 Turbo modelini ku | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Girdi karesi ve isteme dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Girdi karesi ve isteme dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/zh-TW.md b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/zh-TW.md index 59a209eaf..2d63f8e0c 100644 --- a/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/zh-TW.md +++ b/comfyui_embedded_docs/docs/RunwayImageToVideoNodeGen4/zh-TW.md @@ -22,4 +22,4 @@ Runway Image to Video (Gen4 Turbo) 節點使用 Runway 的 Gen4 Turbo 模型, | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 基於輸入畫面和提示所生成的影片 | \ No newline at end of file +| `output` | VIDEO | 基於輸入畫面和提示所生成的影片 | diff --git a/comfyui_embedded_docs/docs/RunwayTextToImageNode/ar.md b/comfyui_embedded_docs/docs/RunwayTextToImageNode/ar.md index f7a4637ed..aa8a07cef 100644 --- a/comfyui_embedded_docs/docs/RunwayTextToImageNode/ar.md +++ b/comfyui_embedded_docs/docs/RunwayTextToImageNode/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | IMAGE | الصورة المُولَّدة بناءً على النص التوجيهي والصورة المرجعية الاختيارية | \ No newline at end of file +| `output` | IMAGE | الصورة المُولَّدة بناءً على النص التوجيهي والصورة المرجعية الاختيارية | diff --git a/comfyui_embedded_docs/docs/RunwayTextToImageNode/pt-BR.md b/comfyui_embedded_docs/docs/RunwayTextToImageNode/pt-BR.md index 19513d07b..bc5eccca7 100644 --- a/comfyui_embedded_docs/docs/RunwayTextToImageNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/RunwayTextToImageNode/pt-BR.md @@ -16,4 +16,4 @@ O nó Runway Text to Image gera imagens a partir de prompts de texto usando o mo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem gerada com base no prompt de texto e na imagem de referência opcional | \ No newline at end of file +| `output` | IMAGE | A imagem gerada com base no prompt de texto e na imagem de referência opcional | diff --git a/comfyui_embedded_docs/docs/RunwayTextToImageNode/tr.md b/comfyui_embedded_docs/docs/RunwayTextToImageNode/tr.md index 6af2605e6..2a5d5d137 100644 --- a/comfyui_embedded_docs/docs/RunwayTextToImageNode/tr.md +++ b/comfyui_embedded_docs/docs/RunwayTextToImageNode/tr.md @@ -16,4 +16,4 @@ Runway Metinden Görüntüye düğümü, Runway'nin Gen 4 modelini kullanarak me | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Metin istemi ve isteğe bağlı referans görseline dayalı olarak oluşturulan görsel | \ No newline at end of file +| `output` | IMAGE | Metin istemi ve isteğe bağlı referans görseline dayalı olarak oluşturulan görsel | diff --git a/comfyui_embedded_docs/docs/RunwayTextToImageNode/zh-TW.md b/comfyui_embedded_docs/docs/RunwayTextToImageNode/zh-TW.md index 57a4809f6..2aff042dd 100644 --- a/comfyui_embedded_docs/docs/RunwayTextToImageNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/RunwayTextToImageNode/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 根據文字提示和可選參考圖像生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 根據文字提示和可選參考圖像生成的圖像 | diff --git a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/ar.md b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/ar.md index 2f562821d..7450d1d76 100644 --- a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/ar.md @@ -18,4 +18,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التكييف الإيجابي المعدل مع تطبيق معلومات تحسين الدقة عليه | | `كامن` | CONDITIONING | التكييف السلبي المعدل مع تطبيق معلومات تحسين الدقة عليه | -| `latent` | LATENT | تمثيل كامن فارغ مطابق لأبعاد الصورة مُحسَّنة الدقة | \ No newline at end of file +| `latent` | LATENT | تمثيل كامن فارغ مطابق لأبعاد الصورة مُحسَّنة الدقة | diff --git a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/pt-BR.md index b82ce98e3..cb7b70056 100644 --- a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/pt-BR.md @@ -18,4 +18,4 @@ O nó SD_4XUpscale_Conditioning prepara dados de condicionamento para o processo |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com as informações de upscaling aplicadas | | `negative` | CONDITIONING | Condicionamento negativo modificado com as informações de upscaling aplicadas | -| `latent` | LATENT | Representação latente vazia que corresponde às dimensões da imagem ampliada | \ No newline at end of file +| `latent` | LATENT | Representação latente vazia que corresponde às dimensões da imagem ampliada | diff --git a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/tr.md b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/tr.md index 312ab00e9..1758028ab 100644 --- a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/tr.md @@ -18,4 +18,4 @@ SD_4XUpscale_Conditioning düğümü, difüzyon modellerini kullanarak görünt |-------------|-----------|-------------| | `negatif` | CONDITIONING | Yukarı ölçeklendirme bilgisi uygulanmış değiştirilmiş pozitif koşullandırma | | `gizli` | CONDITIONING | Yukarı ölçeklendirme bilgisi uygulanmış değiştirilmiş negatif koşullandırma | -| `latent` | LATENT | Yukarı ölçeklenmiş boyutlarla eşleşen boş gizli temsil | \ No newline at end of file +| `latent` | LATENT | Yukarı ölçeklenmiş boyutlarla eşleşen boş gizli temsil | diff --git a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/zh-TW.md index e7225b833..72bcc57ad 100644 --- a/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/SD_4XUpscale_Conditioning/zh-TW.md @@ -18,4 +18,4 @@ SD_4XUpscale_Conditioning 節點用於為使用擴散模型的圖像放大過程 |-------------|-----------|-------------| | `負向` | CONDITIONING | 應用放大資訊後的修改正向條件數據 | | `潛在空間` | CONDITIONING | 應用放大資訊後的修改負向條件數據 | -| `latent` | LATENT | 符合放大尺寸的空潛在表示 | \ No newline at end of file +| `latent` | LATENT | 符合放大尺寸的空潛在表示 | diff --git a/comfyui_embedded_docs/docs/SV3D_Conditioning/ar.md b/comfyui_embedded_docs/docs/SV3D_Conditioning/ar.md index 140ef2a7d..96ef57edc 100644 --- a/comfyui_embedded_docs/docs/SV3D_Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/SV3D_Conditioning/ar.md @@ -22,4 +22,4 @@ | `سلبي` | CONDITIONING | بيانات التوجيه الإيجابي التي تحتوي على تضمينات الصورة ومعاملات الكاميرا للتوليد | | `كامِن` | CONDITIONING | بيانات التوجيه السلبي ذات التضمينات المعدومة للتوليد التبايني | | `latent` | LATENT | موتر كامن فارغ بأبعاد تطابق إطارات الفيديو المحددة والدقة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SV3D_Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/SV3D_Conditioning/pt-BR.md index 0f1aa57a6..69b7c39cf 100644 --- a/comfyui_embedded_docs/docs/SV3D_Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/SV3D_Conditioning/pt-BR.md @@ -20,4 +20,4 @@ O nó SV3D_Conditioning prepara dados de condicionamento para geração de víde |-------------|-----------|-------------| | `positive` | CONDITIONING | Os dados de condicionamento positivo contendo incorporações de imagem e parâmetros de câmera para geração | | `negative` | CONDITIONING | Os dados de condicionamento negativo com incorporações zeradas para geração contrastiva | -| `latent` | LATENT | Um tensor latente vazio com dimensões correspondentes aos quadros de vídeo e resolução especificados | \ No newline at end of file +| `latent` | LATENT | Um tensor latente vazio com dimensões correspondentes aos quadros de vídeo e resolução especificados | diff --git a/comfyui_embedded_docs/docs/SV3D_Conditioning/tr.md b/comfyui_embedded_docs/docs/SV3D_Conditioning/tr.md index c2f94af4f..b696c3fc3 100644 --- a/comfyui_embedded_docs/docs/SV3D_Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/SV3D_Conditioning/tr.md @@ -20,4 +20,4 @@ SV3D_Conditioning düğümü, SV3D modelini kullanarak 3D video üretimi için k |-------------|-----------|-------------| | `negatif` | CONDITIONING | Görüntü yerleştirmelerini ve üretim için kamera parametrelerini içeren pozitif koşullandırma verisi | | `gizli` | CONDITIONING | Karşılaştırmalı üretim için sıfırlanmış yerleştirmeler içeren negatif koşullandırma verisi | -| `latent` | LATENT | Belirtilen video kareleri ve çözünürlük ile eşleşen boyutlara sahip boş bir gizli tensör | \ No newline at end of file +| `latent` | LATENT | Belirtilen video kareleri ve çözünürlük ile eşleşen boyutlara sahip boş bir gizli tensör | diff --git a/comfyui_embedded_docs/docs/SV3D_Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/SV3D_Conditioning/zh-TW.md index 2327236c5..d0cb968a0 100644 --- a/comfyui_embedded_docs/docs/SV3D_Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/SV3D_Conditioning/zh-TW.md @@ -22,4 +22,4 @@ SV3D_Conditioning 節點用於為 SV3D 模型的 3D 影片生成準備條件資 |-------------|-----------|-------------| | `positive` | CONDITIONING | 包含圖像嵌入和攝影機參數的正向條件資料,用於生成 | | `negative` | CONDITIONING | 帶有零值嵌入的負向條件資料,用於對比生成 | -| `latent` | LATENT | 一個空的潛在張量,其維度與指定的影片幀數和解析度相匹配 | \ No newline at end of file +| `latent` | LATENT | 一個空的潛在張量,其維度與指定的影片幀數和解析度相匹配 | diff --git a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/ar.md b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/ar.md index b6f02faff..80ac7ec12 100644 --- a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/ar.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | بيانات التكييف الإيجابية التي تحتوي على تضمينات الصورة ومعاملات الفيديو | | `كامِن` | CONDITIONING | بيانات التكييف السلبية ذات التضمينات المُعَدَّلة إلى الصفر ومعاملات الفيديو | -| `latent` | LATENT | موتر الفضاء الكامن الفارغ الجاهز لتوليد الفيديو | \ No newline at end of file +| `latent` | LATENT | موتر الفضاء الكامن الفارغ الجاهز لتوليد الفيديو | diff --git a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/pt-BR.md index dc891b78e..cbdf93cb5 100644 --- a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/pt-BR.md @@ -22,4 +22,4 @@ O nó SVD_img2vid_Conditioning prepara os dados de condicionamento para geraçã |-------------|-----------|-------------| | `positive` | CONDITIONING | Dados de condicionamento positivo contendo incorporações de imagem e parâmetros de vídeo | | `negative` | CONDITIONING | Dados de condicionamento negativo com incorporações zeradas e parâmetros de vídeo | -| `latent` | LATENT | Tensor de espaço latente vazio pronto para a geração de vídeo | \ No newline at end of file +| `latent` | LATENT | Tensor de espaço latente vazio pronto para a geração de vídeo | diff --git a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/tr.md b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/tr.md index 98592fe98..1f60d26a9 100644 --- a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/tr.md @@ -22,4 +22,4 @@ SVD_img2vid_Conditioning düğümü, Stable Video Diffusion kullanarak video ür |-------------|-----------|-------------| | `positive` | CONDITIONING | Görüntü yerleştirmelerini ve video parametrelerini içeren pozitif koşullandırma verisi | | `negative` | CONDITIONING | Sıfırlanmış yerleştirmeler ve video parametreleri içeren negatif koşullandırma verisi | -| `latent` | LATENT | Video üretimi için hazır boş gizli uzay tensörü | \ No newline at end of file +| `latent` | LATENT | Video üretimi için hazır boş gizli uzay tensörü | diff --git a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/zh-TW.md index dd6cc46a6..0c120c540 100644 --- a/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/SVD_img2vid_Conditioning/zh-TW.md @@ -22,4 +22,4 @@ SVD_img2vid_Conditioning 節點用於為 Stable Video Diffusion 影片生成準 |-------------|-----------|-------------| | `負向` | CONDITIONING | 包含圖像嵌入和影片參數的正向條件資料 | | `潛在空間` | CONDITIONING | 具有歸零嵌入和影片參數的負向條件資料 | -| `latent` | LATENT | 準備用於影片生成的空白潛在空間張量 | \ No newline at end of file +| `latent` | LATENT | 準備用於影片生成的空白潛在空間張量 | diff --git a/comfyui_embedded_docs/docs/SamplerCustom/ar.md b/comfyui_embedded_docs/docs/SamplerCustom/ar.md index cea7b585c..460ee5818 100644 --- a/comfyui_embedded_docs/docs/SamplerCustom/ar.md +++ b/comfyui_embedded_docs/docs/SamplerCustom/ar.md @@ -21,4 +21,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|--------------|-------------| | `المخرج المنقح` | `LATENT` | تمثل 'output' النتيجة الأساسية لعملية أخذ العينات، حيث تحتوي على العينات المُنشأة. | -| `denoised_output` | `LATENT` | تمثل 'denoised_output' العينات بعد تطبيق عملية إزالة الضوضاء، مما قد يعزز وضوح وجودة العينات المُنشأة. | \ No newline at end of file +| `denoised_output` | `LATENT` | تمثل 'denoised_output' العينات بعد تطبيق عملية إزالة الضوضاء، مما قد يعزز وضوح وجودة العينات المُنشأة. | diff --git a/comfyui_embedded_docs/docs/SamplerCustom/pt-BR.md b/comfyui_embedded_docs/docs/SamplerCustom/pt-BR.md index 244fc74e8..d74a43cb8 100644 --- a/comfyui_embedded_docs/docs/SamplerCustom/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerCustom/pt-BR.md @@ -21,4 +21,4 @@ O nó SamplerCustom é projetado para fornecer um mecanismo de amostragem flexí | Parâmetro | Tipo de Dado | Descrição | |-----------|--------------|-------------| | `output` | `LATENT` | A saída 'output' representa o resultado principal do processo de amostragem, contendo as amostras geradas. | -| `denoised_output` | `LATENT` | A saída 'denoised_output' representa as amostras após a aplicação de um processo de remoção de ruído, potencialmente melhorando a clareza e a qualidade das amostras geradas. | \ No newline at end of file +| `denoised_output` | `LATENT` | A saída 'denoised_output' representa as amostras após a aplicação de um processo de remoção de ruído, potencialmente melhorando a clareza e a qualidade das amostras geradas. | diff --git a/comfyui_embedded_docs/docs/SamplerCustom/tr.md b/comfyui_embedded_docs/docs/SamplerCustom/tr.md index c35840174..0ab9f22a5 100644 --- a/comfyui_embedded_docs/docs/SamplerCustom/tr.md +++ b/comfyui_embedded_docs/docs/SamplerCustom/tr.md @@ -21,4 +21,4 @@ SamplerCustom düğümü, çeşitli uygulamalar için esnek ve özelleştirilebi | Parametre | Veri Tipi | Açıklama | |-----------|-----------|-------------| | `gürültüsü_alınmış_çıktı` | `LATENT` | 'output', örnekleme sürecinin birincil sonucunu temsil eder ve üretilen örnekleri içerir. | -| `denoised_output` | `LATENT` | 'denoised_output', bir gürültü giderme işlemi uygulandıktan sonraki örnekleri temsil eder ve üretilen örneklerin netliğini ile kalitesini potansiyel olarak artırır. | \ No newline at end of file +| `denoised_output` | `LATENT` | 'denoised_output', bir gürültü giderme işlemi uygulandıktan sonraki örnekleri temsil eder ve üretilen örneklerin netliğini ile kalitesini potansiyel olarak artırır. | diff --git a/comfyui_embedded_docs/docs/SamplerCustom/zh-TW.md b/comfyui_embedded_docs/docs/SamplerCustom/zh-TW.md index 9f99b3842..4e8ae8e2c 100644 --- a/comfyui_embedded_docs/docs/SamplerCustom/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerCustom/zh-TW.md @@ -21,4 +21,4 @@ SamplerCustom 節點旨在為各種應用提供靈活且可自訂的取樣機制 | 參數名稱 | 資料類型 | 描述 | |-----------|--------------|-------------| | `去噪輸出` | `LATENT` | 此輸出代表取樣過程的主要結果,包含生成的樣本。 | -| `denoised_output` | `LATENT` | 此輸出代表經過去噪處理後的樣本,可能提升生成樣本的清晰度和品質。 | \ No newline at end of file +| `denoised_output` | `LATENT` | 此輸出代表經過去噪處理後的樣本,可能提升生成樣本的清晰度和品質。 | diff --git a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/ar.md b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/ar.md index 4ddebff44..d24d995fa 100644 --- a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/ar.md +++ b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `المخرج المنقح` | LATENT | التمثيل الكامن النهائي للعينة بعد إكمال عملية أخذ العينات | -| `denoised_output` | LATENT | إصدار منزوع الضوضاء من المخرج عند التوفر، وإلا يُرجع نفس المخرج | \ No newline at end of file +| `denoised_output` | LATENT | إصدار منزوع الضوضاء من المخرج عند التوفر، وإلا يُرجع نفس المخرج | diff --git a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/pt-BR.md b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/pt-BR.md index 34a387101..f4babb473 100644 --- a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/pt-BR.md @@ -17,4 +17,4 @@ O nó SamplerCustomAdvanced realiza amostragem avançada no espaço latente util | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `output` | LATENT | A representação latente final amostrada após a conclusão do processo de amostragem | -| `denoised_output` | LATENT | Uma versão com ruído removido da saída, quando disponível; caso contrário, retorna o mesmo que a saída | \ No newline at end of file +| `denoised_output` | LATENT | Uma versão com ruído removido da saída, quando disponível; caso contrário, retorna o mesmo que a saída | diff --git a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/tr.md b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/tr.md index d50eacb1a..40a639c31 100644 --- a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/tr.md +++ b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/tr.md @@ -17,4 +17,4 @@ SamplerCustomAdvanced düğümü, özel gürültü, yönlendirme ve örnekleme y | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `gürültüsü_alınmış_çıktı` | LATENT | Örnekleme süreci tamamlandıktan sonra elde edilen nihai örneklenmiş latent temsil | -| `denoised_output` | LATENT | Mevcut olduğunda çıktının gürültüsüzleştirilmiş bir versiyonu, aksi takdirde çıktı ile aynısını döndürür | \ No newline at end of file +| `denoised_output` | LATENT | Mevcut olduğunda çıktının gürültüsüzleştirilmiş bir versiyonu, aksi takdirde çıktı ile aynısını döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/zh-TW.md b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/zh-TW.md index 5222966b3..a211a1144 100644 --- a/comfyui_embedded_docs/docs/SamplerCustomAdvanced/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerCustomAdvanced/zh-TW.md @@ -17,4 +17,4 @@ SamplerCustomAdvanced 節點使用自定義噪聲、引導和採樣配置執行 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `去噪輸出` | LATENT | 完成採樣過程後的最終採樣潛在表示 | -| `denoised_output` | LATENT | 輸出結果的去噪版本(如可用),否則返回與輸出相同的內容 | \ No newline at end of file +| `denoised_output` | LATENT | 輸出結果的去噪版本(如可用),否則返回與輸出相同的內容 | diff --git a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/ar.md b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/ar.md index 690c8e93d..0084e0f8a 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `sampler` | SAMPLER | يُرجع نسخة مُهيأة من مُعين DPM التكيفي | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/pt-BR.md index aa6b7b67a..821f9032a 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/pt-BR.md @@ -21,4 +21,4 @@ O nó SamplerDPMAdaptative implementa um amostrador DPM (Modelo Probabilístico | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna uma instância configurada do amostrador DPM adaptativo | \ No newline at end of file +| `sampler` | SAMPLER | Retorna uma instância configurada do amostrador DPM adaptativo | diff --git a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/tr.md b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/tr.md index 621606a4a..8abd811d7 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/tr.md @@ -21,4 +21,4 @@ SamplerDPMAdaptative düğümü, örnekleme süreci boyunca adım boyutlarını | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Yapılandırılmış bir DPM uyarlamalı örnekleyici örneği döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Yapılandırılmış bir DPM uyarlamalı örnekleyici örneği döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/zh-TW.md index e2b4b596c..edabb05c3 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMAdaptative/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDPMAdaptative/zh-TW.md @@ -21,4 +21,4 @@ SamplerDPMAdaptative 節點實現了一種自適應 DPM(擴散概率模型) | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的 DPM 自適應採樣器實例 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的 DPM 自適應採樣器實例 | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/ar.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/ar.md index 4db0795c5..81b35940d 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `sampler` | SAMPLER | كائن عيِّن مُهيأ وجاهز للاستخدام في خطورة أخذ العينات | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/pt-BR.md index e1ff4f0d3..456469e47 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/pt-BR.md @@ -15,4 +15,4 @@ O nó SamplerDPMPP_2M_SDE cria um amostrador DPM++ 2M SDE para modelos de difus | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Um objeto amostrador configurado e pronto para uso no pipeline de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Um objeto amostrador configurado e pronto para uso no pipeline de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/tr.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/tr.md index 314a56b34..91a2474e5 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/tr.md @@ -15,4 +15,4 @@ SamplerDPMPP_2M_SDE düğümü, difüzyon modelleri için bir DPM++ 2M SDE örne | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hattında kullanıma hazır yapılandırılmış bir örnekleyici nesnesi | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hattında kullanıma hazır yapılandırılmış bir örnekleyici nesnesi | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/zh-TW.md index ce1211ebd..3639f6c06 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2M_SDE/zh-TW.md @@ -15,4 +15,4 @@ SamplerDPMPP_2M_SDE 節點為擴散模型創建一個 DPM++ 2M SDE 取樣器。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 已配置的取樣器物件,準備好用於取樣流程 | \ No newline at end of file +| `sampler` | SAMPLER | 已配置的取樣器物件,準備好用於取樣流程 | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/ar.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/ar.md index 164f088d2..e253a86ae 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | يُرجع كائن مُعين مُهيأ يمكن استخدامه في خطوة أخذ العينات | \ No newline at end of file +| `sampler` | SAMPLER | يُرجع كائن مُعين مُهيأ يمكن استخدامه في خطوة أخذ العينات | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/pt-BR.md index 00db68879..2e14333da 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/pt-BR.md @@ -13,4 +13,4 @@ O nó SamplerDPMPP_2S_Ancestral cria um amostrador que utiliza o método de amos | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/tr.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/tr.md index 79ac78e9a..105534aa5 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/tr.md @@ -13,4 +13,4 @@ SamplerDPMPP_2S_Ancestral düğümü, görüntü oluşturmak için DPM++ 2S Ance | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/zh-TW.md index dad065ad2..d4b9156ea 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_2S_Ancestral/zh-TW.md @@ -13,4 +13,4 @@ SamplerDPMPP_2S_Ancestral 節點建立一個使用 DPM++ 2S Ancestral 取樣方 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在取樣流程中使用 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在取樣流程中使用 | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/ar.md b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/ar.md index a89f00eab..660adf1db 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | يُرجع كائن معين مُكونًا للاستخدام في سير عمل أخذ العينات | \ No newline at end of file +| `sampler` | SAMPLER | يُرجع كائن معين مُكونًا للاستخدام في سير عمل أخذ العينات | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/pt-BR.md index 50e41d3ff..cd00a5e52 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/pt-BR.md @@ -14,4 +14,4 @@ O nó SamplerDPMPP_3M_SDE cria um amostrador DPM++ 3M SDE para uso no processo d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um objeto amostrador configurado para uso em fluxos de trabalho de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um objeto amostrador configurado para uso em fluxos de trabalho de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/tr.md b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/tr.md index 9d75db06a..f74219db6 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/tr.md @@ -14,4 +14,4 @@ SamplerDPMPP_3M_SDE düğümü, örnekleme sürecinde kullanılmak üzere bir DP | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme iş akışlarında kullanılmak üzere yapılandırılmış bir örnekleyici nesnesi döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme iş akışlarında kullanılmak üzere yapılandırılmış bir örnekleyici nesnesi döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/zh-TW.md index 8871dbf28..44e71093a 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_3M_SDE/zh-TW.md @@ -14,4 +14,4 @@ SamplerDPMPP_3M_SDE 節點建立一個 DPM++ 3M SDE 取樣器,用於取樣流 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,用於取樣工作流程 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,用於取樣工作流程 | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/ar.md b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/ar.md index 866e79b9f..f287a7c52 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| | `sampler` | SAMPLER | يُرجع كائن عيِّنة DPM++ SDE مُكونًا لاستخدامه في خطوات أخذ العينات | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/pt-BR.md index 9d911b382..2e7d86dfe 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/pt-BR.md @@ -15,4 +15,4 @@ O nó SamplerDPMPP_SDE cria um amostrador DPM++ SDE (Equação Diferencial Estoc | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um objeto amostrador DPM++ SDE configurado para uso em pipelines de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um objeto amostrador DPM++ SDE configurado para uso em pipelines de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/tr.md b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/tr.md index af5db2c72..89904101c 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/tr.md @@ -15,4 +15,4 @@ SamplerDPMPP_SSE düğümü, örnekleme sürecinde kullanılmak üzere bir DPM++ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hatlarında kullanılmak üzere yapılandırılmış bir DPM++ SSE örnekleyici nesnesi döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hatlarında kullanılmak üzere yapılandırılmış bir DPM++ SSE örnekleyici nesnesi döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/zh-TW.md index 2478639d3..a64367013 100644 --- a/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDPMPP_SDE/zh-TW.md @@ -15,4 +15,4 @@ SamplerDPMPP_SDE 節點建立一個 DPM++ SDE(隨機微分方程)取樣器 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 回傳一個已配置的 DPM++ SDE 取樣器物件,用於取樣管線中 | \ No newline at end of file +| `sampler` | SAMPLER | 回傳一個已配置的 DPM++ SDE 取樣器物件,用於取樣管線中 | diff --git a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/ar.md b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/ar.md index 298a985c4..d3421ae58 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |-----------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | المخرج هو مُعين عينات مُكون وفقاً للمعاملات المحددة، وجاهز لتوليد العينات. | \ No newline at end of file +| `sampler` | `SAMPLER` | المخرج هو مُعين عينات مُكون وفقاً للمعاملات المحددة، وجاهز لتوليد العينات. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/pt-BR.md index 98e43d4b5..a34d39281 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/pt-BR.md @@ -15,4 +15,4 @@ Este nó foi projetado para gerar um amostrador para o modelo DPMPP_2M_SDE, perm | Parâmetro | Tipo de Dados | Descrição | |-----------------|---------------|---------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | A saída é um amostrador configurado de acordo com os parâmetros especificados, pronto para gerar amostras. | \ No newline at end of file +| `sampler` | `SAMPLER` | A saída é um amostrador configurado de acordo com os parâmetros especificados, pronto para gerar amostras. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/tr.md b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/tr.md index 9fb5c321e..6c58861cf 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/tr.md @@ -15,4 +15,4 @@ Bu düğüm, DPMPP_2M_SDE modeli için bir örnekleyici oluşturmak üzere tasar | Parametre | Veri Türü | Açıklama | |-----------------|-------------|-----------------------------------------------------------------------------| -| `sampler` | `SAMPLER` | Çıktı, belirtilen parametrelere göre yapılandırılmış, örnek oluşturmaya hazır bir örnekleyicidir. | \ No newline at end of file +| `sampler` | `SAMPLER` | Çıktı, belirtilen parametrelere göre yapılandırılmış, örnek oluşturmaya hazır bir örnekleyicidir. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/zh-TW.md index f7efbeede..2a7d069b9 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDpmpp2mSde/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | 描述 | |------------------|----------------|----------------------------------------------------------------------| -| `sampler` | `SAMPLER` | 輸出是根據指定參數配置的取樣器,已準備好用於生成樣本。 | \ No newline at end of file +| `sampler` | `SAMPLER` | 輸出是根據指定參數配置的取樣器,已準備好用於生成樣本。 | diff --git a/comfyui_embedded_docs/docs/SamplerDpmppSde/ar.md b/comfyui_embedded_docs/docs/SamplerDpmppSde/ar.md index 8ce10bd9a..5c6dd20f3 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmppSde/ar.md +++ b/comfyui_embedded_docs/docs/SamplerDpmppSde/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |----------------|-------------|-------------| -| `sampler` | SAMPLER | المُعين المُولد المُهيأ بالمعاملات المحددة، جاهز للاستخدام في عمليات أخذ العينات. | \ No newline at end of file +| `sampler` | SAMPLER | المُعين المُولد المُهيأ بالمعاملات المحددة، جاهز للاستخدام في عمليات أخذ العينات. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmppSde/pt-BR.md b/comfyui_embedded_docs/docs/SamplerDpmppSde/pt-BR.md index f136dead0..45c6717f8 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmppSde/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerDpmppSde/pt-BR.md @@ -15,4 +15,4 @@ Este nó é projetado para gerar um amostrador para o modelo DPM++ SDE (Equaçã | Parâmetro | Tipo de Dados | Descrição | |----------------|-------------|-------------| -| `sampler` | SAMPLER | O amostrador gerado, configurado com os parâmetros especificados, pronto para uso em operações de amostragem. | \ No newline at end of file +| `sampler` | SAMPLER | O amostrador gerado, configurado com os parâmetros especificados, pronto para uso em operações de amostragem. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmppSde/tr.md b/comfyui_embedded_docs/docs/SamplerDpmppSde/tr.md index f6263a811..62111329c 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmppSde/tr.md +++ b/comfyui_embedded_docs/docs/SamplerDpmppSde/tr.md @@ -15,4 +15,4 @@ Bu düğüm, DPM++ SDE (Stokastik Diferansiyel Denklem) modeli için bir örnekl | Parametre | Veri Tipi | Açıklama | |----------------|-------------|-------------| -| `sampler` | SAMPLER | Belirtilen parametrelerle yapılandırılmış, örnekleme işlemlerinde kullanıma hazır olarak oluşturulan örnekleyici. | \ No newline at end of file +| `sampler` | SAMPLER | Belirtilen parametrelerle yapılandırılmış, örnekleme işlemlerinde kullanıma hazır olarak oluşturulan örnekleyici. | diff --git a/comfyui_embedded_docs/docs/SamplerDpmppSde/zh-TW.md b/comfyui_embedded_docs/docs/SamplerDpmppSde/zh-TW.md index b0fd809ab..30b493196 100644 --- a/comfyui_embedded_docs/docs/SamplerDpmppSde/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerDpmppSde/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | 描述 | |----------------|-------------|-------------| -| `sampler` | SAMPLER | 使用指定參數配置生成的取樣器,已準備好用於取樣操作。 | \ No newline at end of file +| `sampler` | SAMPLER | 使用指定參數配置生成的取樣器,已準備好用於取樣操作。 | diff --git a/comfyui_embedded_docs/docs/SamplerER_SDE/ar.md b/comfyui_embedded_docs/docs/SamplerER_SDE/ar.md index 4ad4fc354..62e7e8d19 100644 --- a/comfyui_embedded_docs/docs/SamplerER_SDE/ar.md +++ b/comfyui_embedded_docs/docs/SamplerER_SDE/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | كائن أخذ عينات مُهيأ يمكن استخدامه في خطوة أخذ العينات مع إعدادات الحل المحددة. | \ No newline at end of file +| `sampler` | SAMPLER | كائن أخذ عينات مُهيأ يمكن استخدامه في خطوة أخذ العينات مع إعدادات الحل المحددة. | diff --git a/comfyui_embedded_docs/docs/SamplerER_SDE/pt-BR.md b/comfyui_embedded_docs/docs/SamplerER_SDE/pt-BR.md index facd27011..be70c78ff 100644 --- a/comfyui_embedded_docs/docs/SamplerER_SDE/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerER_SDE/pt-BR.md @@ -20,4 +20,4 @@ O nó SamplerER_SDE fornece métodos de amostragem especializados para modelos d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser usado no pipeline de amostragem com as configurações de solucionador especificadas. | \ No newline at end of file +| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser usado no pipeline de amostragem com as configurações de solucionador especificadas. | diff --git a/comfyui_embedded_docs/docs/SamplerER_SDE/tr.md b/comfyui_embedded_docs/docs/SamplerER_SDE/tr.md index 9bbb5351e..6f7d33ed4 100644 --- a/comfyui_embedded_docs/docs/SamplerER_SDE/tr.md +++ b/comfyui_embedded_docs/docs/SamplerER_SDE/tr.md @@ -20,4 +20,4 @@ SamplerER_SDE düğümü, difüzyon modelleri için özel örnekleme yöntemleri | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Belirtilen çözücü ayarlarıyla örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi. | \ No newline at end of file +| `sampler` | SAMPLER | Belirtilen çözücü ayarlarıyla örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi. | diff --git a/comfyui_embedded_docs/docs/SamplerER_SDE/zh-TW.md b/comfyui_embedded_docs/docs/SamplerER_SDE/zh-TW.md index 6b691ddf4..23478282a 100644 --- a/comfyui_embedded_docs/docs/SamplerER_SDE/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerER_SDE/zh-TW.md @@ -20,4 +20,4 @@ SamplerER_SDE 節點為擴散模型提供專業的取樣方法,提供不同的 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 一個配置好的取樣器物件,可在取樣流程中使用指定的求解器設定。 | \ No newline at end of file +| `sampler` | SAMPLER | 一個配置好的取樣器物件,可在取樣流程中使用指定的求解器設定。 | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestral/ar.md b/comfyui_embedded_docs/docs/SamplerEulerAncestral/ar.md index 05a5da6bf..3da94dd3e 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestral/ar.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestral/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | يُرجع مُعين عيّنات Euler Ancestral مُهيأ يمكن استخدامه في خطوة أخذ العينات | \ No newline at end of file +| `sampler` | SAMPLER | يُرجع مُعين عيّنات Euler Ancestral مُهيأ يمكن استخدامه في خطوة أخذ العينات | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestral/pt-BR.md b/comfyui_embedded_docs/docs/SamplerEulerAncestral/pt-BR.md index c467b68b0..bcf0b9af6 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestral/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestral/pt-BR.md @@ -13,4 +13,4 @@ O nó SamplerEulerAncestral cria um amostrador Euler Ancestral para gerar imagen | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um amostrador Euler Ancestral configurado que pode ser usado no pipeline de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um amostrador Euler Ancestral configurado que pode ser usado no pipeline de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestral/tr.md b/comfyui_embedded_docs/docs/SamplerEulerAncestral/tr.md index 7d42885f2..2e35bcb81 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestral/tr.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestral/tr.md @@ -13,4 +13,4 @@ SamplerEulerAncestral düğümü, görüntü oluşturmak için bir Euler Ata Sam | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir Euler Ata Sampler'ı döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir Euler Ata Sampler'ı döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestral/zh-TW.md b/comfyui_embedded_docs/docs/SamplerEulerAncestral/zh-TW.md index fc303d2a3..d59089226 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestral/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestral/zh-TW.md @@ -13,4 +13,4 @@ SamplerEulerAncestral 節點用於建立 Euler Ancestral 取樣器以生成圖 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的 Euler Ancestral 取樣器,可在取樣管線中使用 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的 Euler Ancestral 取樣器,可在取樣管線中使用 | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/ar.md b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/ar.md index 01d5057c3..35a18f1f4 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/ar.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | يُرجع كائن مُعين مُهيأ يمكن استخدامه في خطوة توليد الصور | \ No newline at end of file +| `sampler` | SAMPLER | يُرجع كائن مُعين مُهيأ يمكن استخدامه في خطوة توليد الصور | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/pt-BR.md b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/pt-BR.md index 6a04c289b..169a7d5b4 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/pt-BR.md @@ -13,4 +13,4 @@ O nó SamplerEulerAncestralCFGPP cria um amostrador especializado para gerar ima | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de geração de imagens | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de geração de imagens | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/tr.md b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/tr.md index c69eb3300..b8767e6bc 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/tr.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/tr.md @@ -13,4 +13,4 @@ SamplerEulerAncestralCFGPP düğümü, Euler Ata yöntemini sınıflandırıcıs | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Görüntü oluşturma işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Görüntü oluşturma işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/zh-TW.md b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/zh-TW.md index 07221b250..e1e2e7cc9 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerEulerAncestralCFGPP/zh-TW.md @@ -13,4 +13,4 @@ SamplerEulerAncestralCFGPP 節點建立了一個專門的取樣器,使用 Eule | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在影像生成流程中使用 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在影像生成流程中使用 | diff --git a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/ar.md b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/ar.md index 9e6425b60..ee255d4af 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/ar.md +++ b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `sampler` | SAMPLER | يُرجع مثيلًا مُهيأً لأخذ عينات Euler CFG++ | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/pt-BR.md b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/pt-BR.md index b7924e924..04b0286c7 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/pt-BR.md @@ -12,4 +12,4 @@ O nó SamplerEulerCFGpp fornece um método de amostragem Euler CFG++ para gerar | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna uma instância configurada do amostrador Euler CFG++ | \ No newline at end of file +| `sampler` | SAMPLER | Retorna uma instância configurada do amostrador Euler CFG++ | diff --git a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/tr.md b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/tr.md index 819647056..c904fa1c4 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/tr.md +++ b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/tr.md @@ -12,4 +12,4 @@ SamplerEulerCFGpp düğümü, çıktılar oluşturmak için bir Euler CFG++ örn | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Yapılandırılmış bir Euler CFG++ örnekleyici örneği döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Yapılandırılmış bir Euler CFG++ örnekleyici örneği döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/zh-TW.md b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/zh-TW.md index ed82924a8..dc11633f3 100644 --- a/comfyui_embedded_docs/docs/SamplerEulerCFGpp/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerEulerCFGpp/zh-TW.md @@ -12,4 +12,4 @@ SamplerEulerCFGpp 節點提供了一種用於生成輸出的 Euler CFG++ 採樣 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的 Euler CFG++ 採樣器實例 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的 Euler CFG++ 採樣器實例 | diff --git a/comfyui_embedded_docs/docs/SamplerLCMUpscale/ar.md b/comfyui_embedded_docs/docs/SamplerLCMUpscale/ar.md index 2111ad877..d4f2302cb 100644 --- a/comfyui_embedded_docs/docs/SamplerLCMUpscale/ar.md +++ b/comfyui_embedded_docs/docs/SamplerLCMUpscale/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | يُرجع كائن عينة مُهيأ يمكن استخدامه في خطوة أخذ العينات | \ No newline at end of file +| `sampler` | SAMPLER | يُرجع كائن عينة مُهيأ يمكن استخدامه في خطوة أخذ العينات | diff --git a/comfyui_embedded_docs/docs/SamplerLCMUpscale/pt-BR.md b/comfyui_embedded_docs/docs/SamplerLCMUpscale/pt-BR.md index e1be69787..819161dd4 100644 --- a/comfyui_embedded_docs/docs/SamplerLCMUpscale/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerLCMUpscale/pt-BR.md @@ -14,4 +14,4 @@ O nó SamplerLCMUpscale fornece um método de amostragem especializado que combi | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Retorna um objeto amostrador configurado que pode ser usado no pipeline de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerLCMUpscale/tr.md b/comfyui_embedded_docs/docs/SamplerLCMUpscale/tr.md index a2421ee44..6f945cb57 100644 --- a/comfyui_embedded_docs/docs/SamplerLCMUpscale/tr.md +++ b/comfyui_embedded_docs/docs/SamplerLCMUpscale/tr.md @@ -14,4 +14,4 @@ SamplerLCMUpscale düğümü, Gizli Tutarlılık Modeli (LCM) örneklemesini gö | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir örnekleyici nesnesi döndürür | diff --git a/comfyui_embedded_docs/docs/SamplerLCMUpscale/zh-TW.md b/comfyui_embedded_docs/docs/SamplerLCMUpscale/zh-TW.md index f65964eae..3f5f13656 100644 --- a/comfyui_embedded_docs/docs/SamplerLCMUpscale/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerLCMUpscale/zh-TW.md @@ -14,4 +14,4 @@ SamplerLCMUpscale 節點提供了一種專門的取樣方法,結合了潛在 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在取樣管線中使用 | \ No newline at end of file +| `sampler` | SAMPLER | 返回一個已配置的取樣器物件,可在取樣管線中使用 | diff --git a/comfyui_embedded_docs/docs/SamplerLMS/ar.md b/comfyui_embedded_docs/docs/SamplerLMS/ar.md index 847e0a284..60d215b83 100644 --- a/comfyui_embedded_docs/docs/SamplerLMS/ar.md +++ b/comfyui_embedded_docs/docs/SamplerLMS/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | كائن عيِّن LMS مُهيأ يمكن استخدامه في خطوة أخذ العينات (sampling pipeline) | \ No newline at end of file +| `sampler` | SAMPLER | كائن عيِّن LMS مُهيأ يمكن استخدامه في خطوة أخذ العينات (sampling pipeline) | diff --git a/comfyui_embedded_docs/docs/SamplerLMS/pt-BR.md b/comfyui_embedded_docs/docs/SamplerLMS/pt-BR.md index 1347d819d..169ca1186 100644 --- a/comfyui_embedded_docs/docs/SamplerLMS/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerLMS/pt-BR.md @@ -12,4 +12,4 @@ O nó SamplerLMS cria um amostrador de Mínimos Quadrados Médios (LMS, do ingl | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Um objeto amostrador LMS configurado que pode ser usado no pipeline de amostragem | \ No newline at end of file +| `sampler` | SAMPLER | Um objeto amostrador LMS configurado que pode ser usado no pipeline de amostragem | diff --git a/comfyui_embedded_docs/docs/SamplerLMS/tr.md b/comfyui_embedded_docs/docs/SamplerLMS/tr.md index c521d327d..838f0c982 100644 --- a/comfyui_embedded_docs/docs/SamplerLMS/tr.md +++ b/comfyui_embedded_docs/docs/SamplerLMS/tr.md @@ -12,4 +12,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir LMS örnekleyici nesnesi | \ No newline at end of file +| `sampler` | SAMPLER | Örnekleme işlem hattında kullanılabilecek yapılandırılmış bir LMS örnekleyici nesnesi | diff --git a/comfyui_embedded_docs/docs/SamplerLMS/zh-TW.md b/comfyui_embedded_docs/docs/SamplerLMS/zh-TW.md index 493897648..3aae76bf6 100644 --- a/comfyui_embedded_docs/docs/SamplerLMS/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerLMS/zh-TW.md @@ -12,4 +12,4 @@ SamplerLMS 節點建立一個最小均方(LMS)取樣器,用於擴散模型 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 已設定的 LMS 取樣器物件,可在取樣管線中使用 | \ No newline at end of file +| `sampler` | SAMPLER | 已設定的 LMS 取樣器物件,可在取樣管線中使用 | diff --git a/comfyui_embedded_docs/docs/SamplerSASolver/ar.md b/comfyui_embedded_docs/docs/SamplerSASolver/ar.md index 1aa0d9052..a8e038643 100644 --- a/comfyui_embedded_docs/docs/SamplerSASolver/ar.md +++ b/comfyui_embedded_docs/docs/SamplerSASolver/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | كائن أخذ عينات مُهيأ يمكن استخدامه مع نماذج الانتشار | \ No newline at end of file +| `sampler` | SAMPLER | كائن أخذ عينات مُهيأ يمكن استخدامه مع نماذج الانتشار | diff --git a/comfyui_embedded_docs/docs/SamplerSASolver/pt-BR.md b/comfyui_embedded_docs/docs/SamplerSASolver/pt-BR.md index bc2f47fa6..60e3206d6 100644 --- a/comfyui_embedded_docs/docs/SamplerSASolver/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerSASolver/pt-BR.md @@ -20,4 +20,4 @@ O nó SamplerSASolver implementa um algoritmo de amostragem personalizado para m | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser usado com modelos de difusão | \ No newline at end of file +| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser usado com modelos de difusão | diff --git a/comfyui_embedded_docs/docs/SamplerSASolver/tr.md b/comfyui_embedded_docs/docs/SamplerSASolver/tr.md index 5db108b54..9265b3a2f 100644 --- a/comfyui_embedded_docs/docs/SamplerSASolver/tr.md +++ b/comfyui_embedded_docs/docs/SamplerSASolver/tr.md @@ -20,4 +20,4 @@ SamplerSASolver düğümü, difüzyon modelleri için özel bir örnekleme algor | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Difüzyon modelleri ile kullanılabilecek yapılandırılmış bir örnekleyici nesnesi | \ No newline at end of file +| `sampler` | SAMPLER | Difüzyon modelleri ile kullanılabilecek yapılandırılmış bir örnekleyici nesnesi | diff --git a/comfyui_embedded_docs/docs/SamplerSASolver/zh-TW.md b/comfyui_embedded_docs/docs/SamplerSASolver/zh-TW.md index bbe8a6b8f..62875643d 100644 --- a/comfyui_embedded_docs/docs/SamplerSASolver/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerSASolver/zh-TW.md @@ -20,4 +20,4 @@ SamplerSASolver 節點為擴散模型實作了一種自定義採樣演算法。 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 已配置的採樣器物件,可與擴散模型一起使用 | \ No newline at end of file +| `sampler` | SAMPLER | 已配置的採樣器物件,可與擴散模型一起使用 | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/ar.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/ar.md index 501d655a8..6fcae520c 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/ar.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sampler` | SAMPLER | كائن مُعين مُكون يمكن تمريره إلى عقد المعاينة الأخرى. | \ No newline at end of file +| `sampler` | SAMPLER | كائن مُعين مُكون يمكن تمريره إلى عقد المعاينة الأخرى. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/en.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/en.md index 226c8c769..405d3c2c3 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/en.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/en.md @@ -15,4 +15,4 @@ This node provides a configurable sampler for generating images. It implements t | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `sampler` | SAMPLER | A configured sampler object that can be passed to other sampling nodes. | \ No newline at end of file +| `sampler` | SAMPLER | A configured sampler object that can be passed to other sampling nodes. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/es.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/es.md index 7558da392..79ce47232 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/es.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/es.md @@ -15,4 +15,4 @@ Este nodo proporciona un muestreador configurable para generar imágenes. Implem | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Un objeto muestreador configurado que puede pasarse a otros nodos de muestreo. | \ No newline at end of file +| `sampler` | SAMPLER | Un objeto muestreador configurado que puede pasarse a otros nodos de muestreo. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/fr.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/fr.md index 2fa01f66c..0f9bc1145 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/fr.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/fr.md @@ -15,4 +15,4 @@ Ce nœud fournit un échantillonneur configurable pour générer des images. Il | Nom de la Sortie | Type de Données | Description | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Un objet échantillonneur configuré qui peut être transmis à d'autres nœuds d'échantillonnage. | \ No newline at end of file +| `sampler` | SAMPLER | Un objet échantillonneur configuré qui peut être transmis à d'autres nœuds d'échantillonnage. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/ja.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/ja.md index 36f6cdb7a..7b3780523 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/ja.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/ja.md @@ -15,4 +15,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 他のサンプリングノードに渡すことができる、設定済みのサンプラーオブジェクト。 | \ No newline at end of file +| `sampler` | SAMPLER | 他のサンプリングノードに渡すことができる、設定済みのサンプラーオブジェクト。 | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/ko.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/ko.md index 6e0880567..61a7314e7 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/ko.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/ko.md @@ -15,4 +15,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 다른 샘플링 노드로 전달할 수 있는 구성된 샘플러 객체입니다. | \ No newline at end of file +| `sampler` | SAMPLER | 다른 샘플링 노드로 전달할 수 있는 구성된 샘플러 객체입니다. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/pt-BR.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/pt-BR.md index f93fe4538..910b66b0a 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/pt-BR.md @@ -15,4 +15,4 @@ Este nó fornece um amostrador configurável para gerar imagens. Ele implementa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser passado para outros nós de amostragem. | \ No newline at end of file +| `sampler` | SAMPLER | Um objeto amostrador configurado que pode ser passado para outros nós de amostragem. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/ru.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/ru.md index 217949c44..1da9b6d41 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/ru.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/ru.md @@ -15,4 +15,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Сконфигурированный объект сэмплера, который может быть передан другим узлам сэмплирования. | \ No newline at end of file +| `sampler` | SAMPLER | Сконфигурированный объект сэмплера, который может быть передан другим узлам сэмплирования. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/tr.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/tr.md index 52847aed6..4506fee2b 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/tr.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/tr.md @@ -15,4 +15,4 @@ Bu düğüm, görüntü oluşturmak için yapılandırılabilir bir örnekleyici | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sampler` | SAMPLER | Diğer örnekleme düğümlerine aktarılabilen yapılandırılmış bir örnekleyici nesnesi. | \ No newline at end of file +| `sampler` | SAMPLER | Diğer örnekleme düğümlerine aktarılabilen yapılandırılmış bir örnekleyici nesnesi. | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/zh-TW.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/zh-TW.md index b65154c58..feda95f67 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 一個已配置的採樣器物件,可以傳遞給其他採樣節點。 | \ No newline at end of file +| `sampler` | SAMPLER | 一個已配置的採樣器物件,可以傳遞給其他採樣節點。 | diff --git a/comfyui_embedded_docs/docs/SamplerSEEDS2/zh.md b/comfyui_embedded_docs/docs/SamplerSEEDS2/zh.md index fe974802d..37733e76f 100644 --- a/comfyui_embedded_docs/docs/SamplerSEEDS2/zh.md +++ b/comfyui_embedded_docs/docs/SamplerSEEDS2/zh.md @@ -15,4 +15,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `sampler` | SAMPLER | 一个已配置的采样器对象,可以传递给其他采样节点。 | \ No newline at end of file +| `sampler` | SAMPLER | 一个已配置的采样器对象,可以传递给其他采样节点。 | diff --git a/comfyui_embedded_docs/docs/SamplingPercentToSigma/ar.md b/comfyui_embedded_docs/docs/SamplingPercentToSigma/ar.md index b62b51f08..a9422dd74 100644 --- a/comfyui_embedded_docs/docs/SamplingPercentToSigma/ar.md +++ b/comfyui_embedded_docs/docs/SamplingPercentToSigma/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `sigma_value` | FLOAT | قيمة سيغما المحوّلة المقابلة لنسبة أخذ العينات المدخلة | \ No newline at end of file +| `sigma_value` | FLOAT | قيمة سيغما المحوّلة المقابلة لنسبة أخذ العينات المدخلة | diff --git a/comfyui_embedded_docs/docs/SamplingPercentToSigma/pt-BR.md b/comfyui_embedded_docs/docs/SamplingPercentToSigma/pt-BR.md index 37756ccf2..09750c2fd 100644 --- a/comfyui_embedded_docs/docs/SamplingPercentToSigma/pt-BR.md +++ b/comfyui_embedded_docs/docs/SamplingPercentToSigma/pt-BR.md @@ -14,4 +14,4 @@ O nó SamplingPercentToSigma converte um valor percentual de amostragem em um va | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigma_value` | FLOAT | O valor sigma convertido correspondente à porcentagem de amostragem de entrada | \ No newline at end of file +| `sigma_value` | FLOAT | O valor sigma convertido correspondente à porcentagem de amostragem de entrada | diff --git a/comfyui_embedded_docs/docs/SamplingPercentToSigma/tr.md b/comfyui_embedded_docs/docs/SamplingPercentToSigma/tr.md index 13050128c..fdd62a1b7 100644 --- a/comfyui_embedded_docs/docs/SamplingPercentToSigma/tr.md +++ b/comfyui_embedded_docs/docs/SamplingPercentToSigma/tr.md @@ -14,4 +14,4 @@ SamplingPercentToSigma düğümü, bir örnekleme yüzdesi değerini modelin ör | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigma_value` | FLOAT | Giriş örnekleme yüzdesine karşılık gelen dönüştürülmüş sigma değeri | \ No newline at end of file +| `sigma_value` | FLOAT | Giriş örnekleme yüzdesine karşılık gelen dönüştürülmüş sigma değeri | diff --git a/comfyui_embedded_docs/docs/SamplingPercentToSigma/zh-TW.md b/comfyui_embedded_docs/docs/SamplingPercentToSigma/zh-TW.md index 33e9f3b2e..de18b1140 100644 --- a/comfyui_embedded_docs/docs/SamplingPercentToSigma/zh-TW.md +++ b/comfyui_embedded_docs/docs/SamplingPercentToSigma/zh-TW.md @@ -16,4 +16,4 @@ SamplingPercentToSigma 節點使用模型的採樣參數將採樣百分比值轉 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigma_value` | FLOAT | 對應輸入採樣百分比的轉換後 sigma 值 | \ No newline at end of file +| `sigma_value` | FLOAT | 對應輸入採樣百分比的轉換後 sigma 值 | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedPng/ar.md b/comfyui_embedded_docs/docs/SaveAnimatedPng/ar.md index 6565cdd40..284c7b153 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedPng/ar.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedPng/ar.md @@ -15,4 +15,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-----------------------------------------------------------------------------------| -| `ui` | N/A | يُوفر مُكون واجهة مستخدم يعرض صور PNG المُتحركة المُنشأة ويشير إلى ما إذا كانت الصورة المُتحركة أحادية الإطار أو متعددة الإطارات. | \ No newline at end of file +| `ui` | N/A | يُوفر مُكون واجهة مستخدم يعرض صور PNG المُتحركة المُنشأة ويشير إلى ما إذا كانت الصورة المُتحركة أحادية الإطار أو متعددة الإطارات. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedPng/pt-BR.md b/comfyui_embedded_docs/docs/SaveAnimatedPng/pt-BR.md index ee2097a5b..136c8ef26 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedPng/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedPng/pt-BR.md @@ -15,4 +15,4 @@ O nó SaveAnimatedPNG é projetado para criar e salvar imagens PNG animadas a pa | Campo | Tipo de Dados | Descrição | | :--- | :--- | :--- | -| `ui` | N/A | Fornece um componente de interface do usuário que exibe as imagens PNG animadas geradas e indica se a animação possui um único quadro ou múltiplos quadros. | \ No newline at end of file +| `ui` | N/A | Fornece um componente de interface do usuário que exibe as imagens PNG animadas geradas e indica se a animação possui um único quadro ou múltiplos quadros. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedPng/tr.md b/comfyui_embedded_docs/docs/SaveAnimatedPng/tr.md index 35ff2f249..671a96035 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedPng/tr.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedPng/tr.md @@ -15,4 +15,4 @@ SaveAnimatedPNG düğümü, bir dizi kareden animasyonlu PNG görselleri oluştu | Alan | Veri Türü | Açıklama | |------|-----------|--------------------------------------------------------------------------------| -| `ui` | N/A | Oluşturulan animasyonlu PNG görsellerini gösteren ve animasyonun tek kareli mi yoksa çok kareli mi olduğunu belirten bir kullanıcı arayüzü bileşeni sağlar. | \ No newline at end of file +| `ui` | N/A | Oluşturulan animasyonlu PNG görsellerini gösteren ve animasyonun tek kareli mi yoksa çok kareli mi olduğunu belirten bir kullanıcı arayüzü bileşeni sağlar. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedPng/zh-TW.md b/comfyui_embedded_docs/docs/SaveAnimatedPng/zh-TW.md index 3ea1652a6..865e1fc34 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedPng/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedPng/zh-TW.md @@ -15,4 +15,4 @@ SaveAnimatedPNG 節點專為從影格序列建立並儲存動態 PNG 影像而 | 欄位名稱 | 資料類型 | 描述說明 | |----------|-----------|----------| -| `ui` | N/A | 提供顯示生成動態 PNG 影像的 UI 組件,並指示動畫是單影格還是多影格。 | \ No newline at end of file +| `ui` | N/A | 提供顯示生成動態 PNG 影像的 UI 組件,並指示動畫是單影格還是多影格。 | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedWebp/ar.md b/comfyui_embedded_docs/docs/SaveAnimatedWebp/ar.md index 202c4fa5f..91f3e48e1 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedWebp/ar.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedWebp/ar.md @@ -17,4 +17,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|-----------------------------------------------------------------------------------| -| `ui` | N/A | يوفر مكون واجهة مستخدم يعرض صور WEBP المتحركة المحفوظة مع البيانات الوصفية الخاصة بها، ويشير إلى ما إذا كانت الرسوم المتحركة مفعلة. | \ No newline at end of file +| `ui` | N/A | يوفر مكون واجهة مستخدم يعرض صور WEBP المتحركة المحفوظة مع البيانات الوصفية الخاصة بها، ويشير إلى ما إذا كانت الرسوم المتحركة مفعلة. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedWebp/pt-BR.md b/comfyui_embedded_docs/docs/SaveAnimatedWebp/pt-BR.md index 146e80062..985f2886e 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedWebp/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedWebp/pt-BR.md @@ -17,4 +17,4 @@ Este nó foi projetado para salvar uma sequência de imagens como um arquivo WEB | Campo | Tipo de Dados | Descrição | | :--- | :--- | :--- | -| `ui` | N/A | Fornece um componente de interface do usuário que exibe as imagens WEBP animadas salvas junto com seus metadados e indica se a animação está habilitada. | \ No newline at end of file +| `ui` | N/A | Fornece um componente de interface do usuário que exibe as imagens WEBP animadas salvas junto com seus metadados e indica se a animação está habilitada. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedWebp/tr.md b/comfyui_embedded_docs/docs/SaveAnimatedWebp/tr.md index c83d0e4ab..635f9b8c7 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedWebp/tr.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedWebp/tr.md @@ -17,4 +17,4 @@ Bu düğüm, bir dizi görüntüyü animasyonlu bir WEBP dosyası olarak kaydetm | Alan | Veri Türü | Açıklama | |-------|-------------|-----------------------------------------------------------------------------------| -| `ui` | N/A | Kaydedilen animasyonlu WEBP görüntülerini meta verileriyle birlikte gösteren bir UI bileşeni sağlar ve animasyonun etkin olup olmadığını belirtir. | \ No newline at end of file +| `ui` | N/A | Kaydedilen animasyonlu WEBP görüntülerini meta verileriyle birlikte gösteren bir UI bileşeni sağlar ve animasyonun etkin olup olmadığını belirtir. | diff --git a/comfyui_embedded_docs/docs/SaveAnimatedWebp/zh-TW.md b/comfyui_embedded_docs/docs/SaveAnimatedWebp/zh-TW.md index 332884c75..a7340be6c 100644 --- a/comfyui_embedded_docs/docs/SaveAnimatedWebp/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveAnimatedWebp/zh-TW.md @@ -17,4 +17,4 @@ | 欄位名稱 | 資料類型 | 描述 | |----------|-----------|------| -| `ui` | N/A | 提供顯示已儲存動畫 WEBP 影像及其元數據的 UI 組件,並指示動畫是否已啟用。 | \ No newline at end of file +| `ui` | N/A | 提供顯示已儲存動畫 WEBP 影像及其元數據的 UI 組件,並指示動畫是否已啟用。 | diff --git a/comfyui_embedded_docs/docs/SaveAudio/ar.md b/comfyui_embedded_docs/docs/SaveAudio/ar.md index 6209a73c4..154b5d2a2 100644 --- a/comfyui_embedded_docs/docs/SaveAudio/ar.md +++ b/comfyui_embedded_docs/docs/SaveAudio/ar.md @@ -15,4 +15,4 @@ | اسم الإخراج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| *لا شيء* | - | لا تُرجع هذه العُقدة أي بيانات إخراج ولكنها تحفظ ملف الصوت في دليل الإخراج | \ No newline at end of file +| *لا شيء* | - | لا تُرجع هذه العُقدة أي بيانات إخراج ولكنها تحفظ ملف الصوت في دليل الإخراج | diff --git a/comfyui_embedded_docs/docs/SaveAudio/pt-BR.md b/comfyui_embedded_docs/docs/SaveAudio/pt-BR.md index c00fdde7a..a6027486e 100644 --- a/comfyui_embedded_docs/docs/SaveAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveAudio/pt-BR.md @@ -15,4 +15,4 @@ O nó SaveAudio salva dados de áudio em um arquivo no formato FLAC. Ele recebe | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma* | - | Este nó não retorna nenhum dado de saída, mas salva o arquivo de áudio no diretório de saída | \ No newline at end of file +| *Nenhuma* | - | Este nó não retorna nenhum dado de saída, mas salva o arquivo de áudio no diretório de saída | diff --git a/comfyui_embedded_docs/docs/SaveAudio/tr.md b/comfyui_embedded_docs/docs/SaveAudio/tr.md index 707402668..651eee313 100644 --- a/comfyui_embedded_docs/docs/SaveAudio/tr.md +++ b/comfyui_embedded_docs/docs/SaveAudio/tr.md @@ -15,4 +15,4 @@ SaveAudio düğümü, ses verilerini FLAC formatında bir dosyaya kaydeder. Ses | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez, ancak ses dosyasını çıktı dizinine kaydeder | \ No newline at end of file +| *Yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez, ancak ses dosyasını çıktı dizinine kaydeder | diff --git a/comfyui_embedded_docs/docs/SaveAudio/zh-TW.md b/comfyui_embedded_docs/docs/SaveAudio/zh-TW.md index 36ec99316..ce28c8d78 100644 --- a/comfyui_embedded_docs/docs/SaveAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveAudio/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| *無* | - | 此節點不會返回任何輸出資料,但會將音訊檔案儲存到輸出目錄中 | \ No newline at end of file +| *無* | - | 此節點不會返回任何輸出資料,但會將音訊檔案儲存到輸出目錄中 | diff --git a/comfyui_embedded_docs/docs/SaveAudioMP3/ar.md b/comfyui_embedded_docs/docs/SaveAudioMP3/ar.md index 824df4e6d..3b32e1106 100644 --- a/comfyui_embedded_docs/docs/SaveAudioMP3/ar.md +++ b/comfyui_embedded_docs/docs/SaveAudioMP3/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| *لا يوجد* | - | هذه العُقدة لا تُرجع أي بيانات مخرجات، ولكنها تحفظ ملف الصوت في دليل الإخراج | \ No newline at end of file +| *لا يوجد* | - | هذه العُقدة لا تُرجع أي بيانات مخرجات، ولكنها تحفظ ملف الصوت في دليل الإخراج | diff --git a/comfyui_embedded_docs/docs/SaveAudioMP3/pt-BR.md b/comfyui_embedded_docs/docs/SaveAudioMP3/pt-BR.md index 64ab3c596..56eb9d597 100644 --- a/comfyui_embedded_docs/docs/SaveAudioMP3/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveAudioMP3/pt-BR.md @@ -16,4 +16,4 @@ O nó SaveAudioMP3 salva dados de áudio como um arquivo MP3. Ele recebe uma ent | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma* | - | Este nó não retorna nenhum dado de saída, mas salva o arquivo de áudio no diretório de saída | \ No newline at end of file +| *Nenhuma* | - | Este nó não retorna nenhum dado de saída, mas salva o arquivo de áudio no diretório de saída | diff --git a/comfyui_embedded_docs/docs/SaveAudioMP3/tr.md b/comfyui_embedded_docs/docs/SaveAudioMP3/tr.md index c86936a72..2328338af 100644 --- a/comfyui_embedded_docs/docs/SaveAudioMP3/tr.md +++ b/comfyui_embedded_docs/docs/SaveAudioMP3/tr.md @@ -16,4 +16,4 @@ SaveAudioMP3 düğümü, ses verilerini bir MP3 dosyası olarak kaydeder. Ses gi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez, ancak ses dosyasını çıktı dizinine kaydeder | \ No newline at end of file +| *Yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez, ancak ses dosyasını çıktı dizinine kaydeder | diff --git a/comfyui_embedded_docs/docs/SaveAudioMP3/zh-TW.md b/comfyui_embedded_docs/docs/SaveAudioMP3/zh-TW.md index 923ca5f68..d60d01308 100644 --- a/comfyui_embedded_docs/docs/SaveAudioMP3/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveAudioMP3/zh-TW.md @@ -18,4 +18,4 @@ SaveAudioMP3 節點將音訊資料儲存為 MP3 檔案。它接收音訊輸入 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| *無* | - | 此節點不會傳回任何輸出資料,但會將音訊檔案儲存到輸出目錄 | \ No newline at end of file +| *無* | - | 此節點不會傳回任何輸出資料,但會將音訊檔案儲存到輸出目錄 | diff --git a/comfyui_embedded_docs/docs/SaveAudioOpus/ar.md b/comfyui_embedded_docs/docs/SaveAudioOpus/ar.md index 8f26df0d2..e6dea947a 100644 --- a/comfyui_embedded_docs/docs/SaveAudioOpus/ar.md +++ b/comfyui_embedded_docs/docs/SaveAudioOpus/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|--------------|--------| -| - | - | هذه العقدة لا تُرجع أي قيم مخرجات. وظيفتها الأساسية هي حفظ ملف الصوت على القرص. | \ No newline at end of file +| - | - | هذه العقدة لا تُرجع أي قيم مخرجات. وظيفتها الأساسية هي حفظ ملف الصوت على القرص. | diff --git a/comfyui_embedded_docs/docs/SaveAudioOpus/pt-BR.md b/comfyui_embedded_docs/docs/SaveAudioOpus/pt-BR.md index fb0cafc85..babc4d255 100644 --- a/comfyui_embedded_docs/docs/SaveAudioOpus/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveAudioOpus/pt-BR.md @@ -14,4 +14,4 @@ O nó SaveAudioOpus salva dados de áudio em um arquivo no formato Opus. Ele rec | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| - | - | Este nó não retorna nenhum valor de saída. Sua função principal é salvar o arquivo de áudio no disco. | \ No newline at end of file +| - | - | Este nó não retorna nenhum valor de saída. Sua função principal é salvar o arquivo de áudio no disco. | diff --git a/comfyui_embedded_docs/docs/SaveAudioOpus/tr.md b/comfyui_embedded_docs/docs/SaveAudioOpus/tr.md index 69c8d41cc..51482706c 100644 --- a/comfyui_embedded_docs/docs/SaveAudioOpus/tr.md +++ b/comfyui_embedded_docs/docs/SaveAudioOpus/tr.md @@ -14,4 +14,4 @@ SaveAudioOpus düğümü, ses verilerini Opus formatında bir dosyaya kaydeder. | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| - | - | Bu düğüm herhangi bir çıktı değeri döndürmez. Birincil işlevi olarak ses dosyasını diske kaydeder. | \ No newline at end of file +| - | - | Bu düğüm herhangi bir çıktı değeri döndürmez. Birincil işlevi olarak ses dosyasını diske kaydeder. | diff --git a/comfyui_embedded_docs/docs/SaveAudioOpus/zh-TW.md b/comfyui_embedded_docs/docs/SaveAudioOpus/zh-TW.md index 379f74826..95ae2d848 100644 --- a/comfyui_embedded_docs/docs/SaveAudioOpus/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveAudioOpus/zh-TW.md @@ -14,4 +14,4 @@ SaveAudioOpus 節點將音訊資料儲存為 Opus 格式檔案。它接收音訊 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| - | - | 此節點不會傳回任何輸出值,其主要功能是將音訊檔案儲存至磁碟。 | \ No newline at end of file +| - | - | 此節點不會傳回任何輸出值,其主要功能是將音訊檔案儲存至磁碟。 | diff --git a/comfyui_embedded_docs/docs/SaveGLB/ar.md b/comfyui_embedded_docs/docs/SaveGLB/ar.md index f69924725..d49d6b230 100644 --- a/comfyui_embedded_docs/docs/SaveGLB/ar.md +++ b/comfyui_embedded_docs/docs/SaveGLB/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `ui` | UI | يعرض ملفات GLB المحفوظة في واجهة المستخدم مع معلومات اسم الملف والمجلد الفرعي | \ No newline at end of file +| `ui` | UI | يعرض ملفات GLB المحفوظة في واجهة المستخدم مع معلومات اسم الملف والمجلد الفرعي | diff --git a/comfyui_embedded_docs/docs/SaveGLB/pt-BR.md b/comfyui_embedded_docs/docs/SaveGLB/pt-BR.md index d9e8cf993..a221391ea 100644 --- a/comfyui_embedded_docs/docs/SaveGLB/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveGLB/pt-BR.md @@ -13,4 +13,4 @@ O nó SaveGLB salva dados de malha 3D como arquivos GLB, que é um formato comum | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `ui` | UI | Exibe os arquivos GLB salvos na interface do usuário com informações de nome de arquivo e subpasta | \ No newline at end of file +| `ui` | UI | Exibe os arquivos GLB salvos na interface do usuário com informações de nome de arquivo e subpasta | diff --git a/comfyui_embedded_docs/docs/SaveGLB/tr.md b/comfyui_embedded_docs/docs/SaveGLB/tr.md index e9a60f4c7..ff52396e7 100644 --- a/comfyui_embedded_docs/docs/SaveGLB/tr.md +++ b/comfyui_embedded_docs/docs/SaveGLB/tr.md @@ -13,4 +13,4 @@ SaveGLB düğümü, 3B mesh verilerini GLB dosyaları olarak kaydeder; bu, 3B mo | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui` | UI | Kaydedilen GLB dosyalarını, dosya adı ve alt klasör bilgisiyle kullanıcı arayüzünde görüntüler | \ No newline at end of file +| `ui` | UI | Kaydedilen GLB dosyalarını, dosya adı ve alt klasör bilgisiyle kullanıcı arayüzünde görüntüler | diff --git a/comfyui_embedded_docs/docs/SaveGLB/zh-TW.md b/comfyui_embedded_docs/docs/SaveGLB/zh-TW.md index de46bc947..2d175e015 100644 --- a/comfyui_embedded_docs/docs/SaveGLB/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveGLB/zh-TW.md @@ -15,4 +15,4 @@ SaveGLB 節點將 3D 網格資料儲存為 GLB 檔案,這是一種常見的 3D | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `ui` | UI | 在使用者介面中顯示已儲存的 GLB 檔案,包含檔案名稱和子資料夾資訊 | \ No newline at end of file +| `ui` | UI | 在使用者介面中顯示已儲存的 GLB 檔案,包含檔案名稱和子資料夾資訊 | diff --git a/comfyui_embedded_docs/docs/SaveImage/ar.md b/comfyui_embedded_docs/docs/SaveImage/ar.md index 5a04877cc..c32e2323c 100644 --- a/comfyui_embedded_docs/docs/SaveImage/ar.md +++ b/comfyui_embedded_docs/docs/SaveImage/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `ui` | UI_RESULT | تُخرج هذه العقدة نتيجة واجهة مستخدم تحتوي على قائمة بالصور المحفوظة مع أسماء ملفاتها والمجلدات الفرعية الخاصة بها. لا تُخرج بيانات للاتصال بعُقد أخرى. | \ No newline at end of file +| `ui` | UI_RESULT | تُخرج هذه العقدة نتيجة واجهة مستخدم تحتوي على قائمة بالصور المحفوظة مع أسماء ملفاتها والمجلدات الفرعية الخاصة بها. لا تُخرج بيانات للاتصال بعُقد أخرى. | diff --git a/comfyui_embedded_docs/docs/SaveImage/en.md b/comfyui_embedded_docs/docs/SaveImage/en.md index 191e83f05..d87af3869 100644 --- a/comfyui_embedded_docs/docs/SaveImage/en.md +++ b/comfyui_embedded_docs/docs/SaveImage/en.md @@ -13,4 +13,4 @@ The SaveImage node saves the images it receives to your `ComfyUI/output` directo | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `ui` | UI_RESULT | This node outputs a UI result containing a list of the saved images with their filenames and subfolders. It does not output data for connecting to other nodes. | \ No newline at end of file +| `ui` | UI_RESULT | This node outputs a UI result containing a list of the saved images with their filenames and subfolders. It does not output data for connecting to other nodes. | diff --git a/comfyui_embedded_docs/docs/SaveImage/es.md b/comfyui_embedded_docs/docs/SaveImage/es.md index f38724843..91cbdf4f5 100644 --- a/comfyui_embedded_docs/docs/SaveImage/es.md +++ b/comfyui_embedded_docs/docs/SaveImage/es.md @@ -13,4 +13,4 @@ El nodo SaveImage guarda las imágenes que recibe en el directorio `ComfyUI/outp | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `ui` | UI_RESULT | Este nodo genera un resultado de interfaz de usuario que contiene una lista de las imágenes guardadas con sus nombres de archivo y subcarpetas. No genera datos para conectar a otros nodos. | \ No newline at end of file +| `ui` | UI_RESULT | Este nodo genera un resultado de interfaz de usuario que contiene una lista de las imágenes guardadas con sus nombres de archivo y subcarpetas. No genera datos para conectar a otros nodos. | diff --git a/comfyui_embedded_docs/docs/SaveImage/fr.md b/comfyui_embedded_docs/docs/SaveImage/fr.md index 5080c1d3d..f2617c720 100644 --- a/comfyui_embedded_docs/docs/SaveImage/fr.md +++ b/comfyui_embedded_docs/docs/SaveImage/fr.md @@ -11,4 +11,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `ui` | UI_RESULT | Ce nœud produit un résultat d'interface utilisateur contenant une liste des images enregistrées avec leurs noms de fichiers et sous-dossiers. Il ne produit pas de données pour les connecter à d'autres nœuds. | \ No newline at end of file +| `ui` | UI_RESULT | Ce nœud produit un résultat d'interface utilisateur contenant une liste des images enregistrées avec leurs noms de fichiers et sous-dossiers. Il ne produit pas de données pour les connecter à d'autres nœuds. | diff --git a/comfyui_embedded_docs/docs/SaveImage/ja.md b/comfyui_embedded_docs/docs/SaveImage/ja.md index f5c723bae..65d413287 100644 --- a/comfyui_embedded_docs/docs/SaveImage/ja.md +++ b/comfyui_embedded_docs/docs/SaveImage/ja.md @@ -13,4 +13,4 @@ SaveImageノードは、受け取った画像を`ComfyUI/output`ディレクト | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `ui` | UI_RESULT | このノードは、保存された画像のファイル名とサブフォルダのリストを含むUI結果を出力します。他のノードに接続するためのデータは出力しません。 | \ No newline at end of file +| `ui` | UI_RESULT | このノードは、保存された画像のファイル名とサブフォルダのリストを含むUI結果を出力します。他のノードに接続するためのデータは出力しません。 | diff --git a/comfyui_embedded_docs/docs/SaveImage/ko.md b/comfyui_embedded_docs/docs/SaveImage/ko.md index 9f434527a..e6482b279 100644 --- a/comfyui_embedded_docs/docs/SaveImage/ko.md +++ b/comfyui_embedded_docs/docs/SaveImage/ko.md @@ -13,4 +13,4 @@ SaveImage 노드는 수신한 이미지를 `ComfyUI/output` 디렉토리에 저 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `ui` | UI_RESULT | 이 노드는 저장된 이미지의 파일명과 하위 폴더 목록을 포함하는 UI 결과를 출력합니다. 다른 노드에 연결하기 위한 데이터는 출력하지 않습니다. | \ No newline at end of file +| `ui` | UI_RESULT | 이 노드는 저장된 이미지의 파일명과 하위 폴더 목록을 포함하는 UI 결과를 출력합니다. 다른 노드에 연결하기 위한 데이터는 출력하지 않습니다. | diff --git a/comfyui_embedded_docs/docs/SaveImage/pt-BR.md b/comfyui_embedded_docs/docs/SaveImage/pt-BR.md index c3de110d5..9a216c33d 100644 --- a/comfyui_embedded_docs/docs/SaveImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveImage/pt-BR.md @@ -13,4 +13,4 @@ O nó SaveImage salva as imagens que recebe no diretório `ComfyUI/output` do se | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `ui` | UI_RESULT | Este nó gera um resultado de interface do usuário contendo uma lista das imagens salvas com seus nomes de arquivo e subpastas. Ele não emite dados para conexão com outros nós. | \ No newline at end of file +| `ui` | UI_RESULT | Este nó gera um resultado de interface do usuário contendo uma lista das imagens salvas com seus nomes de arquivo e subpastas. Ele não emite dados para conexão com outros nós. | diff --git a/comfyui_embedded_docs/docs/SaveImage/ru.md b/comfyui_embedded_docs/docs/SaveImage/ru.md index c5d0de23e..f56828582 100644 --- a/comfyui_embedded_docs/docs/SaveImage/ru.md +++ b/comfyui_embedded_docs/docs/SaveImage/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `ui` | UI_RESULT | Этот узел выводит UI-результат, содержащий список сохранённых изображений с их именами файлов и подпапками. Он не выводит данные для подключения к другим узлам. | \ No newline at end of file +| `ui` | UI_RESULT | Этот узел выводит UI-результат, содержащий список сохранённых изображений с их именами файлов и подпапками. Он не выводит данные для подключения к другим узлам. | diff --git a/comfyui_embedded_docs/docs/SaveImage/tr.md b/comfyui_embedded_docs/docs/SaveImage/tr.md index 53374234f..fcb0c7e74 100644 --- a/comfyui_embedded_docs/docs/SaveImage/tr.md +++ b/comfyui_embedded_docs/docs/SaveImage/tr.md @@ -13,4 +13,4 @@ SaveImage düğümü aldığı görüntüleri `ComfyUI/output` dizininize kayded | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui` | UI_RESULT | Bu düğüm, kaydedilen görüntülerin dosya adları ve alt klasörleriyle birlikte bir listesini içeren bir UI sonucu çıktılar. Diğer düğümlere bağlanmak için veri çıktılamaz. | \ No newline at end of file +| `ui` | UI_RESULT | Bu düğüm, kaydedilen görüntülerin dosya adları ve alt klasörleriyle birlikte bir listesini içeren bir UI sonucu çıktılar. Diğer düğümlere bağlanmak için veri çıktılamaz. | diff --git a/comfyui_embedded_docs/docs/SaveImage/zh-TW.md b/comfyui_embedded_docs/docs/SaveImage/zh-TW.md index 72e994376..442392c8e 100644 --- a/comfyui_embedded_docs/docs/SaveImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveImage/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `ui` | UI_RESULT | 此節點輸出一個 UI 結果,其中包含已儲存圖像的列表及其檔案名稱和子資料夾路徑。它不會輸出用於連接其他節點的數據。 | \ No newline at end of file +| `ui` | UI_RESULT | 此節點輸出一個 UI 結果,其中包含已儲存圖像的列表及其檔案名稱和子資料夾路徑。它不會輸出用於連接其他節點的數據。 | diff --git a/comfyui_embedded_docs/docs/SaveImage/zh.md b/comfyui_embedded_docs/docs/SaveImage/zh.md index 4e7a98599..7b8e2056c 100644 --- a/comfyui_embedded_docs/docs/SaveImage/zh.md +++ b/comfyui_embedded_docs/docs/SaveImage/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `ui` | UI_RESULT | 此节点输出一个 UI 结果,其中包含已保存图像及其文件名和子文件夹的列表。它不输出用于连接到其他节点的数据。 | \ No newline at end of file +| `ui` | UI_RESULT | 此节点输出一个 UI 结果,其中包含已保存图像及其文件名和子文件夹的列表。它不输出用于连接到其他节点的数据。 | diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ar.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ar.md index 6e8e64b02..a8c643522 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ar.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ar.md @@ -14,4 +14,4 @@ ## المخرجات -لا يحتوي هذا العقد على أي مخرجات. إنه عقد إخراج يقوم بعملية حفظ إلى نظام الملفات. \ No newline at end of file +لا يحتوي هذا العقد على أي مخرجات. إنه عقد إخراج يقوم بعملية حفظ إلى نظام الملفات. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/en.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/en.md index 11c23bd0e..11ab81a74 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/en.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/en.md @@ -14,4 +14,4 @@ This node saves a list of images to a specified folder within ComfyUI's output d ## Outputs -This node does not have any outputs. It is an output node that performs a save operation to the filesystem. \ No newline at end of file +This node does not have any outputs. It is an output node that performs a save operation to the filesystem. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/es.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/es.md index 42f472c1f..66bc36846 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/es.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/es.md @@ -14,4 +14,4 @@ Este nodo guarda una lista de imágenes en una carpeta específica dentro del di ## Salidas -Este nodo no tiene ninguna salida. Es un nodo de salida que realiza una operación de guardado en el sistema de archivos. \ No newline at end of file +Este nodo no tiene ninguna salida. Es un nodo de salida que realiza una operación de guardado en el sistema de archivos. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/fr.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/fr.md index 5df7a0199..00563ad1b 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/fr.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/fr.md @@ -14,4 +14,4 @@ Ce nœud enregistre une liste d'images dans un dossier spécifié au sein du ré ## Sorties -Ce nœud ne possède aucune sortie. C'est un nœud de sortie qui effectue une opération d'enregistrement sur le système de fichiers. \ No newline at end of file +Ce nœud ne possède aucune sortie. C'est un nœud de sortie qui effectue une opération d'enregistrement sur le système de fichiers. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ja.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ja.md index 236570782..dac0ead3d 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ja.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ja.md @@ -14,4 +14,4 @@ ## 出力 -このノードには出力はありません。ファイルシステムへの保存操作を行う出力ノードです。 \ No newline at end of file +このノードには出力はありません。ファイルシステムへの保存操作を行う出力ノードです。 diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ko.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ko.md index 5cc126093..91ae14321 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ko.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ko.md @@ -14,4 +14,4 @@ ## 출력 -이 노드는 출력을 가지지 않습니다. 파일 시스템에 저장 작업을 수행하는 출력 노드입니다. \ No newline at end of file +이 노드는 출력을 가지지 않습니다. 파일 시스템에 저장 작업을 수행하는 출력 노드입니다. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/pt-BR.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/pt-BR.md index a5f47df03..42240784c 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/pt-BR.md @@ -14,4 +14,4 @@ Este nó salva uma lista de imagens em uma pasta especificada dentro do diretór ## Saídas -Este nó não possui nenhuma saída. É um nó de saída que executa uma operação de salvamento no sistema de arquivos. \ No newline at end of file +Este nó não possui nenhuma saída. É um nó de saída que executa uma operação de salvamento no sistema de arquivos. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ru.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ru.md index 391ae5e4d..cf973238a 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ru.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/ru.md @@ -14,4 +14,4 @@ ## Выходы -Этот узел не имеет выходов. Это выходной узел, который выполняет операцию сохранения в файловую систему. \ No newline at end of file +Этот узел не имеет выходов. Это выходной узел, который выполняет операцию сохранения в файловую систему. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/tr.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/tr.md index 109f3fa59..357e4da9c 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/tr.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/tr.md @@ -14,4 +14,4 @@ Bu düğüm, ComfyUI'nin çıktı dizini içinde belirtilen bir klasöre bir gö ## Çıktılar -Bu düğümün herhangi bir çıktısı yoktur. Dosya sistemine bir kaydetme işlemi gerçekleştiren bir çıktı düğümüdür. \ No newline at end of file +Bu düğümün herhangi bir çıktısı yoktur. Dosya sistemine bir kaydetme işlemi gerçekleştiren bir çıktı düğümüdür. diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh-TW.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh-TW.md index 2377a81ae..89dd5f40a 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh-TW.md @@ -14,4 +14,4 @@ ## 輸出結果 -此節點沒有任何輸出。它是一個執行檔案系統儲存操作的輸出節點。 \ No newline at end of file +此節點沒有任何輸出。它是一個執行檔案系統儲存操作的輸出節點。 diff --git a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh.md b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh.md index 048c2dae3..a0cbc554e 100644 --- a/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh.md +++ b/comfyui_embedded_docs/docs/SaveImageDataSetToFolder/zh.md @@ -14,4 +14,4 @@ ## 输出参数 -此节点没有任何输出。它是一个执行文件系统保存操作的输出节点。 \ No newline at end of file +此节点没有任何输出。它是一个执行文件系统保存操作的输出节点。 diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ar.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ar.md index 39c589d44..e38b066b3 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ar.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| - | - | لا تحتوي هذه العقدة على أي مخرجات. فهي تحفظ الملفات مباشرةً في نظام الملفات. | \ No newline at end of file +| - | - | لا تحتوي هذه العقدة على أي مخرجات. فهي تحفظ الملفات مباشرةً في نظام الملفات. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/en.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/en.md index f02f187d4..903a43656 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/en.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/en.md @@ -17,4 +17,4 @@ The Save Image and Text Dataset to Folder node saves a list of images and their | Output Name | Data Type | Description | |-------------|-----------|-------------| -| - | - | This node does not have any outputs. It saves files directly to the filesystem. | \ No newline at end of file +| - | - | This node does not have any outputs. It saves files directly to the filesystem. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/es.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/es.md index 7021ec192..b01521d85 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/es.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/es.md @@ -17,4 +17,4 @@ El nodo Guardar Conjunto de Datos de Imagen y Texto en Carpeta guarda una lista | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| - | - | Este nodo no tiene salidas. Guarda los archivos directamente en el sistema de archivos. | \ No newline at end of file +| - | - | Este nodo no tiene salidas. Guarda los archivos directamente en el sistema de archivos. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/fr.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/fr.md index 1c0bca028..c3fefb6a6 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/fr.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/fr.md @@ -15,4 +15,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| - | - | Ce nœud ne possède aucune sortie. Il enregistre les fichiers directement sur le système de fichiers. | \ No newline at end of file +| - | - | Ce nœud ne possède aucune sortie. Il enregistre les fichiers directement sur le système de fichiers. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ja.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ja.md index 68c3e4d70..fd69318ff 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ja.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ja.md @@ -17,4 +17,4 @@ Save Image and Text Dataset to Folder ノードは、画像のリストとそれ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| - | - | このノードは出力を持ちません。ファイルを直接ファイルシステムに保存します。 | \ No newline at end of file +| - | - | このノードは出力を持ちません。ファイルを直接ファイルシステムに保存します。 | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ko.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ko.md index d12f8beba..d53d8aab5 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ko.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ko.md @@ -17,4 +17,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| - | - | 이 노드는 어떠한 출력도 생성하지 않습니다. 파일을 파일 시스템에 직접 저장합니다. | \ No newline at end of file +| - | - | 이 노드는 어떠한 출력도 생성하지 않습니다. 파일을 파일 시스템에 직접 저장합니다. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/pt-BR.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/pt-BR.md index 96723238a..7fc6456ee 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/pt-BR.md @@ -17,4 +17,4 @@ O nó **Salvar Conjunto de Dados de Imagem e Texto em Pasta** salva uma lista de | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| - | - | Este nó não possui saídas. Ele salva os arquivos diretamente no sistema de arquivos. | \ No newline at end of file +| - | - | Este nó não possui saídas. Ele salva os arquivos diretamente no sistema de arquivos. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ru.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ru.md index c717246d9..5c50ba41c 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ru.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/ru.md @@ -17,4 +17,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| - | - | Этот узел не имеет выходных данных. Он сохраняет файлы напрямую в файловую систему. | \ No newline at end of file +| - | - | Этот узел не имеет выходных данных. Он сохраняет файлы напрямую в файловую систему. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/tr.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/tr.md index e8bddfbc4..b204e37b0 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/tr.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/tr.md @@ -17,4 +17,4 @@ Save Image and Text Dataset to Folder düğümü, bir dizi görüntüyü ve bunl | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| - | - | Bu düğümün herhangi bir çıktısı yoktur. Dosyaları doğrudan dosya sistemine kaydeder. | \ No newline at end of file +| - | - | Bu düğümün herhangi bir çıktısı yoktur. Dosyaları doğrudan dosya sistemine kaydeder. | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh-TW.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh-TW.md index 1a163d26e..71b3ea06d 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| - | - | 此節點沒有任何輸出。它直接將檔案儲存到檔案系統。 | \ No newline at end of file +| - | - | 此節點沒有任何輸出。它直接將檔案儲存到檔案系統。 | diff --git a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh.md b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh.md index 3a82b7701..3f103d93a 100644 --- a/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh.md +++ b/comfyui_embedded_docs/docs/SaveImageTextDataSetToFolder/zh.md @@ -17,4 +17,4 @@ Save Image and Text Dataset to Folder 节点将一系列图像及其对应的文 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| - | - | 此节点没有任何输出。它直接将文件保存到文件系统。 | \ No newline at end of file +| - | - | 此节点没有任何输出。它直接将文件保存到文件系统。 | diff --git a/comfyui_embedded_docs/docs/SaveLatent/ar.md b/comfyui_embedded_docs/docs/SaveLatent/ar.md index ef7d9ba0c..aecfa664f 100644 --- a/comfyui_embedded_docs/docs/SaveLatent/ar.md +++ b/comfyui_embedded_docs/docs/SaveLatent/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `ui` | UI | يوفر معلومات موقع الملف للبيانات الكامنة المحفوظة في واجهة ComfyUI | \ No newline at end of file +| `ui` | UI | يوفر معلومات موقع الملف للبيانات الكامنة المحفوظة في واجهة ComfyUI | diff --git a/comfyui_embedded_docs/docs/SaveLatent/pt-BR.md b/comfyui_embedded_docs/docs/SaveLatent/pt-BR.md index 76aa0651b..4ad95def4 100644 --- a/comfyui_embedded_docs/docs/SaveLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveLatent/pt-BR.md @@ -15,4 +15,4 @@ O nó SaveLatent salva tensores latentes no disco como arquivos para uso posteri | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `ui` | UI | Fornece informações de localização do arquivo para o latente salvo na interface do ComfyUI | \ No newline at end of file +| `ui` | UI | Fornece informações de localização do arquivo para o latente salvo na interface do ComfyUI | diff --git a/comfyui_embedded_docs/docs/SaveLatent/tr.md b/comfyui_embedded_docs/docs/SaveLatent/tr.md index 4aa59a8e0..d93cf28dd 100644 --- a/comfyui_embedded_docs/docs/SaveLatent/tr.md +++ b/comfyui_embedded_docs/docs/SaveLatent/tr.md @@ -15,4 +15,4 @@ SaveLatent düğümü, gizli tensörleri daha sonra kullanılmak veya paylaşıl | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `ui` | UI | ComfyUI arayüzünde kaydedilen gizli dosya için konum bilgisi sağlar | \ No newline at end of file +| `ui` | UI | ComfyUI arayüzünde kaydedilen gizli dosya için konum bilgisi sağlar | diff --git a/comfyui_embedded_docs/docs/SaveLatent/zh-TW.md b/comfyui_embedded_docs/docs/SaveLatent/zh-TW.md index 346ffe995..50e635662 100644 --- a/comfyui_embedded_docs/docs/SaveLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveLatent/zh-TW.md @@ -17,4 +17,4 @@ SaveLatent 節點可將潛空間張量以檔案形式儲存至磁碟,供後續 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `ui` | UI | 在 ComfyUI 介面中提供已儲存潛空間檔案的位址資訊 | \ No newline at end of file +| `ui` | UI | 在 ComfyUI 介面中提供已儲存潛空間檔案的位址資訊 | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/ar.md b/comfyui_embedded_docs/docs/SaveLoRA/ar.md index 77ea49179..f57cc8960 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/ar.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| *لا يوجد* | N/A | لا تُخرج هذه العقدة أي بيانات إلى سير العمل. إنها عقدة إخراج تحفظ ملفًا على القرص. | \ No newline at end of file +| *لا يوجد* | N/A | لا تُخرج هذه العقدة أي بيانات إلى سير العمل. إنها عقدة إخراج تحفظ ملفًا على القرص. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/en.md b/comfyui_embedded_docs/docs/SaveLoRA/en.md index 8f6a689a4..76e56e68c 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/en.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/en.md @@ -16,4 +16,4 @@ The SaveLoRA node saves a LoRA (Low-Rank Adaptation) model to a file. It takes a | Output Name | Data Type | Description | |-------------|-----------|-------------| -| *None* | N/A | This node does not output any data to the workflow. It is an output node that saves a file to disk. | \ No newline at end of file +| *None* | N/A | This node does not output any data to the workflow. It is an output node that saves a file to disk. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/es.md b/comfyui_embedded_docs/docs/SaveLoRA/es.md index c7979651b..a962f5574 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/es.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/es.md @@ -16,4 +16,4 @@ El nodo SaveLoRA guarda un modelo LoRA (Adaptación de Bajo Rango) en un archivo | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| *Ninguna* | N/A | Este nodo no envía ningún dato al flujo de trabajo. Es un nodo de salida que guarda un archivo en el disco. | \ No newline at end of file +| *Ninguna* | N/A | Este nodo no envía ningún dato al flujo de trabajo. Es un nodo de salida que guarda un archivo en el disco. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/fr.md b/comfyui_embedded_docs/docs/SaveLoRA/fr.md index ce0cb93fb..e32982356 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/fr.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/fr.md @@ -14,4 +14,4 @@ | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| *Aucune* | N/A | Ce nœud ne renvoie aucune donnée dans le flux de travail. C'est un nœud de sortie qui enregistre un fichier sur le disque. | \ No newline at end of file +| *Aucune* | N/A | Ce nœud ne renvoie aucune donnée dans le flux de travail. C'est un nœud de sortie qui enregistre un fichier sur le disque. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/ja.md b/comfyui_embedded_docs/docs/SaveLoRA/ja.md index cc174ed00..08fd50808 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/ja.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/ja.md @@ -16,4 +16,4 @@ SaveLoRAノードは、LoRA(Low-Rank Adaptation)モデルをファイルと | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| *なし* | N/A | このノードはワークフローにデータを出力しません。ディスクにファイルを保存する出力ノードです。 | \ No newline at end of file +| *なし* | N/A | このノードはワークフローにデータを出力しません。ディスクにファイルを保存する出力ノードです。 | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/ko.md b/comfyui_embedded_docs/docs/SaveLoRA/ko.md index 094b5809b..2646de9b0 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/ko.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/ko.md @@ -16,4 +16,4 @@ SaveLoRA 노드는 LoRA(Low-Rank Adaptation) 모델을 파일로 저장합니다 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| *없음* | N/A | 이 노드는 워크플로우에 어떤 데이터도 출력하지 않습니다. 디스크에 파일을 저장하는 출력 노드입니다. | \ No newline at end of file +| *없음* | N/A | 이 노드는 워크플로우에 어떤 데이터도 출력하지 않습니다. 디스크에 파일을 저장하는 출력 노드입니다. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/pt-BR.md b/comfyui_embedded_docs/docs/SaveLoRA/pt-BR.md index 09d7d30de..73ed52443 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/pt-BR.md @@ -16,4 +16,4 @@ O nó SaveLoRA salva um modelo LoRA (Adaptação de Baixa Classificação) em um | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma* | N/A | Este nó não envia nenhum dado para o fluxo de trabalho. É um nó de saída que salva um arquivo no disco. | \ No newline at end of file +| *Nenhuma* | N/A | Este nó não envia nenhum dado para o fluxo de trabalho. É um nó de saída que salva um arquivo no disco. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/ru.md b/comfyui_embedded_docs/docs/SaveLoRA/ru.md index 21674dbc8..bc4b2b65a 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/ru.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/ru.md @@ -16,4 +16,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| *Нет* | N/A | Этот узел не передаёт никаких данных в рабочий процесс. Это выходной узел, который сохраняет файл на диск. | \ No newline at end of file +| *Нет* | N/A | Этот узел не передаёт никаких данных в рабочий процесс. Это выходной узел, который сохраняет файл на диск. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/tr.md b/comfyui_embedded_docs/docs/SaveLoRA/tr.md index 3e28be89e..8af017c9f 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/tr.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/tr.md @@ -16,4 +16,4 @@ SaveLoRA düğümü, bir LoRA (Düşük Dereceli Uyarlama) modelini bir dosyaya | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Yok* | Yok | Bu düğüm, iş akışına herhangi bir veri çıktısı sağlamaz. Diske bir dosya kaydeden bir çıktı düğümüdür. | \ No newline at end of file +| *Yok* | Yok | Bu düğüm, iş akışına herhangi bir veri çıktısı sağlamaz. Diske bir dosya kaydeden bir çıktı düğümüdür. | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/zh-TW.md b/comfyui_embedded_docs/docs/SaveLoRA/zh-TW.md index 0eb1b5fb1..7d2594bf0 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/zh-TW.md @@ -16,4 +16,4 @@ SaveLoRA 節點會將 LoRA(低秩適應)模型儲存至檔案。它接收一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| *無* | N/A | 此節點不會輸出任何資料至工作流程。它是一個輸出節點,負責將檔案儲存至磁碟。 | \ No newline at end of file +| *無* | N/A | 此節點不會輸出任何資料至工作流程。它是一個輸出節點,負責將檔案儲存至磁碟。 | diff --git a/comfyui_embedded_docs/docs/SaveLoRA/zh.md b/comfyui_embedded_docs/docs/SaveLoRA/zh.md index 0d6beb438..5683760c8 100644 --- a/comfyui_embedded_docs/docs/SaveLoRA/zh.md +++ b/comfyui_embedded_docs/docs/SaveLoRA/zh.md @@ -16,4 +16,4 @@ SaveLoRA 节点用于将 LoRA(低秩自适应)模型保存至文件。该节 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| *无* | 不适用 | 此节点不会向工作流输出任何数据。它是一个输出节点,负责将文件保存到磁盘。 | \ No newline at end of file +| *无* | 不适用 | 此节点不会向工作流输出任何数据。它是一个输出节点,负责将文件保存到磁盘。 | diff --git a/comfyui_embedded_docs/docs/SaveLoRANode/ar.md b/comfyui_embedded_docs/docs/SaveLoRANode/ar.md index b6fe17657..fcfc9b0c1 100644 --- a/comfyui_embedded_docs/docs/SaveLoRANode/ar.md +++ b/comfyui_embedded_docs/docs/SaveLoRANode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|---------| | *لا يوجد* | - | هذه العقدة لا تُرجع أي مخرجات ولكنها تحفظ نموذج LoRA في دليل الإخراج. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/SaveLoRANode/pt-BR.md b/comfyui_embedded_docs/docs/SaveLoRANode/pt-BR.md index 3255a74a5..5df7fb84b 100644 --- a/comfyui_embedded_docs/docs/SaveLoRANode/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveLoRANode/pt-BR.md @@ -14,4 +14,4 @@ O nó SaveLoRA salva modelos LoRA (Low-Rank Adaptation) no seu diretório de sa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma* | - | Este nó não retorna nenhuma saída, mas salva o modelo LoRA no diretório de saída. | \ No newline at end of file +| *Nenhuma* | - | Este nó não retorna nenhuma saída, mas salva o modelo LoRA no diretório de saída. | diff --git a/comfyui_embedded_docs/docs/SaveLoRANode/tr.md b/comfyui_embedded_docs/docs/SaveLoRANode/tr.md index e5a36b888..5bf262bce 100644 --- a/comfyui_embedded_docs/docs/SaveLoRANode/tr.md +++ b/comfyui_embedded_docs/docs/SaveLoRANode/tr.md @@ -14,4 +14,4 @@ SaveLoRA düğümü, LoRA (Düşük Dereceli Uyarlama) modellerini çıktı dizi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Yok* | - | Bu düğüm herhangi bir çıktı döndürmez, ancak LoRA modelini çıktı dizinine kaydeder. | \ No newline at end of file +| *Yok* | - | Bu düğüm herhangi bir çıktı döndürmez, ancak LoRA modelini çıktı dizinine kaydeder. | diff --git a/comfyui_embedded_docs/docs/SaveLoRANode/zh-TW.md b/comfyui_embedded_docs/docs/SaveLoRANode/zh-TW.md index 74e10869d..f25412686 100644 --- a/comfyui_embedded_docs/docs/SaveLoRANode/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveLoRANode/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| *無* | - | 此節點不返回任何輸出,但會將 LoRA 模型儲存到輸出目錄中。 | \ No newline at end of file +| *無* | - | 此節點不返回任何輸出,但會將 LoRA 模型儲存到輸出目錄中。 | diff --git a/comfyui_embedded_docs/docs/SaveSVGNode/ar.md b/comfyui_embedded_docs/docs/SaveSVGNode/ar.md index 5f1529d40..b3032f8f8 100644 --- a/comfyui_embedded_docs/docs/SaveSVGNode/ar.md +++ b/comfyui_embedded_docs/docs/SaveSVGNode/ar.md @@ -15,4 +15,4 @@ |-------------|-----------|-------------| | `ui` | DICT | يُرجع معلومات الملف بما في ذلك اسم الملف والمجلد الفرعي والنوع لعرضها في واجهة ComfyUI | -**ملاحظة:** تقوم هذه العقدة تلقائيًا بتضمين البيانات الوصفية لسير العمل (معلومات المطالبة والمعلومات الإضافية لـ PNG) في ملف SVG عندما تكون متاحة. يتم إدراج البيانات الوصفية كقسم CDATA داخل عنصر البيانات الوصفية في SVG. \ No newline at end of file +**ملاحظة:** تقوم هذه العقدة تلقائيًا بتضمين البيانات الوصفية لسير العمل (معلومات المطالبة والمعلومات الإضافية لـ PNG) في ملف SVG عندما تكون متاحة. يتم إدراج البيانات الوصفية كقسم CDATA داخل عنصر البيانات الوصفية في SVG. diff --git a/comfyui_embedded_docs/docs/SaveSVGNode/pt-BR.md b/comfyui_embedded_docs/docs/SaveSVGNode/pt-BR.md index 9dc517a90..3f6d94d5d 100644 --- a/comfyui_embedded_docs/docs/SaveSVGNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveSVGNode/pt-BR.md @@ -15,4 +15,4 @@ Salva arquivos SVG no disco. Este nó recebe dados SVG como entrada e os salva n |-------------|-----------|-------------| | `ui` | DICT | Retorna informações do arquivo, incluindo nome do arquivo, subpasta e tipo, para exibição na interface do ComfyUI | -**Observação:** Este nó incorpora automaticamente metadados do fluxo de trabalho (prompt e informações extras do tipo PNG) no arquivo SVG quando disponíveis. Os metadados são inseridos como uma seção CDATA dentro do elemento de metadados do SVG. \ No newline at end of file +**Observação:** Este nó incorpora automaticamente metadados do fluxo de trabalho (prompt e informações extras do tipo PNG) no arquivo SVG quando disponíveis. Os metadados são inseridos como uma seção CDATA dentro do elemento de metadados do SVG. diff --git a/comfyui_embedded_docs/docs/SaveSVGNode/tr.md b/comfyui_embedded_docs/docs/SaveSVGNode/tr.md index 5dbaab444..a2096f667 100644 --- a/comfyui_embedded_docs/docs/SaveSVGNode/tr.md +++ b/comfyui_embedded_docs/docs/SaveSVGNode/tr.md @@ -15,4 +15,4 @@ SVG dosyalarını diskte kaydeder. Bu düğüm, SVG verilerini girdi olarak alı |-------------|-----------|-------------| | `ui` | DICT | ComfyUI arayüzünde görüntülenmek üzere dosya adı, alt klasör ve tür dahil olmak üzere dosya bilgilerini döndürür | -**Not:** Bu düğüm, mevcut olduğunda iş akışı meta verilerini (prompt ve ek PNG bilgileri) otomatik olarak SVG dosyasına gömer. Meta veriler, SVG'nin meta veri öğesi içinde bir CDATA bölümü olarak eklenir. \ No newline at end of file +**Not:** Bu düğüm, mevcut olduğunda iş akışı meta verilerini (prompt ve ek PNG bilgileri) otomatik olarak SVG dosyasına gömer. Meta veriler, SVG'nin meta veri öğesi içinde bir CDATA bölümü olarak eklenir. diff --git a/comfyui_embedded_docs/docs/SaveSVGNode/zh-TW.md b/comfyui_embedded_docs/docs/SaveSVGNode/zh-TW.md index f9235b277..895545c3c 100644 --- a/comfyui_embedded_docs/docs/SaveSVGNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveSVGNode/zh-TW.md @@ -15,4 +15,4 @@ |-------------|-----------|-------------| | `ui` | DICT | 回傳檔案資訊,包含檔案名稱、子資料夾和類型,用於在 ComfyUI 介面中顯示 | -**注意:** 此節點在可用時會自動將工作流程中繼資料(提示和額外的 PNG 資訊)嵌入 SVG 檔案中。中繼資料會以 CDATA 區段的形式插入至 SVG 的 metadata 元素內。 \ No newline at end of file +**注意:** 此節點在可用時會自動將工作流程中繼資料(提示和額外的 PNG 資訊)嵌入 SVG 檔案中。中繼資料會以 CDATA 區段的形式插入至 SVG 的 metadata 元素內。 diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/ar.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/ar.md index 501d6aa7d..03efdcf9c 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/ar.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/ar.md @@ -15,4 +15,4 @@ ## المخرجات -لا ينتج هذا العقد أي بيانات مخرجات. وظيفته هي حفظ الملفات على القرص الخاص بك. \ No newline at end of file +لا ينتج هذا العقد أي بيانات مخرجات. وظيفته هي حفظ الملفات على القرص الخاص بك. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/en.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/en.md index 981330e0d..77950b4f2 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/en.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/en.md @@ -15,4 +15,4 @@ This node saves a prepared training dataset to your computer's hard drive. It ta ## Outputs -This node does not produce any output data. Its function is to save files to your disk. \ No newline at end of file +This node does not produce any output data. Its function is to save files to your disk. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/es.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/es.md index 052550d55..0823c9174 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/es.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/es.md @@ -15,4 +15,4 @@ Este nodo guarda un conjunto de datos de entrenamiento preparado en el disco dur ## Salidas -Este nodo no produce ningún dato de salida. Su función es guardar archivos en tu disco. \ No newline at end of file +Este nodo no produce ningún dato de salida. Su función es guardar archivos en tu disco. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/fr.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/fr.md index 81d9b4be2..310ef5f9e 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/fr.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/fr.md @@ -15,4 +15,4 @@ Ce nœud enregistre un jeu de données d'entraînement préparé sur le disque d ## Sorties -Ce nœud ne produit aucune donnée en sortie. Sa fonction est d'enregistrer des fichiers sur votre disque. \ No newline at end of file +Ce nœud ne produit aucune donnée en sortie. Sa fonction est d'enregistrer des fichiers sur votre disque. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/ja.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/ja.md index 689c58710..e70bd5a98 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/ja.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/ja.md @@ -15,4 +15,4 @@ ## 出力 -このノードは出力データを生成しません。その機能はファイルをディスクに保存することです。 \ No newline at end of file +このノードは出力データを生成しません。その機能はファイルをディスクに保存することです。 diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/ko.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/ko.md index aa8ebfb24..7e904fb33 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/ko.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/ko.md @@ -15,4 +15,4 @@ ## 출력 -이 노드는 어떠한 출력 데이터도 생성하지 않습니다. 이 노드의 기능은 파일을 디스크에 저장하는 것입니다. \ No newline at end of file +이 노드는 어떠한 출력 데이터도 생성하지 않습니다. 이 노드의 기능은 파일을 디스크에 저장하는 것입니다. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/pt-BR.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/pt-BR.md index 8107ff46b..db4c8497b 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/pt-BR.md @@ -15,4 +15,4 @@ Este nó salva um conjunto de dados de treinamento preparado no disco rígido do ## Saídas -Este nó não produz nenhum dado de saída. Sua função é salvar arquivos no seu disco. \ No newline at end of file +Este nó não produz nenhum dado de saída. Sua função é salvar arquivos no seu disco. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/ru.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/ru.md index 7914ccf29..fe25b50c5 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/ru.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/ru.md @@ -15,4 +15,4 @@ ## Выходные данные -Этот узел не выдает никаких выходных данных. Его функция — сохранять файлы на ваш диск. \ No newline at end of file +Этот узел не выдает никаких выходных данных. Его функция — сохранять файлы на ваш диск. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/tr.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/tr.md index 0cd7f161b..6957c0e30 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/tr.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/tr.md @@ -15,4 +15,4 @@ Bu düğüm, hazırlanmış bir eğitim veri kümesini bilgisayarınızın sabit ## Çıkışlar -Bu düğüm herhangi bir çıktı verisi üretmez. İşlevi, dosyaları diskinize kaydetmektir. \ No newline at end of file +Bu düğüm herhangi bir çıktı verisi üretmez. İşlevi, dosyaları diskinize kaydetmektir. diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/zh-TW.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/zh-TW.md index 4633919eb..3bbadb6cc 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/zh-TW.md @@ -15,4 +15,4 @@ ## 輸出結果 -此節點不產生任何輸出資料。其功能是將檔案儲存到您的磁碟。 \ No newline at end of file +此節點不產生任何輸出資料。其功能是將檔案儲存到您的磁碟。 diff --git a/comfyui_embedded_docs/docs/SaveTrainingDataset/zh.md b/comfyui_embedded_docs/docs/SaveTrainingDataset/zh.md index 4974df0ed..f16a8e175 100644 --- a/comfyui_embedded_docs/docs/SaveTrainingDataset/zh.md +++ b/comfyui_embedded_docs/docs/SaveTrainingDataset/zh.md @@ -15,4 +15,4 @@ ## 输出 -此节点不产生任何输出数据。其功能是将文件保存到磁盘。 \ No newline at end of file +此节点不产生任何输出数据。其功能是将文件保存到磁盘。 diff --git a/comfyui_embedded_docs/docs/SaveVideo/ar.md b/comfyui_embedded_docs/docs/SaveVideo/ar.md index b2a5c89a2..2d830661c 100644 --- a/comfyui_embedded_docs/docs/SaveVideo/ar.md +++ b/comfyui_embedded_docs/docs/SaveVideo/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| *لا توجد مخرجات* | - | هذه العُقدة لا تُرجع أي بيانات مخرجات. | \ No newline at end of file +| *لا توجد مخرجات* | - | هذه العُقدة لا تُرجع أي بيانات مخرجات. | diff --git a/comfyui_embedded_docs/docs/SaveVideo/pt-BR.md b/comfyui_embedded_docs/docs/SaveVideo/pt-BR.md index 0e67645cd..ba5b2f06e 100644 --- a/comfyui_embedded_docs/docs/SaveVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveVideo/pt-BR.md @@ -15,4 +15,4 @@ O nó SaveVideo salva o conteúdo de vídeo de entrada no diretório de saída d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| *Nenhuma saída* | - | Este nó não retorna nenhum dado de saída. | \ No newline at end of file +| *Nenhuma saída* | - | Este nó não retorna nenhum dado de saída. | diff --git a/comfyui_embedded_docs/docs/SaveVideo/tr.md b/comfyui_embedded_docs/docs/SaveVideo/tr.md index fd774206e..10744c53f 100644 --- a/comfyui_embedded_docs/docs/SaveVideo/tr.md +++ b/comfyui_embedded_docs/docs/SaveVideo/tr.md @@ -15,4 +15,4 @@ SaveVideo düğümü, giriş video içeriğini ComfyUI çıktı dizininize kayde | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *Çıktı yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez. | \ No newline at end of file +| *Çıktı yok* | - | Bu düğüm herhangi bir çıktı verisi döndürmez. | diff --git a/comfyui_embedded_docs/docs/SaveVideo/zh-TW.md b/comfyui_embedded_docs/docs/SaveVideo/zh-TW.md index 73d15a663..5ed40326b 100644 --- a/comfyui_embedded_docs/docs/SaveVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveVideo/zh-TW.md @@ -17,4 +17,4 @@ SaveVideo 節點將輸入的影片內容儲存到您的 ComfyUI 輸出目錄中 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| *無輸出* | - | 此節點不返回任何輸出資料。 | \ No newline at end of file +| *無輸出* | - | 此節點不返回任何輸出資料。 | diff --git a/comfyui_embedded_docs/docs/SaveWEBM/ar.md b/comfyui_embedded_docs/docs/SaveWEBM/ar.md index 076c79aa5..320d04475 100644 --- a/comfyui_embedded_docs/docs/SaveWEBM/ar.md +++ b/comfyui_embedded_docs/docs/SaveWEBM/ar.md @@ -16,4 +16,4 @@ | اسم المُخْرَج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `ui` | PREVIEW | معاينة الفيديو التي تُظهِر ملف WEBM المحفوظ | \ No newline at end of file +| `ui` | PREVIEW | معاينة الفيديو التي تُظهِر ملف WEBM المحفوظ | diff --git a/comfyui_embedded_docs/docs/SaveWEBM/pt-BR.md b/comfyui_embedded_docs/docs/SaveWEBM/pt-BR.md index 02f0e1e2c..5cc2ed73a 100644 --- a/comfyui_embedded_docs/docs/SaveWEBM/pt-BR.md +++ b/comfyui_embedded_docs/docs/SaveWEBM/pt-BR.md @@ -16,4 +16,4 @@ O nó SaveWEBM salva uma sequência de imagens como um arquivo de vídeo WEBM. E | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `ui` | PREVIEW | Prévia do vídeo mostrando o arquivo WEBM salvo | \ No newline at end of file +| `ui` | PREVIEW | Prévia do vídeo mostrando o arquivo WEBM salvo | diff --git a/comfyui_embedded_docs/docs/SaveWEBM/tr.md b/comfyui_embedded_docs/docs/SaveWEBM/tr.md index c88e7eef7..4e58ddfda 100644 --- a/comfyui_embedded_docs/docs/SaveWEBM/tr.md +++ b/comfyui_embedded_docs/docs/SaveWEBM/tr.md @@ -16,4 +16,4 @@ SaveWEBM düğümü, bir dizi görüntüyü WEBM video dosyası olarak kaydeder. | Çıktı Adı | Veri Tipi | Açıklama | |-------------|-----------|-------------| -| `ui` | PREVIEW | Kaydedilen WEBM dosyasını gösteren video önizlemesi | \ No newline at end of file +| `ui` | PREVIEW | Kaydedilen WEBM dosyasını gösteren video önizlemesi | diff --git a/comfyui_embedded_docs/docs/SaveWEBM/zh-TW.md b/comfyui_embedded_docs/docs/SaveWEBM/zh-TW.md index 82050aea9..5a02dba18 100644 --- a/comfyui_embedded_docs/docs/SaveWEBM/zh-TW.md +++ b/comfyui_embedded_docs/docs/SaveWEBM/zh-TW.md @@ -16,4 +16,4 @@ SaveWEBM 節點將一系列圖像儲存為 WEBM 影片檔案。它接收多個 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `ui` | PREVIEW | 顯示已儲存 WEBM 檔案的影片預覽 | \ No newline at end of file +| `ui` | PREVIEW | 顯示已儲存 WEBM 檔案的影片預覽 | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/ar.md b/comfyui_embedded_docs/docs/ScaleROPE/ar.md index 2757e18ac..64f4ab11c 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/ar.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج بعد تطبيق معاملات القياس والإزاحة الجديدة لـ ROPE عليه. | \ No newline at end of file +| `model` | MODEL | النموذج بعد تطبيق معاملات القياس والإزاحة الجديدة لـ ROPE عليه. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/en.md b/comfyui_embedded_docs/docs/ScaleROPE/en.md index fe3cb4267..65020d5f4 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/en.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/en.md @@ -18,4 +18,4 @@ The ScaleROPE node allows you to modify the Rotary Position Embedding (ROPE) of | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `model` | MODEL | The model with the new ROPE scaling and shifting parameters applied. | \ No newline at end of file +| `model` | MODEL | The model with the new ROPE scaling and shifting parameters applied. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/es.md b/comfyui_embedded_docs/docs/ScaleROPE/es.md index 955f3aa10..d4bdb5974 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/es.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/es.md @@ -18,4 +18,4 @@ El nodo ScaleROPE permite modificar el Embedding de Posición Rotacional (ROPE) | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `model` | MODEL | El modelo con los nuevos parámetros de escalado y desplazamiento ROPE aplicados. | \ No newline at end of file +| `model` | MODEL | El modelo con los nuevos parámetros de escalado y desplazamiento ROPE aplicados. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/fr.md b/comfyui_embedded_docs/docs/ScaleROPE/fr.md index 49fe6f077..4b83b391b 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/fr.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/fr.md @@ -18,4 +18,4 @@ Le nœud ScaleROPE vous permet de modifier l'encodage positionnel rotatif (ROPE) | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `model` | MODEL | Le modèle avec les nouveaux paramètres de mise à l'échelle et de décalage du ROPE appliqués. | \ No newline at end of file +| `model` | MODEL | Le modèle avec les nouveaux paramètres de mise à l'échelle et de décalage du ROPE appliqués. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/ja.md b/comfyui_embedded_docs/docs/ScaleROPE/ja.md index 7b4aa3ad7..992e7bf92 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/ja.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/ja.md @@ -18,4 +18,4 @@ ScaleROPEノードは、モデルのRotary Position Embedding(ROPE)を変更 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `model` | MODEL | 新しいROPEスケーリングおよびシフトパラメータが適用されたモデル。 | \ No newline at end of file +| `model` | MODEL | 新しいROPEスケーリングおよびシフトパラメータが適用されたモデル。 | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/ko.md b/comfyui_embedded_docs/docs/ScaleROPE/ko.md index 26fe99ab2..ce1dfec4c 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/ko.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/ko.md @@ -18,4 +18,4 @@ ScaleROPE 노드를 사용하면 모델의 회전 위치 임베딩(ROPE)을 X, Y | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `model` | MODEL | 새로운 ROPE 스케일링 및 시프트 매개변수가 적용된 모델입니다. | \ No newline at end of file +| `model` | MODEL | 새로운 ROPE 스케일링 및 시프트 매개변수가 적용된 모델입니다. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/pt-BR.md b/comfyui_embedded_docs/docs/ScaleROPE/pt-BR.md index 032c9c569..cd1e0fb94 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/pt-BR.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/pt-BR.md @@ -18,4 +18,4 @@ O nó ScaleROPE permite modificar o Embedding de Posição Rotacional (ROPE) de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com os novos parâmetros de escala e deslocamento do ROPE aplicados. | \ No newline at end of file +| `model` | MODEL | O modelo com os novos parâmetros de escala e deslocamento do ROPE aplicados. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/ru.md b/comfyui_embedded_docs/docs/ScaleROPE/ru.md index c383469d4..fd8be3728 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/ru.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/ru.md @@ -18,4 +18,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `model` | MODEL | Модель с применёнными новыми параметрами масштабирования и сдвига ROPE. | \ No newline at end of file +| `model` | MODEL | Модель с применёнными новыми параметрами масштабирования и сдвига ROPE. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/tr.md b/comfyui_embedded_docs/docs/ScaleROPE/tr.md index 50116e54f..b39e91dbc 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/tr.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/tr.md @@ -18,4 +18,4 @@ ScaleROPE düğümü, bir modelin Döner Konum Yerleştirmesinin (ROPE) X, Y ve | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Yeni ROPE ölçeklendirme ve kaydırma parametreleri uygulanmış model. | \ No newline at end of file +| `model` | MODEL | Yeni ROPE ölçeklendirme ve kaydırma parametreleri uygulanmış model. | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/zh-TW.md b/comfyui_embedded_docs/docs/ScaleROPE/zh-TW.md index 37034d87f..19be96f88 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/zh-TW.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/zh-TW.md @@ -18,4 +18,4 @@ ScaleROPE 節點允許您透過對模型的 X、Y 和 T(時間)分量分別 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用新的 ROPE 縮放和偏移參數的模型。 | \ No newline at end of file +| `model` | MODEL | 已應用新的 ROPE 縮放和偏移參數的模型。 | diff --git a/comfyui_embedded_docs/docs/ScaleROPE/zh.md b/comfyui_embedded_docs/docs/ScaleROPE/zh.md index 2841be3ca..7e5234bf9 100644 --- a/comfyui_embedded_docs/docs/ScaleROPE/zh.md +++ b/comfyui_embedded_docs/docs/ScaleROPE/zh.md @@ -18,4 +18,4 @@ ScaleROPE 节点允许您通过对其 X、Y 和 T(时间)分量分别应用 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 应用了新的 ROPE 缩放和偏移参数的模型。 | \ No newline at end of file +| `model` | MODEL | 应用了新的 ROPE 缩放和偏移参数的模型。 | diff --git a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/ar.md b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/ar.md index cdf557a81..f5fa038a4 100644 --- a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/ar.md +++ b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/ar.md @@ -18,4 +18,4 @@ |---------------|--------------|-------------| | `positive` | `CONDITIONING` | عناصر التوجيه الإيجابية المُحسنة الناتجة عن عملية التكبير. | | `negative` | `CONDITIONING` | عناصر التوجيه السلبية المُحسنة الناتجة عن عملية التكبير. | -| `latent` | `LATENT` | تمثيل كامن تم إنشاؤه أثناء عملية التكبير، والذي يمكن استخدامه في مزيد من المعالجة أو تدريب النماذج. | \ No newline at end of file +| `latent` | `LATENT` | تمثيل كامن تم إنشاؤه أثناء عملية التكبير، والذي يمكن استخدامه في مزيد من المعالجة أو تدريب النماذج. | diff --git a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/pt-BR.md b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/pt-BR.md index 37e24a4e2..91cad9d8d 100644 --- a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/pt-BR.md @@ -18,4 +18,4 @@ Este nó é especializado em aprimorar a resolução de imagens por meio de um p |---------------|--------------|-------------| | `positive` | `CONDITIONING` | Os elementos de condicionamento positivo refinados resultantes do processo de ampliação. | | `negative` | `CONDITIONING` | Os elementos de condicionamento negativo refinados resultantes do processo de ampliação. | -| `latent` | `LATENT` | Uma representação latente gerada durante o processo de ampliação, que pode ser utilizada em processamentos posteriores ou no treinamento de modelos. | \ No newline at end of file +| `latent` | `LATENT` | Uma representação latente gerada durante o processo de ampliação, que pode ser utilizada em processamentos posteriores ou no treinamento de modelos. | diff --git a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/tr.md b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/tr.md index bb0362808..ed53652cf 100644 --- a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/tr.md +++ b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/tr.md @@ -18,4 +18,4 @@ Bu düğüm, görüntülerin çözünürlüğünü, çıktıyı iyileştirmek i |---------------|----------------|-------------| | `positive` | `CONDITIONING` | Büyütme işlemi sonucunda ortaya çıkan, iyileştirilmiş olumlu koşullandırma öğeleri. | | `negative` | `CONDITIONING` | Büyütme işlemi sonucunda ortaya çıkan, iyileştirilmiş olumsuz koşullandırma öğeleri. | -| `latent` | `LATENT` | Büyütme işlemi sırasında oluşturulan, ileri işleme veya model eğitiminde kullanılabilecek bir gizil (latent) temsil. | \ No newline at end of file +| `latent` | `LATENT` | Büyütme işlemi sırasında oluşturulan, ileri işleme veya model eğitiminde kullanılabilecek bir gizil (latent) temsil. | diff --git a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/zh-TW.md b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/zh-TW.md index 8c2e0a10c..0d14606d2 100644 --- a/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/Sd4xupscaleConditioning/zh-TW.md @@ -18,4 +18,4 @@ |---------------|--------------|-------------| | `positive` | `CONDITIONING` | 經過超解析度處理後產生的精煉正向條件化元素。 | | `negative` | `CONDITIONING` | 經過超解析度處理後產生的精煉負向條件化元素。 | -| `latent` | `LATENT` | 在超解析度過程中生成的潛在表示,可在後續處理或模型訓練中使用。 | \ No newline at end of file +| `latent` | `LATENT` | 在超解析度過程中生成的潛在表示,可在後續處理或模型訓練中使用。 | diff --git a/comfyui_embedded_docs/docs/SdTurboScheduler/ar.md b/comfyui_embedded_docs/docs/SdTurboScheduler/ar.md index 28e5c1d32..7d814a0d5 100644 --- a/comfyui_embedded_docs/docs/SdTurboScheduler/ar.md +++ b/comfyui_embedded_docs/docs/SdTurboScheduler/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | | --- | --- | --- | -| `sigmas` | `SIGMAS` | سلسلة من قيم سيجما تم توليدها بناءً على النموذج المحدد وعدد الخطوات ومستوى إزالة التشويش. هذه القيم أساسية للتحكم في عملية إزالة التشويش في إنشاء الصور. | \ No newline at end of file +| `sigmas` | `SIGMAS` | سلسلة من قيم سيجما تم توليدها بناءً على النموذج المحدد وعدد الخطوات ومستوى إزالة التشويش. هذه القيم أساسية للتحكم في عملية إزالة التشويش في إنشاء الصور. | diff --git a/comfyui_embedded_docs/docs/SdTurboScheduler/pt-BR.md b/comfyui_embedded_docs/docs/SdTurboScheduler/pt-BR.md index 320fe740f..6241fc31f 100644 --- a/comfyui_embedded_docs/docs/SdTurboScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/SdTurboScheduler/pt-BR.md @@ -14,4 +14,4 @@ O SDTurboScheduler é projetado para gerar uma sequência de valores sigma para | Parâmetro | Tipo de Dados | Descrição | | --- | --- | --- | -| `sigmas` | `SIGMAS` | Uma sequência de valores sigma gerada com base no modelo, número de etapas e nível de denoise especificados. Esses valores são essenciais para controlar o processo de remoção de ruído na geração de imagens. | \ No newline at end of file +| `sigmas` | `SIGMAS` | Uma sequência de valores sigma gerada com base no modelo, número de etapas e nível de denoise especificados. Esses valores são essenciais para controlar o processo de remoção de ruído na geração de imagens. | diff --git a/comfyui_embedded_docs/docs/SdTurboScheduler/tr.md b/comfyui_embedded_docs/docs/SdTurboScheduler/tr.md index d248ccfbb..ccc665e7d 100644 --- a/comfyui_embedded_docs/docs/SdTurboScheduler/tr.md +++ b/comfyui_embedded_docs/docs/SdTurboScheduler/tr.md @@ -14,4 +14,4 @@ SDTurboScheduler, görüntü örneklemesi için bir sigma değerleri dizisi olu | Parametre | Veri Tipi | Açıklama | | --- | --- | --- | -| `sigmas` | `SIGMAS` | Belirtilen model, adım sayısı ve gürültü giderme seviyesine dayalı olarak oluşturulmuş bir sigma değerleri dizisi. Bu değerler, görüntü oluşturmada gürültü giderme işlemini kontrol etmek için esastır. | \ No newline at end of file +| `sigmas` | `SIGMAS` | Belirtilen model, adım sayısı ve gürültü giderme seviyesine dayalı olarak oluşturulmuş bir sigma değerleri dizisi. Bu değerler, görüntü oluşturmada gürültü giderme işlemini kontrol etmek için esastır. | diff --git a/comfyui_embedded_docs/docs/SdTurboScheduler/zh-TW.md b/comfyui_embedded_docs/docs/SdTurboScheduler/zh-TW.md index 5f06e17df..2af455309 100644 --- a/comfyui_embedded_docs/docs/SdTurboScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/SdTurboScheduler/zh-TW.md @@ -14,4 +14,4 @@ SDTurboScheduler 專為生成圖像採樣用的 sigma 值序列而設計,能 | 參數名稱 | 資料類型 | 描述 | | --- | --- | --- | -| `sigmas` | `SIGMAS` | 根據指定的模型、步驟數和降噪等級生成的 sigma 值序列,這些值對於控制圖像生成過程中的降噪處理至關重要。 | \ No newline at end of file +| `sigmas` | `SIGMAS` | 根據指定的模型、步驟數和降噪等級生成的 sigma 值序列,這些值對於控制圖像生成過程中的降噪處理至關重要。 | diff --git a/comfyui_embedded_docs/docs/SelfAttentionGuidance/ar.md b/comfyui_embedded_docs/docs/SelfAttentionGuidance/ar.md index d5b55cb15..4fc6804f3 100644 --- a/comfyui_embedded_docs/docs/SelfAttentionGuidance/ar.md +++ b/comfyui_embedded_docs/docs/SelfAttentionGuidance/ar.md @@ -16,4 +16,4 @@ |-------------|-----------|-------------| | `النموذج` | MODEL | النموذج المعدل مع تطبيق توجيه الانتباه الذاتي عليه | -**ملاحظة:** هذه العقدة حالياً في طور التجربة ولها قيود مع الدُفعات المجزأة. يمكنها فقط حفظ درجات الانتباه من استدعاء UNet واحد وقد لا تعمل بشكل صحيح مع أحجام الدُفعات الأكبر. \ No newline at end of file +**ملاحظة:** هذه العقدة حالياً في طور التجربة ولها قيود مع الدُفعات المجزأة. يمكنها فقط حفظ درجات الانتباه من استدعاء UNet واحد وقد لا تعمل بشكل صحيح مع أحجام الدُفعات الأكبر. diff --git a/comfyui_embedded_docs/docs/SelfAttentionGuidance/pt-BR.md b/comfyui_embedded_docs/docs/SelfAttentionGuidance/pt-BR.md index 11136d057..d34156972 100644 --- a/comfyui_embedded_docs/docs/SelfAttentionGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/SelfAttentionGuidance/pt-BR.md @@ -16,4 +16,4 @@ O nó Self-Attention Guidance aplica uma orientação a modelos de difusão modi |-------------|-----------|-------------| | `model` | MODEL | O modelo modificado com a orientação de auto-atenção aplicada | -**Observação:** Este nó é atualmente experimental e tem limitações com lotes divididos (chunked batches). Ele só pode salvar escores de atenção de uma chamada do UNet e pode não funcionar corretamente com tamanhos de lote maiores. \ No newline at end of file +**Observação:** Este nó é atualmente experimental e tem limitações com lotes divididos (chunked batches). Ele só pode salvar escores de atenção de uma chamada do UNet e pode não funcionar corretamente com tamanhos de lote maiores. diff --git a/comfyui_embedded_docs/docs/SelfAttentionGuidance/tr.md b/comfyui_embedded_docs/docs/SelfAttentionGuidance/tr.md index d70131864..5845767c8 100644 --- a/comfyui_embedded_docs/docs/SelfAttentionGuidance/tr.md +++ b/comfyui_embedded_docs/docs/SelfAttentionGuidance/tr.md @@ -16,4 +16,4 @@ Self-Attention Guidance düğümü, örnekleme süreci boyunca dikkat mekanizmas |-------------|-----------|-------------| | `model` | MODEL | Self-attention guidance uygulanmış modifiye edilmiş model | -**Not:** Bu düğüm şu anda deneysel aşamadadır ve parçalı gruplar (chunked batches) ile sınırlamalara sahiptir. Yalnızca bir UNet çağrısından dikkat skorlarını kaydedebilir ve daha büyük grup boyutlarıyla (batch sizes) düzgün çalışmayabilir. \ No newline at end of file +**Not:** Bu düğüm şu anda deneysel aşamadadır ve parçalı gruplar (chunked batches) ile sınırlamalara sahiptir. Yalnızca bir UNet çağrısından dikkat skorlarını kaydedebilir ve daha büyük grup boyutlarıyla (batch sizes) düzgün çalışmayabilir. diff --git a/comfyui_embedded_docs/docs/SelfAttentionGuidance/zh-TW.md b/comfyui_embedded_docs/docs/SelfAttentionGuidance/zh-TW.md index f47ccf86c..850ade885 100644 --- a/comfyui_embedded_docs/docs/SelfAttentionGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/SelfAttentionGuidance/zh-TW.md @@ -16,4 +16,4 @@ |-------------|-----------|-------------| | `model` | MODEL | 已應用自注意力引導的修改後模型 | -**注意:** 此節點目前處於實驗階段,並且在分塊批次處理方面存在限制。它只能儲存來自一次 UNet 呼叫的注意力分數,並且可能無法在較大的批次大小下正常運作。 \ No newline at end of file +**注意:** 此節點目前處於實驗階段,並且在分塊批次處理方面存在限制。它只能儲存來自一次 UNet 呼叫的注意力分數,並且可能無法在較大的批次大小下正常運作。 diff --git a/comfyui_embedded_docs/docs/SetClipHooks/ar.md b/comfyui_embedded_docs/docs/SetClipHooks/ar.md index 5424610f0..bc78ca08e 100644 --- a/comfyui_embedded_docs/docs/SetClipHooks/ar.md +++ b/comfyui_embedded_docs/docs/SetClipHooks/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `CLIP` | CLIP | نموذج CLIP مستنسخ مع تطبيق الخطاطيف المحددة | \ No newline at end of file +| `CLIP` | CLIP | نموذج CLIP مستنسخ مع تطبيق الخطاطيف المحددة | diff --git a/comfyui_embedded_docs/docs/SetClipHooks/pt-BR.md b/comfyui_embedded_docs/docs/SetClipHooks/pt-BR.md index 27b8dc9cb..5eb33990b 100644 --- a/comfyui_embedded_docs/docs/SetClipHooks/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetClipHooks/pt-BR.md @@ -15,4 +15,4 @@ O nó SetClipHooks permite que você aplique *hooks* personalizados a um modelo | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `clip` | CLIP | Um modelo CLIP clonado com os *hooks* especificados aplicados | \ No newline at end of file +| `clip` | CLIP | Um modelo CLIP clonado com os *hooks* especificados aplicados | diff --git a/comfyui_embedded_docs/docs/SetClipHooks/tr.md b/comfyui_embedded_docs/docs/SetClipHooks/tr.md index e2f5b652e..5a8f4b08c 100644 --- a/comfyui_embedded_docs/docs/SetClipHooks/tr.md +++ b/comfyui_embedded_docs/docs/SetClipHooks/tr.md @@ -15,4 +15,4 @@ SetClipHooks düğümü, bir CLIP modeline özel kancalar uygulamanıza olanak t | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `clip` | CLIP | Belirtilen kancalar uygulanmış klonlanmış bir CLIP modeli | \ No newline at end of file +| `clip` | CLIP | Belirtilen kancalar uygulanmış klonlanmış bir CLIP modeli | diff --git a/comfyui_embedded_docs/docs/SetClipHooks/zh-TW.md b/comfyui_embedded_docs/docs/SetClipHooks/zh-TW.md index f5b853af1..963bbcef6 100644 --- a/comfyui_embedded_docs/docs/SetClipHooks/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetClipHooks/zh-TW.md @@ -15,4 +15,4 @@ SetClipHooks 節點允許您對 CLIP 模型應用自定義掛鉤,從而實現 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `clip` | CLIP | 已應用指定掛鉤的克隆 CLIP 模型 | \ No newline at end of file +| `clip` | CLIP | 已應用指定掛鉤的克隆 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/SetFirstSigma/ar.md b/comfyui_embedded_docs/docs/SetFirstSigma/ar.md index 2812cc466..ca01a3af8 100644 --- a/comfyui_embedded_docs/docs/SetFirstSigma/ar.md +++ b/comfyui_embedded_docs/docs/SetFirstSigma/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `Sigmas` | SIGMAS | تسلسل سيغما المعدل مع استبدال العنصر الأول بقيمة سيغما المخصصة | \ No newline at end of file +| `Sigmas` | SIGMAS | تسلسل سيغما المعدل مع استبدال العنصر الأول بقيمة سيغما المخصصة | diff --git a/comfyui_embedded_docs/docs/SetFirstSigma/pt-BR.md b/comfyui_embedded_docs/docs/SetFirstSigma/pt-BR.md index 5cdd6fd6a..f1b60c3a9 100644 --- a/comfyui_embedded_docs/docs/SetFirstSigma/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetFirstSigma/pt-BR.md @@ -13,4 +13,4 @@ O nó SetFirstSigma modifica uma sequência de valores sigma substituindo o prim | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | A sequência de sigma modificada com o primeiro elemento substituído pelo valor sigma personalizado | \ No newline at end of file +| `sigmas` | SIGMAS | A sequência de sigma modificada com o primeiro elemento substituído pelo valor sigma personalizado | diff --git a/comfyui_embedded_docs/docs/SetFirstSigma/tr.md b/comfyui_embedded_docs/docs/SetFirstSigma/tr.md index e98560546..c5ec8ef24 100644 --- a/comfyui_embedded_docs/docs/SetFirstSigma/tr.md +++ b/comfyui_embedded_docs/docs/SetFirstSigma/tr.md @@ -13,4 +13,4 @@ SetFirstSigma düğümü, bir sigma değerleri dizisini, dizideki ilk sigma değ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `sigmalar` | SIGMAS | İlk elemanı özel sigma değeri ile değiştirilmiş olan düzenlenmiş sigma dizisi | \ No newline at end of file +| `sigmalar` | SIGMAS | İlk elemanı özel sigma değeri ile değiştirilmiş olan düzenlenmiş sigma dizisi | diff --git a/comfyui_embedded_docs/docs/SetFirstSigma/zh-TW.md b/comfyui_embedded_docs/docs/SetFirstSigma/zh-TW.md index 5d60e3155..42b3e033f 100644 --- a/comfyui_embedded_docs/docs/SetFirstSigma/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetFirstSigma/zh-TW.md @@ -13,4 +13,4 @@ SetFirstSigma 節點透過將序列中的第一個 sigma 值替換為自定義 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `sigmas` | SIGMAS | 經修改的 sigma 序列,其中第一個元素已被自定義 sigma 值替換 | \ No newline at end of file +| `sigmas` | SIGMAS | 經修改的 sigma 序列,其中第一個元素已被自定義 sigma 值替換 | diff --git a/comfyui_embedded_docs/docs/SetHookKeyframes/ar.md b/comfyui_embedded_docs/docs/SetHookKeyframes/ar.md index c0a5cd959..1c8b51422 100644 --- a/comfyui_embedded_docs/docs/SetHookKeyframes/ar.md +++ b/comfyui_embedded_docs/docs/SetHookKeyframes/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `Hooks` | HOOKS | مجموعة الخطافات المعدلة مع تطبيق جدولة الإطارات الرئيسية (تم استنساخها إذا تم توفير إطارات رئيسية) | \ No newline at end of file +| `Hooks` | HOOKS | مجموعة الخطافات المعدلة مع تطبيق جدولة الإطارات الرئيسية (تم استنساخها إذا تم توفير إطارات رئيسية) | diff --git a/comfyui_embedded_docs/docs/SetHookKeyframes/pt-BR.md b/comfyui_embedded_docs/docs/SetHookKeyframes/pt-BR.md index b9bf88f8b..a07c51e64 100644 --- a/comfyui_embedded_docs/docs/SetHookKeyframes/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetHookKeyframes/pt-BR.md @@ -13,4 +13,4 @@ O nó Set Hook Keyframes permite que você aplique agendamento por quadros-chave | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `hooks` | HOOKS | O grupo de hooks modificado com o agendamento por quadros-chave aplicado (clonado se os quadros-chave foram fornecidos) | \ No newline at end of file +| `hooks` | HOOKS | O grupo de hooks modificado com o agendamento por quadros-chave aplicado (clonado se os quadros-chave foram fornecidos) | diff --git a/comfyui_embedded_docs/docs/SetHookKeyframes/tr.md b/comfyui_embedded_docs/docs/SetHookKeyframes/tr.md index 027b4dfb1..b8277b188 100644 --- a/comfyui_embedded_docs/docs/SetHookKeyframes/tr.md +++ b/comfyui_embedded_docs/docs/SetHookKeyframes/tr.md @@ -13,4 +13,4 @@ Set Hook Keyframes düğümü, mevcut hook gruplarına kare animasyonu planlama | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `kancalar` | HOOKS | Kare animasyonu planlaması uygulanmış değiştirilmiş hook grubu (kare animasyonları sağlandıysa klonlanmış) | \ No newline at end of file +| `kancalar` | HOOKS | Kare animasyonu planlaması uygulanmış değiştirilmiş hook grubu (kare animasyonları sağlandıysa klonlanmış) | diff --git a/comfyui_embedded_docs/docs/SetHookKeyframes/zh-TW.md b/comfyui_embedded_docs/docs/SetHookKeyframes/zh-TW.md index 64c784361..0326929af 100644 --- a/comfyui_embedded_docs/docs/SetHookKeyframes/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetHookKeyframes/zh-TW.md @@ -13,4 +13,4 @@ Set Hook Keyframes 節點允許您對現有的掛鉤群組應用關鍵影格排 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `hooks` | HOOKS | 已應用關鍵影格排程的修改後掛鉤群組(若提供了關鍵影格則為複製版本) | \ No newline at end of file +| `hooks` | HOOKS | 已應用關鍵影格排程的修改後掛鉤群組(若提供了關鍵影格則為複製版本) | diff --git a/comfyui_embedded_docs/docs/SetLatentNoiseMask/ar.md b/comfyui_embedded_docs/docs/SetLatentNoiseMask/ar.md index 1efa63dd7..371218deb 100644 --- a/comfyui_embedded_docs/docs/SetLatentNoiseMask/ar.md +++ b/comfyui_embedded_docs/docs/SetLatentNoiseMask/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `latent` | `LATENT` | العينات الكامنة المعدلة مع قناع الضوضاء المطبق. | \ No newline at end of file +| `latent` | `LATENT` | العينات الكامنة المعدلة مع قناع الضوضاء المطبق. | diff --git a/comfyui_embedded_docs/docs/SetLatentNoiseMask/pt-BR.md b/comfyui_embedded_docs/docs/SetLatentNoiseMask/pt-BR.md index 6b981762b..eda9ba90c 100644 --- a/comfyui_embedded_docs/docs/SetLatentNoiseMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetLatentNoiseMask/pt-BR.md @@ -13,4 +13,4 @@ Este nó é projetado para aplicar uma máscara de ruído a um conjunto de amost | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | As amostras latentes modificadas com a máscara de ruído aplicada. | \ No newline at end of file +| `latent` | `LATENT` | As amostras latentes modificadas com a máscara de ruído aplicada. | diff --git a/comfyui_embedded_docs/docs/SetLatentNoiseMask/tr.md b/comfyui_embedded_docs/docs/SetLatentNoiseMask/tr.md index 5af10ea63..e794bdd3d 100644 --- a/comfyui_embedded_docs/docs/SetLatentNoiseMask/tr.md +++ b/comfyui_embedded_docs/docs/SetLatentNoiseMask/tr.md @@ -13,4 +13,4 @@ Bu düğüm, bir dizi gizli örneğe gürültü maskesi uygulamak için tasarlan | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Uygulanan gürültü maskesi ile değiştirilmiş gizli örnekler. | \ No newline at end of file +| `latent` | `LATENT` | Uygulanan gürültü maskesi ile değiştirilmiş gizli örnekler. | diff --git a/comfyui_embedded_docs/docs/SetLatentNoiseMask/zh-TW.md b/comfyui_embedded_docs/docs/SetLatentNoiseMask/zh-TW.md index 2d9dc1b0f..c586d7c01 100644 --- a/comfyui_embedded_docs/docs/SetLatentNoiseMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetLatentNoiseMask/zh-TW.md @@ -13,4 +13,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 已應用噪聲遮罩的修改後潛在樣本。 | \ No newline at end of file +| `latent` | `LATENT` | 已應用噪聲遮罩的修改後潛在樣本。 | diff --git a/comfyui_embedded_docs/docs/SetModelHooksOnCond/ar.md b/comfyui_embedded_docs/docs/SetModelHooksOnCond/ar.md index 8da434bf5..820376b80 100644 --- a/comfyui_embedded_docs/docs/SetModelHooksOnCond/ar.md +++ b/comfyui_embedded_docs/docs/SetModelHooksOnCond/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `conditioning` | CONDITIONING | بيانات التكييف المعدلة مع الخطافات المرفقة | \ No newline at end of file +| `conditioning` | CONDITIONING | بيانات التكييف المعدلة مع الخطافات المرفقة | diff --git a/comfyui_embedded_docs/docs/SetModelHooksOnCond/pt-BR.md b/comfyui_embedded_docs/docs/SetModelHooksOnCond/pt-BR.md index 8570aa10c..a51daa04e 100644 --- a/comfyui_embedded_docs/docs/SetModelHooksOnCond/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetModelHooksOnCond/pt-BR.md @@ -13,4 +13,4 @@ Este nó anexa ganchos personalizados aos dados de condicionamento, permitindo q | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com os ganchos anexados | \ No newline at end of file +| `conditioning` | CONDITIONING | Os dados de condicionamento modificados com os ganchos anexados | diff --git a/comfyui_embedded_docs/docs/SetModelHooksOnCond/tr.md b/comfyui_embedded_docs/docs/SetModelHooksOnCond/tr.md index ebefc136b..bc7e75bc8 100644 --- a/comfyui_embedded_docs/docs/SetModelHooksOnCond/tr.md +++ b/comfyui_embedded_docs/docs/SetModelHooksOnCond/tr.md @@ -13,4 +13,4 @@ Bu düğüm, özel kancaları koşullandırma verilerine ekleyerek model yürüt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Kancalar eklenmiş şekilde değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `conditioning` | CONDITIONING | Kancalar eklenmiş şekilde değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/SetModelHooksOnCond/zh-TW.md b/comfyui_embedded_docs/docs/SetModelHooksOnCond/zh-TW.md index 5cea175ee..0a2922865 100644 --- a/comfyui_embedded_docs/docs/SetModelHooksOnCond/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetModelHooksOnCond/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | 附帶掛鉤的修改後條件資料 | \ No newline at end of file +| `conditioning` | CONDITIONING | 附帶掛鉤的修改後條件資料 | diff --git a/comfyui_embedded_docs/docs/SetUnionControlNetType/ar.md b/comfyui_embedded_docs/docs/SetUnionControlNetType/ar.md index fc8ff244d..ee4c5a427 100644 --- a/comfyui_embedded_docs/docs/SetUnionControlNetType/ar.md +++ b/comfyui_embedded_docs/docs/SetUnionControlNetType/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `شبكة التحكم` | CONTROL_NET | شبكة التحكم المعدلة مع تطبيق إعداد النوع المحدد | \ No newline at end of file +| `شبكة التحكم` | CONTROL_NET | شبكة التحكم المعدلة مع تطبيق إعداد النوع المحدد | diff --git a/comfyui_embedded_docs/docs/SetUnionControlNetType/pt-BR.md b/comfyui_embedded_docs/docs/SetUnionControlNetType/pt-BR.md index 51385f819..2d6117702 100644 --- a/comfyui_embedded_docs/docs/SetUnionControlNetType/pt-BR.md +++ b/comfyui_embedded_docs/docs/SetUnionControlNetType/pt-BR.md @@ -13,4 +13,4 @@ O nó SetUnionControlNetType permite que você especifique o tipo de rede de con | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `control_net` | CONTROL_NET | A rede de controle modificada com a configuração de tipo especificada aplicada | \ No newline at end of file +| `control_net` | CONTROL_NET | A rede de controle modificada com a configuração de tipo especificada aplicada | diff --git a/comfyui_embedded_docs/docs/SetUnionControlNetType/tr.md b/comfyui_embedded_docs/docs/SetUnionControlNetType/tr.md index a2ccb9463..64217e9c4 100644 --- a/comfyui_embedded_docs/docs/SetUnionControlNetType/tr.md +++ b/comfyui_embedded_docs/docs/SetUnionControlNetType/tr.md @@ -13,4 +13,4 @@ SetUnionControlNetType düğümü, koşullandırma için kullanılacak kontrol a | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `kontrol_ağı` | CONTROL_NET | Belirtilen tür ayarı uygulanmış değiştirilmiş kontrol ağı | \ No newline at end of file +| `kontrol_ağı` | CONTROL_NET | Belirtilen tür ayarı uygulanmış değiştirilmiş kontrol ağı | diff --git a/comfyui_embedded_docs/docs/SetUnionControlNetType/zh-TW.md b/comfyui_embedded_docs/docs/SetUnionControlNetType/zh-TW.md index 41df4db49..ea44e7d97 100644 --- a/comfyui_embedded_docs/docs/SetUnionControlNetType/zh-TW.md +++ b/comfyui_embedded_docs/docs/SetUnionControlNetType/zh-TW.md @@ -13,4 +13,4 @@ SetUnionControlNetType 節點允許您指定用於條件控制的控制網路類 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `control_net` | CONTROL_NET | 已應用指定類型設定的修改後控制網路 | \ No newline at end of file +| `control_net` | CONTROL_NET | 已應用指定類型設定的修改後控制網路 | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/ar.md b/comfyui_embedded_docs/docs/ShuffleDataset/ar.md index 1a5dcedad..9f980da87 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/ar.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `images` | IMAGE | نفس قائمة الصور، ولكن بترتيب جديد مختلط عشوائيًا. | \ No newline at end of file +| `images` | IMAGE | نفس قائمة الصور، ولكن بترتيب جديد مختلط عشوائيًا. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/en.md b/comfyui_embedded_docs/docs/ShuffleDataset/en.md index def973340..d8d4f34bb 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/en.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/en.md @@ -13,4 +13,4 @@ The Shuffle Dataset node takes a list of images and randomly changes their order | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `images` | IMAGE | The same list of images, but in a new, randomly shuffled order. | \ No newline at end of file +| `images` | IMAGE | The same list of images, but in a new, randomly shuffled order. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/es.md b/comfyui_embedded_docs/docs/ShuffleDataset/es.md index edc138b2a..07d82edc2 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/es.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/es.md @@ -13,4 +13,4 @@ El nodo Shuffle Dataset toma una lista de imágenes y cambia aleatoriamente su o | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `images` | IMAGE | La misma lista de imágenes, pero en un nuevo orden aleatorio mezclado. | \ No newline at end of file +| `images` | IMAGE | La misma lista de imágenes, pero en un nuevo orden aleatorio mezclado. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/fr.md b/comfyui_embedded_docs/docs/ShuffleDataset/fr.md index 0d2a5dd9f..477591185 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/fr.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/fr.md @@ -13,4 +13,4 @@ Le nœud Shuffle Dataset prend une liste d'images et modifie aléatoirement leur | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `images` | IMAGE | La même liste d'images, mais dans un nouvel ordre aléatoire. | \ No newline at end of file +| `images` | IMAGE | La même liste d'images, mais dans un nouvel ordre aléatoire. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/ja.md b/comfyui_embedded_docs/docs/ShuffleDataset/ja.md index 07d8640d2..4675ef2f2 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/ja.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/ja.md @@ -13,4 +13,4 @@ Shuffle Datasetノードは、画像のリストを受け取り、その順序 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `images` | IMAGE | 同じ画像のリストですが、新しくランダムにシャッフルされた順序になっています。 | \ No newline at end of file +| `images` | IMAGE | 同じ画像のリストですが、新しくランダムにシャッフルされた順序になっています。 | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/ko.md b/comfyui_embedded_docs/docs/ShuffleDataset/ko.md index 2e8a2cc92..4a4c77a9a 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/ko.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/ko.md @@ -13,4 +13,4 @@ Shuffle Dataset 노드는 이미지 목록을 가져와 순서를 무작위로 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `images` | IMAGE | 동일한 이미지 목록이지만, 새로운 무작위 셔플 순서로 정렬된 상태입니다. | \ No newline at end of file +| `images` | IMAGE | 동일한 이미지 목록이지만, 새로운 무작위 셔플 순서로 정렬된 상태입니다. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/pt-BR.md b/comfyui_embedded_docs/docs/ShuffleDataset/pt-BR.md index c1b46777c..85e07e62d 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/pt-BR.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/pt-BR.md @@ -13,4 +13,4 @@ O nó Shuffle Dataset recebe uma lista de imagens e altera aleatoriamente sua or | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `images` | IMAGE | A mesma lista de imagens, mas em uma nova ordem, embaralhada aleatoriamente. | \ No newline at end of file +| `images` | IMAGE | A mesma lista de imagens, mas em uma nova ordem, embaralhada aleatoriamente. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/ru.md b/comfyui_embedded_docs/docs/ShuffleDataset/ru.md index 35febbb72..e67f02384 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/ru.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `images` | IMAGE | Тот же список изображений, но в новом, случайно перемешанном порядке. | \ No newline at end of file +| `images` | IMAGE | Тот же список изображений, но в новом, случайно перемешанном порядке. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/tr.md b/comfyui_embedded_docs/docs/ShuffleDataset/tr.md index a887a95bf..13cb9558c 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/tr.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/tr.md @@ -13,4 +13,4 @@ | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `images` | IMAGE | Aynı görüntü listesi, ancak yeni, rastgele karıştırılmış bir sırada. | \ No newline at end of file +| `images` | IMAGE | Aynı görüntü listesi, ancak yeni, rastgele karıştırılmış bir sırada. | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/zh-TW.md b/comfyui_embedded_docs/docs/ShuffleDataset/zh-TW.md index 33081f2c0..7667d154a 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/zh-TW.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/zh-TW.md @@ -13,4 +13,4 @@ Shuffle Dataset 節點接收一個圖像列表並隨機改變其順序。它使 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 相同的圖像列表,但已按照新的隨機順序重新排列。 | \ No newline at end of file +| `images` | IMAGE | 相同的圖像列表,但已按照新的隨機順序重新排列。 | diff --git a/comfyui_embedded_docs/docs/ShuffleDataset/zh.md b/comfyui_embedded_docs/docs/ShuffleDataset/zh.md index 47bdb16ab..c0084a250 100644 --- a/comfyui_embedded_docs/docs/ShuffleDataset/zh.md +++ b/comfyui_embedded_docs/docs/ShuffleDataset/zh.md @@ -13,4 +13,4 @@ Shuffle Dataset 节点接收一个图像列表并随机改变它们的顺序。 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `images` | IMAGE | 相同的图像列表,但处于一个新的、随机洗牌后的顺序。 | \ No newline at end of file +| `images` | IMAGE | 相同的图像列表,但处于一个新的、随机洗牌后的顺序。 | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ar.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ar.md index 795922f06..64464e0c8 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ar.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `images` | IMAGE | قائمة الصور بعد الخلط. | -| `texts` | STRING | قائمة النصوص بعد الخلط، مع الحفاظ على ارتباطاتها الأصلية مع الصور. | \ No newline at end of file +| `texts` | STRING | قائمة النصوص بعد الخلط، مع الحفاظ على ارتباطاتها الأصلية مع الصور. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/en.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/en.md index a13c96671..0451ee228 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/en.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/en.md @@ -17,4 +17,4 @@ This node shuffles a list of images and a list of texts together, keeping their | Output Name | Data Type | Description | |-------------|-----------|-------------| | `images` | IMAGE | The shuffled list of images. | -| `texts` | STRING | The shuffled list of texts, maintaining their original pairings with the images. | \ No newline at end of file +| `texts` | STRING | The shuffled list of texts, maintaining their original pairings with the images. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/es.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/es.md index 95a1fba5a..170a846b5 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/es.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/es.md @@ -17,4 +17,4 @@ Este nodo baraja una lista de imágenes y una lista de textos de manera conjunta | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `images` | IMAGE | La lista barajada de imágenes. | -| `texts` | STRING | La lista barajada de textos, manteniendo sus emparejamientos originales con las imágenes. | \ No newline at end of file +| `texts` | STRING | La lista barajada de textos, manteniendo sus emparejamientos originales con las imágenes. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/fr.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/fr.md index e912f9333..d37923f47 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/fr.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/fr.md @@ -17,4 +17,4 @@ Ce nœud mélange une liste d'images et une liste de textes ensemble, en préser | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `images` | IMAGE | La liste mélangée des images. | -| `texts` | STRING | La liste mélangée des textes, conservant leurs associations originales avec les images. | \ No newline at end of file +| `texts` | STRING | La liste mélangée des textes, conservant leurs associations originales avec les images. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ja.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ja.md index e20f1a924..492f1513b 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ja.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ja.md @@ -17,4 +17,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `images` | IMAGE | シャッフルされた画像のリスト。 | -| `texts` | STRING | シャッフルされたテキストのリスト。画像との元のペアリングは維持されています。 | \ No newline at end of file +| `texts` | STRING | シャッフルされたテキストのリスト。画像との元のペアリングは維持されています。 | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ko.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ko.md index 8717c975b..5512c8f19 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ko.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ko.md @@ -17,4 +17,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `images` | IMAGE | 섞인 이미지 목록입니다. | -| `texts` | STRING | 섞인 텍스트 목록으로, 원본 이미지와의 쌍 관계가 유지됩니다. | \ No newline at end of file +| `texts` | STRING | 섞인 텍스트 목록으로, 원본 이미지와의 쌍 관계가 유지됩니다. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/pt-BR.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/pt-BR.md index 503259ad9..a22db0115 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/pt-BR.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/pt-BR.md @@ -17,4 +17,4 @@ Este nó embaralha uma lista de imagens e uma lista de textos em conjunto, mante | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `images` | IMAGE | A lista embaralhada de imagens. | -| `texts` | STRING | A lista embaralhada de textos, mantendo seus pares originais com as imagens. | \ No newline at end of file +| `texts` | STRING | A lista embaralhada de textos, mantendo seus pares originais com as imagens. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ru.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ru.md index 81a942bfc..636e912e6 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ru.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/ru.md @@ -17,4 +17,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| | `images` | IMAGE | Перемешанный список изображений. | -| `texts` | STRING | Перемешанный список текстов, сохраняющий их исходные пары с изображениями. | \ No newline at end of file +| `texts` | STRING | Перемешанный список текстов, сохраняющий их исходные пары с изображениями. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/tr.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/tr.md index da29fb6c9..d4d1b2507 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/tr.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/tr.md @@ -17,4 +17,4 @@ Bu düğüm, bir görüntü listesini ve bir metin listesini birlikte karıştı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `images` | IMAGE | Karıştırılmış görüntü listesi. | -| `texts` | STRING | Görüntülerle olan orijinal eşleşmeleri korunarak karıştırılmış metin listesi. | \ No newline at end of file +| `texts` | STRING | Görüntülerle olan orijinal eşleşmeleri korunarak karıştırılmış metin listesi. | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh-TW.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh-TW.md index 27361944c..fb86fc80c 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh-TW.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh-TW.md @@ -17,4 +17,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `images` | IMAGE | 打亂後的圖片清單。 | -| `texts` | STRING | 打亂後的文字清單,保持與圖片原有的配對關係。 | \ No newline at end of file +| `texts` | STRING | 打亂後的文字清單,保持與圖片原有的配對關係。 | diff --git a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh.md b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh.md index 651797a9e..b86328c7a 100644 --- a/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh.md +++ b/comfyui_embedded_docs/docs/ShuffleImageTextDataset/zh.md @@ -17,4 +17,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `images` | IMAGE | 打乱后的图像列表。 | -| `texts` | STRING | 打乱后的文本列表,保持其与图像的原始配对关系。 | \ No newline at end of file +| `texts` | STRING | 打乱后的文本列表,保持其与图像的原始配对关系。 | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/ar.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/ar.md index ecd97d13e..91a52651f 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/ar.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق توجيه الطبقات المتخطاة | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق توجيه الطبقات المتخطاة | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/pt-BR.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/pt-BR.md index 59f69fdf0..dbb30bfa1 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/pt-BR.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/pt-BR.md @@ -20,4 +20,4 @@ Melhora a orientação para estruturas detalhadas usando outro conjunto de CFG n | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a orientação de camada ignorada aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a orientação de camada ignorada aplicada | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/tr.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/tr.md index 391839baa..38fe09844 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/tr.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/tr.md @@ -20,4 +20,4 @@ Detaylı yapıya doğru rehberliği, atlanmış katmanlara sahip başka bir CFG | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Atlanmış katman rehberliği uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Atlanmış katman rehberliği uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/zh-TW.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/zh-TW.md index 7c9153b27..75da584ab 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/zh-TW.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiT/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用跳過層級引導的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用跳過層級引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/ar.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/ar.md index 5481b19a8..e0e6022a9 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/ar.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المعدل مع تطبيق توجيه طبقات التخطي على الطبقات المحددة | \ No newline at end of file +| `model` | MODEL | النموذج المعدل مع تطبيق توجيه طبقات التخطي على الطبقات المحددة | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/pt-BR.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/pt-BR.md index 23b31867e..be28dc832 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/pt-BR.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/pt-BR.md @@ -18,4 +18,4 @@ Versão simplificada do nó SkipLayerGuidanceDiT que modifica apenas a passagem | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a orientação de camada de salto aplicada às camadas especificadas | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a orientação de camada de salto aplicada às camadas especificadas | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/tr.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/tr.md index 15dd22426..fdb937a5f 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/tr.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/tr.md @@ -18,4 +18,4 @@ Gürültü giderme işlemi sırasında yalnızca koşulsuz geçişi değiştiren | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Belirtilen katmanlara skip layer guidance uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Belirtilen katmanlara skip layer guidance uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/zh-TW.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/zh-TW.md index fe42f2a16..f28b1b055 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/zh-TW.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceDiTSimple/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已對指定層級應用跳層引導的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已對指定層級應用跳層引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/ar.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/ar.md index 4161beb91..0bf4b7b76 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/ar.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل بعد تطبيق توجيه طبقة التخطي عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل بعد تطبيق توجيه طبقة التخطي عليه | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/pt-BR.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/pt-BR.md index c130c0b86..ff5c53726 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/pt-BR.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/pt-BR.md @@ -16,4 +16,4 @@ O nó SkipLayerGuidanceSD3 aprimora a orientação para uma estrutura detalhada | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a orientação de camada ignorada aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a orientação de camada ignorada aplicada | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/tr.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/tr.md index 08d8a7dbc..fe1349c28 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/tr.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/tr.md @@ -16,4 +16,4 @@ SkipLayerGuidanceSD3 düğümü, atlanan katmanlarla ek bir sınıflandırıcıs | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Atlama katmanı yönlendirmesi uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Atlama katmanı yönlendirmesi uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/zh-TW.md b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/zh-TW.md index 4df4d87b1..707e41b58 100644 --- a/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/zh-TW.md +++ b/comfyui_embedded_docs/docs/SkipLayerGuidanceSD3/zh-TW.md @@ -16,4 +16,4 @@ SkipLayerGuidanceSD3 節點透過在跳過層的情況下應用額外的無分 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用跳層引導的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用跳層引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/SolidMask/ar.md b/comfyui_embedded_docs/docs/SolidMask/ar.md index 9a37a1c91..22ca44a31 100644 --- a/comfyui_embedded_docs/docs/SolidMask/ar.md +++ b/comfyui_embedded_docs/docs/SolidMask/ar.md @@ -14,4 +14,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `mask` | MASK | يُخرج قناعًا موحدًا بالأبعاد والقيمة المحددة. | \ No newline at end of file +| `mask` | MASK | يُخرج قناعًا موحدًا بالأبعاد والقيمة المحددة. | diff --git a/comfyui_embedded_docs/docs/SolidMask/pt-BR.md b/comfyui_embedded_docs/docs/SolidMask/pt-BR.md index fa33790c7..e5fc5a7e9 100644 --- a/comfyui_embedded_docs/docs/SolidMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/SolidMask/pt-BR.md @@ -14,4 +14,4 @@ O nó SolidMask gera uma máscara uniforme com um valor especificado em toda a s | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `mask` | MASK | Emite uma máscara uniforme com as dimensões e o valor especificados. | \ No newline at end of file +| `mask` | MASK | Emite uma máscara uniforme com as dimensões e o valor especificados. | diff --git a/comfyui_embedded_docs/docs/SolidMask/tr.md b/comfyui_embedded_docs/docs/SolidMask/tr.md index c40d52308..e7894d066 100644 --- a/comfyui_embedded_docs/docs/SolidMask/tr.md +++ b/comfyui_embedded_docs/docs/SolidMask/tr.md @@ -14,4 +14,4 @@ SolidMask düğümü, belirli bir değere sahip düzgün bir maske oluşturur. B | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `mask` | MASK | Belirtilen boyutlarda ve değerde düzgün bir maske çıktısı verir. | \ No newline at end of file +| `mask` | MASK | Belirtilen boyutlarda ve değerde düzgün bir maske çıktısı verir. | diff --git a/comfyui_embedded_docs/docs/SolidMask/zh-TW.md b/comfyui_embedded_docs/docs/SolidMask/zh-TW.md index 0460c9e46..8df0720f5 100644 --- a/comfyui_embedded_docs/docs/SolidMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/SolidMask/zh-TW.md @@ -14,4 +14,4 @@ SolidMask 節點會生成一個在其整個區域內具有指定值的均勻遮 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `mask` | MASK | 輸出具有指定尺寸和值的均勻遮罩。 | \ No newline at end of file +| `mask` | MASK | 輸出具有指定尺寸和值的均勻遮罩。 | diff --git a/comfyui_embedded_docs/docs/SplitAudioChannels/ar.md b/comfyui_embedded_docs/docs/SplitAudioChannels/ar.md index a41f140bf..7e173e587 100644 --- a/comfyui_embedded_docs/docs/SplitAudioChannels/ar.md +++ b/comfyui_embedded_docs/docs/SplitAudioChannels/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `left` | AUDIO | الصوت المنفصل للقناة اليسرى | -| `right` | AUDIO | الصوت المنفصل للقناة اليمنى | \ No newline at end of file +| `right` | AUDIO | الصوت المنفصل للقناة اليمنى | diff --git a/comfyui_embedded_docs/docs/SplitAudioChannels/pt-BR.md b/comfyui_embedded_docs/docs/SplitAudioChannels/pt-BR.md index 0e4fcfa8b..e1d3a2202 100644 --- a/comfyui_embedded_docs/docs/SplitAudioChannels/pt-BR.md +++ b/comfyui_embedded_docs/docs/SplitAudioChannels/pt-BR.md @@ -15,4 +15,4 @@ O nó SplitAudioChannels separa um áudio estéreo em canais individuais esquerd | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `left` | AUDIO | O áudio do canal esquerdo separado | -| `right` | AUDIO | O áudio do canal direito separado | \ No newline at end of file +| `right` | AUDIO | O áudio do canal direito separado | diff --git a/comfyui_embedded_docs/docs/SplitAudioChannels/tr.md b/comfyui_embedded_docs/docs/SplitAudioChannels/tr.md index cd835d962..39273f02d 100644 --- a/comfyui_embedded_docs/docs/SplitAudioChannels/tr.md +++ b/comfyui_embedded_docs/docs/SplitAudioChannels/tr.md @@ -15,4 +15,4 @@ SplitAudioChannels düğümü, stereo sesi ayrı sol ve sağ kanallara ayırır. | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `left` | AUDIO | Ayrılmış sol kanal sesi | -| `right` | AUDIO | Ayrılmış sağ kanal sesi | \ No newline at end of file +| `right` | AUDIO | Ayrılmış sağ kanal sesi | diff --git a/comfyui_embedded_docs/docs/SplitAudioChannels/zh-TW.md b/comfyui_embedded_docs/docs/SplitAudioChannels/zh-TW.md index 9ebd16e02..958b20549 100644 --- a/comfyui_embedded_docs/docs/SplitAudioChannels/zh-TW.md +++ b/comfyui_embedded_docs/docs/SplitAudioChannels/zh-TW.md @@ -15,4 +15,4 @@ SplitAudioChannels 節點可將立體聲音訊分離為獨立的左右聲道。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| | `left` | AUDIO | 分離後的左聲道音訊 | -| `right` | AUDIO | 分離後的右聲道音訊 | \ No newline at end of file +| `right` | AUDIO | 分離後的右聲道音訊 | diff --git a/comfyui_embedded_docs/docs/SplitImageWithAlpha/ar.md b/comfyui_embedded_docs/docs/SplitImageWithAlpha/ar.md index 57be55b68..f8579dd54 100644 --- a/comfyui_embedded_docs/docs/SplitImageWithAlpha/ar.md +++ b/comfyui_embedded_docs/docs/SplitImageWithAlpha/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| | `الصورة` | `IMAGE` | يمثل المخرج 'image' قنوات RGB المنفصلة للصورة المدخلة، مما يوفر مكون اللون بدون معلومات الشفافية. | -| `mask` | `MASK` | يمثل المخرج 'mask' قناة ألفا المنفصلة للصورة المدخلة، مما يوفر معلومات الشفافية. | \ No newline at end of file +| `mask` | `MASK` | يمثل المخرج 'mask' قناة ألفا المنفصلة للصورة المدخلة، مما يوفر معلومات الشفافية. | diff --git a/comfyui_embedded_docs/docs/SplitImageWithAlpha/pt-BR.md b/comfyui_embedded_docs/docs/SplitImageWithAlpha/pt-BR.md index 8333d8257..23716de74 100644 --- a/comfyui_embedded_docs/docs/SplitImageWithAlpha/pt-BR.md +++ b/comfyui_embedded_docs/docs/SplitImageWithAlpha/pt-BR.md @@ -13,4 +13,4 @@ O nó SplitImageWithAlpha foi projetado para separar os componentes de cor e alf | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| | `image` | `IMAGE` | A saída `image` representa os canais RGB separados da imagem de entrada, fornecendo o componente de cor sem as informações de transparência. | -| `mask` | `MASK` | A saída `mask` representa o canal alfa separado da imagem de entrada, fornecendo as informações de transparência. | \ No newline at end of file +| `mask` | `MASK` | A saída `mask` representa o canal alfa separado da imagem de entrada, fornecendo as informações de transparência. | diff --git a/comfyui_embedded_docs/docs/SplitImageWithAlpha/tr.md b/comfyui_embedded_docs/docs/SplitImageWithAlpha/tr.md index d284501c3..f07ce9e37 100644 --- a/comfyui_embedded_docs/docs/SplitImageWithAlpha/tr.md +++ b/comfyui_embedded_docs/docs/SplitImageWithAlpha/tr.md @@ -13,4 +13,4 @@ SplitImageWithAlpha düğümü, bir görüntünün renk ve alfa bileşenlerini a | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| | `görüntü` | `IMAGE` | 'image' çıktısı, girdi görüntüsünün ayrılmış RGB kanallarını temsil eder ve şeffaflık bilgisi olmadan renk bileşenini sağlar. | -| `mask` | `MASK` | 'mask' çıktısı, girdi görüntüsünün ayrılmış alfa kanalını temsil eder ve şeffaflık bilgisini sağlar. | \ No newline at end of file +| `mask` | `MASK` | 'mask' çıktısı, girdi görüntüsünün ayrılmış alfa kanalını temsil eder ve şeffaflık bilgisini sağlar. | diff --git a/comfyui_embedded_docs/docs/SplitImageWithAlpha/zh-TW.md b/comfyui_embedded_docs/docs/SplitImageWithAlpha/zh-TW.md index bb79c3dd5..a0c6cb6b6 100644 --- a/comfyui_embedded_docs/docs/SplitImageWithAlpha/zh-TW.md +++ b/comfyui_embedded_docs/docs/SplitImageWithAlpha/zh-TW.md @@ -13,4 +13,4 @@ SplitImageWithAlpha 節點專門用於分離影像的色彩與透明度元件。 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| | `影像` | `IMAGE` | 此 `影像` 輸出代表輸入影像經分離後的 RGB 通道,提供不含透明度資訊的色彩元件。 | -| `mask` | `MASK` | 此 `mask` 輸出代表輸入影像經分離後的 Alpha 通道,提供透明度資訊。 | \ No newline at end of file +| `mask` | `MASK` | 此 `mask` 輸出代表輸入影像經分離後的 Alpha 通道,提供透明度資訊。 | diff --git a/comfyui_embedded_docs/docs/SplitSigmas/ar.md b/comfyui_embedded_docs/docs/SplitSigmas/ar.md index ed9c025fd..1dc500d5a 100644 --- a/comfyui_embedded_docs/docs/SplitSigmas/ar.md +++ b/comfyui_embedded_docs/docs/SplitSigmas/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `Sigmas منخفضة` | `SIGMAS` | تُخرج العقدة تسلسلين من قيم سيجما، يمثل كل منهما جزءًا من التسلسل الأصلي المقسم عند الخطوة المحددة. تُعد هذه المخرجات بالغة الأهمية للعمليات اللاحقة التي تتطلب معالجة متمايزة لقيم سيجما. | \ No newline at end of file +| `Sigmas منخفضة` | `SIGMAS` | تُخرج العقدة تسلسلين من قيم سيجما، يمثل كل منهما جزءًا من التسلسل الأصلي المقسم عند الخطوة المحددة. تُعد هذه المخرجات بالغة الأهمية للعمليات اللاحقة التي تتطلب معالجة متمايزة لقيم سيجما. | diff --git a/comfyui_embedded_docs/docs/SplitSigmas/pt-BR.md b/comfyui_embedded_docs/docs/SplitSigmas/pt-BR.md index 3c8132518..613f77277 100644 --- a/comfyui_embedded_docs/docs/SplitSigmas/pt-BR.md +++ b/comfyui_embedded_docs/docs/SplitSigmas/pt-BR.md @@ -13,4 +13,4 @@ O nó SplitSigmas é projetado para dividir uma sequência de valores sigma em d | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `sigmas` | `SIGMAS` | O nó gera duas sequências de valores sigma, cada uma representando uma parte da sequência original dividida na etapa especificada. Essas saídas são cruciais para operações subsequentes que exigem tratamento diferenciado dos valores sigma. | \ No newline at end of file +| `sigmas` | `SIGMAS` | O nó gera duas sequências de valores sigma, cada uma representando uma parte da sequência original dividida na etapa especificada. Essas saídas são cruciais para operações subsequentes que exigem tratamento diferenciado dos valores sigma. | diff --git a/comfyui_embedded_docs/docs/SplitSigmas/tr.md b/comfyui_embedded_docs/docs/SplitSigmas/tr.md index a44dd4189..517b4691e 100644 --- a/comfyui_embedded_docs/docs/SplitSigmas/tr.md +++ b/comfyui_embedded_docs/docs/SplitSigmas/tr.md @@ -13,4 +13,4 @@ SplitSigmas düğümü, bir sigma değerleri dizisini belirtilen bir adıma gör | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `düşük_sigmalar` | `SIGMAS` | Düğüm, her biri orijinal dizinin belirtilen adımda bölünmüş bir kısmını temsil eden iki sigma değerleri dizisi çıktılar. Bu çıktılar, sigma değerlerinin farklılaştırılmış bir şekilde ele alınmasını gerektiren sonraki operasyonlar için çok önemlidir. | \ No newline at end of file +| `düşük_sigmalar` | `SIGMAS` | Düğüm, her biri orijinal dizinin belirtilen adımda bölünmüş bir kısmını temsil eden iki sigma değerleri dizisi çıktılar. Bu çıktılar, sigma değerlerinin farklılaştırılmış bir şekilde ele alınmasını gerektiren sonraki operasyonlar için çok önemlidir. | diff --git a/comfyui_embedded_docs/docs/SplitSigmas/zh-TW.md b/comfyui_embedded_docs/docs/SplitSigmas/zh-TW.md index 3200b015e..805cd6a0d 100644 --- a/comfyui_embedded_docs/docs/SplitSigmas/zh-TW.md +++ b/comfyui_embedded_docs/docs/SplitSigmas/zh-TW.md @@ -13,4 +13,4 @@ SplitSigmas 節點專為根據指定步驟將 sigma 值序列分割成兩部分 | 參數名稱 | 資料類型 | 描述 | |----------|----------|------| -| `低 sigmas` | `SIGMAS` | 該節點會輸出兩個 sigma 值序列,每個序列代表原始序列在指定步驟處分割後的一部分。這些輸出對於後續需要對 sigma 值進行差異化處理的操作至關重要。 | \ No newline at end of file +| `低 sigmas` | `SIGMAS` | 該節點會輸出兩個 sigma 值序列,每個序列代表原始序列在指定步驟處分割後的一部分。這些輸出對於後續需要對 sigma 值進行差異化處理的操作至關重要。 | diff --git a/comfyui_embedded_docs/docs/SplitSigmasDenoise/ar.md b/comfyui_embedded_docs/docs/SplitSigmasDenoise/ar.md index b1e85acb5..f66b02831 100644 --- a/comfyui_embedded_docs/docs/SplitSigmasDenoise/ar.md +++ b/comfyui_embedded_docs/docs/SplitSigmasDenoise/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `Sigmas منخفضة` | SIGMAS | الجزء الأول من تسلسل سيجما الذي يحتوي على قيم سيجما الأعلى | -| `low_sigmas` | SIGMAS | الجزء الثاني من تسلسل سيجما الذي يحتوي على قيم سيجما الأقل | \ No newline at end of file +| `low_sigmas` | SIGMAS | الجزء الثاني من تسلسل سيجما الذي يحتوي على قيم سيجما الأقل | diff --git a/comfyui_embedded_docs/docs/SplitSigmasDenoise/pt-BR.md b/comfyui_embedded_docs/docs/SplitSigmasDenoise/pt-BR.md index fedd61285..a57598b8a 100644 --- a/comfyui_embedded_docs/docs/SplitSigmasDenoise/pt-BR.md +++ b/comfyui_embedded_docs/docs/SplitSigmasDenoise/pt-BR.md @@ -14,4 +14,4 @@ O nó SplitSigmasDenoise divide uma sequência de valores sigma em duas partes c | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `high_sigmas` | SIGMAS | A primeira parte da sequência de sigma, contendo os valores de sigma mais altos | -| `low_sigmas` | SIGMAS | A segunda parte da sequência de sigma, contendo os valores de sigma mais baixos | \ No newline at end of file +| `low_sigmas` | SIGMAS | A segunda parte da sequência de sigma, contendo os valores de sigma mais baixos | diff --git a/comfyui_embedded_docs/docs/SplitSigmasDenoise/tr.md b/comfyui_embedded_docs/docs/SplitSigmasDenoise/tr.md index 756146e3d..2fbf80849 100644 --- a/comfyui_embedded_docs/docs/SplitSigmasDenoise/tr.md +++ b/comfyui_embedded_docs/docs/SplitSigmasDenoise/tr.md @@ -14,4 +14,4 @@ SplitSigmasDenoise düğümü, bir gürültü giderme kuvveti parametresine daya | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `high_sigmas` | SIGMAS | Daha yüksek sigma değerlerini içeren sigma dizisinin ilk bölümü | -| `low_sigmas` | SIGMAS | Daha düşük sigma değerlerini içeren sigma dizisinin ikinci bölümü | \ No newline at end of file +| `low_sigmas` | SIGMAS | Daha düşük sigma değerlerini içeren sigma dizisinin ikinci bölümü | diff --git a/comfyui_embedded_docs/docs/SplitSigmasDenoise/zh-TW.md b/comfyui_embedded_docs/docs/SplitSigmasDenoise/zh-TW.md index 94dfd2e98..2851f54ec 100644 --- a/comfyui_embedded_docs/docs/SplitSigmasDenoise/zh-TW.md +++ b/comfyui_embedded_docs/docs/SplitSigmasDenoise/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `低 sigmas` | SIGMAS | sigma 序列的第一部分,包含較高的 sigma 值 | -| `low_sigmas` | SIGMAS | sigma 序列的第二部分,包含較低的 sigma 值 | \ No newline at end of file +| `low_sigmas` | SIGMAS | sigma 序列的第二部分,包含較低的 sigma 值 | diff --git a/comfyui_embedded_docs/docs/StabilityAudioInpaint/ar.md b/comfyui_embedded_docs/docs/StabilityAudioInpaint/ar.md index fcc4fce67..3bc0966cb 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioInpaint/ar.md +++ b/comfyui_embedded_docs/docs/StabilityAudioInpaint/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `audio` | AUDIO | مخرج الصوت المحوّل مع القسم المحدد المعدل وفقًا للوصف النصي. | \ No newline at end of file +| `audio` | AUDIO | مخرج الصوت المحوّل مع القسم المحدد المعدل وفقًا للوصف النصي. | diff --git a/comfyui_embedded_docs/docs/StabilityAudioInpaint/pt-BR.md b/comfyui_embedded_docs/docs/StabilityAudioInpaint/pt-BR.md index f788790b3..b90bf3ae9 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioInpaint/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityAudioInpaint/pt-BR.md @@ -21,4 +21,4 @@ Transforma parte de uma amostra de áudio existente usando instruções de texto | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `audio` | AUDIO | A saída de áudio transformada, com a seção especificada modificada de acordo com o *prompt*. | \ No newline at end of file +| `audio` | AUDIO | A saída de áudio transformada, com a seção especificada modificada de acordo com o *prompt*. | diff --git a/comfyui_embedded_docs/docs/StabilityAudioInpaint/tr.md b/comfyui_embedded_docs/docs/StabilityAudioInpaint/tr.md index e72bc3f77..481c1be33 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioInpaint/tr.md +++ b/comfyui_embedded_docs/docs/StabilityAudioInpaint/tr.md @@ -21,4 +21,4 @@ Mevcut bir ses örneğinin bir bölümünü metin talimatları kullanarak dönü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `audio` | AUDIO | Belirtilen bölümü isteme göre değiştirilmiş olan dönüştürülmüş ses çıktısı. | \ No newline at end of file +| `audio` | AUDIO | Belirtilen bölümü isteme göre değiştirilmiş olan dönüştürülmüş ses çıktısı. | diff --git a/comfyui_embedded_docs/docs/StabilityAudioInpaint/zh-TW.md b/comfyui_embedded_docs/docs/StabilityAudioInpaint/zh-TW.md index a38a9e603..5cdf311f4 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioInpaint/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityAudioInpaint/zh-TW.md @@ -21,4 +21,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `audio` | AUDIO | 根據提示修改指定區段後的轉換音訊輸出。 | \ No newline at end of file +| `audio` | AUDIO | 根據提示修改指定區段後的轉換音訊輸出。 | diff --git a/comfyui_embedded_docs/docs/StabilityAudioToAudio/ar.md b/comfyui_embedded_docs/docs/StabilityAudioToAudio/ar.md index 00e8d6cff..5c59b0906 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioToAudio/ar.md +++ b/comfyui_embedded_docs/docs/StabilityAudioToAudio/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `audio` | AUDIO | الصوت المحوّل المُنشأ بناءً على الصوت المُدخل والنص المطلوب | \ No newline at end of file +| `audio` | AUDIO | الصوت المحوّل المُنشأ بناءً على الصوت المُدخل والنص المطلوب | diff --git a/comfyui_embedded_docs/docs/StabilityAudioToAudio/pt-BR.md b/comfyui_embedded_docs/docs/StabilityAudioToAudio/pt-BR.md index 6f08efe8d..04662caf5 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioToAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityAudioToAudio/pt-BR.md @@ -20,4 +20,4 @@ Transforma amostras de áudio existentes em novas composições de alta qualidad | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `audio` | AUDIO | O áudio transformado gerado com base no áudio de entrada e no prompt de texto | \ No newline at end of file +| `audio` | AUDIO | O áudio transformado gerado com base no áudio de entrada e no prompt de texto | diff --git a/comfyui_embedded_docs/docs/StabilityAudioToAudio/tr.md b/comfyui_embedded_docs/docs/StabilityAudioToAudio/tr.md index 23e9b3def..90f7d23c1 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioToAudio/tr.md +++ b/comfyui_embedded_docs/docs/StabilityAudioToAudio/tr.md @@ -20,4 +20,4 @@ Mevcut ses örneklerini metin talimatlarını kullanarak yeni yüksek kaliteli b | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `audio` | AUDIO | Giriş sesi ve metin istemine dayalı olarak oluşturulan dönüştürülmüş ses | \ No newline at end of file +| `audio` | AUDIO | Giriş sesi ve metin istemine dayalı olarak oluşturulan dönüştürülmüş ses | diff --git a/comfyui_embedded_docs/docs/StabilityAudioToAudio/zh-TW.md b/comfyui_embedded_docs/docs/StabilityAudioToAudio/zh-TW.md index 747a7ab3e..4ec1c0637 100644 --- a/comfyui_embedded_docs/docs/StabilityAudioToAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityAudioToAudio/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `audio` | AUDIO | 根據輸入音訊和文字提示生成的轉換後音訊 | \ No newline at end of file +| `audio` | AUDIO | 根據輸入音訊和文字提示生成的轉換後音訊 | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/ar.md b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/ar.md index 2b1513fe5..aa749010e 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/ar.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `الصورة` | IMAGE | الصورة المُنشأة أو المعدلة. | \ No newline at end of file +| `الصورة` | IMAGE | الصورة المُنشأة أو المعدلة. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/pt-BR.md b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/pt-BR.md index a0e1351b0..bcbff7ed6 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/pt-BR.md @@ -22,4 +22,4 @@ Este nó gera imagens de forma síncrona usando o modelo Stable Diffusion 3.5 da | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem gerada ou modificada. | \ No newline at end of file +| `image` | IMAGE | A imagem gerada ou modificada. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/tr.md b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/tr.md index 28e176bce..76f1d1998 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/tr.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/tr.md @@ -22,4 +22,4 @@ Bu düğüm, Stability AI'nin Stable Diffusion 3.5 modelini kullanarak görünt | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | Oluşturulan veya değiştirilen görüntü. | \ No newline at end of file +| `görüntü` | IMAGE | Oluşturulan veya değiştirilen görüntü. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/zh-TW.md b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/zh-TW.md index 01a4b5b62..10718c562 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageSD_3_5Node/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `影像` | IMAGE | 生成或修改後的圖像。 | \ No newline at end of file +| `影像` | IMAGE | 生成或修改後的圖像。 | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/ar.md b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/ar.md index ece1b0539..6ab659449 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/ar.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `output` | IMAGE | الصورة المُنشأة استنادًا إلى معاملات الإدخال. | \ No newline at end of file +| `output` | IMAGE | الصورة المُنشأة استنادًا إلى معاملات الإدخال. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/pt-BR.md b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/pt-BR.md index 096e492f9..a765e4893 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/pt-BR.md @@ -20,4 +20,4 @@ Gera imagens de forma síncrona com base em um prompt e resolução. Este nó cr | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem gerada com base nos parâmetros de entrada. | \ No newline at end of file +| `output` | IMAGE | A imagem gerada com base nos parâmetros de entrada. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/tr.md b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/tr.md index 2a1535b1c..5786340cb 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/tr.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/tr.md @@ -20,4 +20,4 @@ | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görüntü. | \ No newline at end of file +| `output` | IMAGE | Girdi parametrelerine dayalı olarak oluşturulan görüntü. | diff --git a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/zh-TW.md b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/zh-TW.md index 867752e29..a92d62694 100644 --- a/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityStableImageUltraNode/zh-TW.md @@ -20,4 +20,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 根據輸入參數生成的圖像。 | \ No newline at end of file +| `output` | IMAGE | 根據輸入參數生成的圖像。 | diff --git a/comfyui_embedded_docs/docs/StabilityTextToAudio/ar.md b/comfyui_embedded_docs/docs/StabilityTextToAudio/ar.md index 4e98bb6ee..58daf1e7b 100644 --- a/comfyui_embedded_docs/docs/StabilityTextToAudio/ar.md +++ b/comfyui_embedded_docs/docs/StabilityTextToAudio/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `audio` | AUDIO | الملف الصوتي المُنشأ استنادًا إلى الأمر النصي | \ No newline at end of file +| `audio` | AUDIO | الملف الصوتي المُنشأ استنادًا إلى الأمر النصي | diff --git a/comfyui_embedded_docs/docs/StabilityTextToAudio/pt-BR.md b/comfyui_embedded_docs/docs/StabilityTextToAudio/pt-BR.md index 025981290..495078103 100644 --- a/comfyui_embedded_docs/docs/StabilityTextToAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityTextToAudio/pt-BR.md @@ -16,4 +16,4 @@ Gera música e efeitos sonoros de alta qualidade a partir de descrições textua | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `audio` | AUDIO | O arquivo de áudio gerado com base no prompt de texto | \ No newline at end of file +| `audio` | AUDIO | O arquivo de áudio gerado com base no prompt de texto | diff --git a/comfyui_embedded_docs/docs/StabilityTextToAudio/tr.md b/comfyui_embedded_docs/docs/StabilityTextToAudio/tr.md index 06cfdee4c..bca92d25f 100644 --- a/comfyui_embedded_docs/docs/StabilityTextToAudio/tr.md +++ b/comfyui_embedded_docs/docs/StabilityTextToAudio/tr.md @@ -16,4 +16,4 @@ Metin açıklamalarından yüksek kaliteli müzik ve ses efektleri oluşturur. B | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `audio` | AUDIO | Metin istemine dayalı olarak oluşturulan ses dosyası | \ No newline at end of file +| `audio` | AUDIO | Metin istemine dayalı olarak oluşturulan ses dosyası | diff --git a/comfyui_embedded_docs/docs/StabilityTextToAudio/zh-TW.md b/comfyui_embedded_docs/docs/StabilityTextToAudio/zh-TW.md index 51bbf73f3..fc415f078 100644 --- a/comfyui_embedded_docs/docs/StabilityTextToAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityTextToAudio/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `audio` | AUDIO | 基於文字提示生成的音訊檔案 | \ No newline at end of file +| `audio` | AUDIO | 基於文字提示生成的音訊檔案 | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/ar.md b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/ar.md index 9abb01e77..99c1c0d34 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/ar.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `الصورة` | IMAGE | الصورة التي تم رفع دقتها بدقة 4K | \ No newline at end of file +| `الصورة` | IMAGE | الصورة التي تم رفع دقتها بدقة 4K | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/pt-BR.md b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/pt-BR.md index 63efa2c91..a8fe276f9 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/pt-BR.md @@ -14,4 +14,4 @@ | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem ampliada em resolução 4K | \ No newline at end of file +| `image` | IMAGE | A imagem ampliada em resolução 4K | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/tr.md b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/tr.md index 8edd0ad23..8a7edcd88 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/tr.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/tr.md @@ -16,4 +16,4 @@ Görüntüyü minimum değişikliklerle 4K çözünürlüğe yükseltir. Bu dü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | 4K çözünürlükte yükseltilmiş görüntü | \ No newline at end of file +| `görüntü` | IMAGE | 4K çözünürlükte yükseltilmiş görüntü | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/zh-TW.md b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/zh-TW.md index 555f2bcdb..4f109f041 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleConservativeNode/zh-TW.md @@ -18,4 +18,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 放大至 4K 解析度的影像 | \ No newline at end of file +| `影像` | IMAGE | 放大至 4K 解析度的影像 | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/ar.md b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/ar.md index a556e2660..5707e8b51 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/ar.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `صورة` | IMAGE | الصورة التي تم رفع دقتها بدقة 4K | \ No newline at end of file +| `صورة` | IMAGE | الصورة التي تم رفع دقتها بدقة 4K | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/pt-BR.md b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/pt-BR.md index 480121ea0..089dbae1f 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/pt-BR.md @@ -17,4 +17,4 @@ Melhora a resolução da imagem com alterações mínimas para 4K. Este nó util | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem melhorada em resolução 4K | \ No newline at end of file +| `image` | IMAGE | A imagem melhorada em resolução 4K | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/tr.md b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/tr.md index d96f244f4..9ed3efecb 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/tr.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/tr.md @@ -17,4 +17,4 @@ Görüntüyü minimum değişikliklerle 4K çözünürlüğe yükseltir. Bu dü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `görüntü` | IMAGE | 4K çözünürlükte yükseltilmiş görüntü | \ No newline at end of file +| `görüntü` | IMAGE | 4K çözünürlükte yükseltilmiş görüntü | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/zh-TW.md b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/zh-TW.md index 6836c65ff..0a6579887 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleCreativeNode/zh-TW.md @@ -19,4 +19,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `影像` | IMAGE | 放大至 4K 解析度的影像 | \ No newline at end of file +| `影像` | IMAGE | 放大至 4K 解析度的影像 | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/ar.md b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/ar.md index f1b0c87c6..ede7a03ec 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/ar.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/ar.md @@ -12,4 +12,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `output` | IMAGE | الصورة المُعالجة بعد رفع الدقة التي تم إرجاعها من واجهة برمجة تطبيقات Stability AI | \ No newline at end of file +| `output` | IMAGE | الصورة المُعالجة بعد رفع الدقة التي تم إرجاعها من واجهة برمجة تطبيقات Stability AI | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/pt-BR.md b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/pt-BR.md index e80b73084..85dd2806e 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/pt-BR.md @@ -12,4 +12,4 @@ Aumenta rapidamente uma imagem via chamada de API da Stability para 4x seu taman | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem com escala aumentada retornada pela API da Stability AI | \ No newline at end of file +| `output` | IMAGE | A imagem com escala aumentada retornada pela API da Stability AI | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/tr.md b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/tr.md index e13593129..c7cc58a58 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/tr.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/tr.md @@ -12,4 +12,4 @@ Görüntüleri Stability API çağrısı ile hızlı bir şekilde orijinal boyut | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Stability AI API'sinden dönen büyütülmüş görüntü | \ No newline at end of file +| `output` | IMAGE | Stability AI API'sinden dönen büyütülmüş görüntü | diff --git a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/zh-TW.md b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/zh-TW.md index 2847dcbbe..320d5fa81 100644 --- a/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/StabilityUpscaleFastNode/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 從 Stability AI API 返回的放大後影像 | \ No newline at end of file +| `output` | IMAGE | 從 Stability AI API 返回的放大後影像 | diff --git a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/ar.md b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/ar.md index 576988fc2..c0d9a776a 100644 --- a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/ar.md +++ b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `المرحلة_ب` | LATENT | الموتر الكامن للمرحلة C بأبعاد [batch_size, 16, height//compression, width//compression] | -| `stage_b` | LATENT | الموتر الكامن للمرحلة B بأبعاد [batch_size, 4, height//4, width//4] | \ No newline at end of file +| `stage_b` | LATENT | الموتر الكامن للمرحلة B بأبعاد [batch_size, 4, height//4, width//4] | diff --git a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/pt-BR.md b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/pt-BR.md index a22062f9a..7a50087fa 100644 --- a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/pt-BR.md @@ -16,4 +16,4 @@ O nó StableCascade_EmptyLatentImage cria tensores latentes vazios para modelos | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `stage_c` | LATENT | O tensor latente do estágio C com dimensões [batch_size, 16, height//compression, width//compression] | -| `stage_b` | LATENT | O tensor latente do estágio B com dimensões [batch_size, 4, height//4, width//4] | \ No newline at end of file +| `stage_b` | LATENT | O tensor latente do estágio B com dimensões [batch_size, 4, height//4, width//4] | diff --git a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/tr.md b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/tr.md index 5324d648c..0490199e4 100644 --- a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/tr.md +++ b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/tr.md @@ -16,4 +16,4 @@ StableCascade_EmptyLatentImage düğümü, Stable Cascade modelleri için boş l | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `aşama_b` | LATENT | [batch_size, 16, height//compression, width//compression] boyutlarında C aşaması latent tensörü | -| `stage_b` | LATENT | [batch_size, 4, height//4, width//4] boyutlarında B aşaması latent tensörü | \ No newline at end of file +| `stage_b` | LATENT | [batch_size, 4, height//4, width//4] boyutlarında B aşaması latent tensörü | diff --git a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/zh-TW.md b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/zh-TW.md index b79d50e02..a7453a60d 100644 --- a/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableCascade_EmptyLatentImage/zh-TW.md @@ -16,4 +16,4 @@ StableCascade_EmptyLatentImage 節點為 Stable Cascade 模型建立空的潛在 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `stage_b` | LATENT | 階段 C 潛在張量,維度為 [batch_size, 16, height//compression, width//compression] | -| `stage_b` | LATENT | 階段 B 潛在張量,維度為 [batch_size, 4, height//4, width//4] | \ No newline at end of file +| `stage_b` | LATENT | 階段 B 潛在張量,維度為 [batch_size, 4, height//4, width//4] | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/ar.md b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/ar.md index 746c016a0..2912b13eb 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|---------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة بعد دمج المعلومات السابقة من المرحلة C | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف المعدلة بعد دمج المعلومات السابقة من المرحلة C | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/pt-BR.md index 4cb812163..a62ad53a3 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/pt-BR.md @@ -13,4 +13,4 @@ O nó StableCascade_StageB_Conditioning prepara os dados de condicionamento para | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados com as informações anteriores do Estágio C integradas | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento modificados com as informações anteriores do Estágio C integradas | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/tr.md b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/tr.md index afc6deeb3..65373709c 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/tr.md @@ -13,4 +13,4 @@ StableCascade_StageB_Conditioning düğümü, mevcut koşullandırma bilgilerini | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Stage C önceki bilgileri entegre edilmiş değiştirilmiş koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Stage C önceki bilgileri entegre edilmiş değiştirilmiş koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/zh-TW.md index 684d5b7cc..c193a1966 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageB_Conditioning/zh-TW.md @@ -13,4 +13,4 @@ StableCascade_StageB_Conditioning 節點透過將現有的調節資訊與來自 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 已整合 Stage C 先驗資訊的修改後調節資料 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 已整合 Stage C 先驗資訊的修改後調節資料 | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/ar.md b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/ar.md index d05a349d7..f660d3624 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/ar.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `المرحلة_ب` | LATENT | التمثيل الكامن المُشفر للمرحلة C من نموذج Stable Cascade | -| `stage_b` | LATENT | تمثيل كامن نائب للمرحلة B (يُرجع أصفارًا في الوقت الحالي) | \ No newline at end of file +| `stage_b` | LATENT | تمثيل كامن نائب للمرحلة B (يُرجع أصفارًا في الوقت الحالي) | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/pt-BR.md b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/pt-BR.md index ad6b4d08d..63b90e44c 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/pt-BR.md @@ -15,4 +15,4 @@ O nó StableCascade_StageC_VAEEncode processa imagens por meio de um codificador | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `stage_c` | LATENT | A representação latente codificada para o estágio C do modelo Stable Cascade | -| `stage_b` | LATENT | Uma representação latente reservada para o estágio B (atualmente retorna zeros) | \ No newline at end of file +| `stage_b` | LATENT | Uma representação latente reservada para o estágio B (atualmente retorna zeros) | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/tr.md b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/tr.md index 41cf6840e..60f9737ee 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/tr.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/tr.md @@ -15,4 +15,4 @@ StableCascade_StageC_VAEEncode düğümü, görüntüleri bir VAE kodlayıcı ar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `aşama_b` | LATENT | Stable Cascade modelinin C aşaması için kodlanmış gizli temsil | -| `stage_b` | LATENT | B aşaması için bir yer tutucu gizli temsil (şu anda sıfır değerler döndürür) | \ No newline at end of file +| `stage_b` | LATENT | B aşaması için bir yer tutucu gizli temsil (şu anda sıfır değerler döndürür) | diff --git a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/zh-TW.md b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/zh-TW.md index 05d80b6d0..2d2d5c714 100644 --- a/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableCascade_StageC_VAEEncode/zh-TW.md @@ -17,4 +17,4 @@ StableCascade_StageC_VAEEncode 節點透過 VAE 編碼器處理圖像,為 Stab | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `stage_c` | LATENT | 用於 Stable Cascade 模型 C 階段的編碼潛在表示 | -| `stage_b` | LATENT | 用於 B 階段的佔位符潛在表示(目前返回零值) | \ No newline at end of file +| `stage_b` | LATENT | 用於 B 階段的佔位符潛在表示(目前返回零值) | diff --git a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/ar.md b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/ar.md index b1bbc46ca..6a6af33a5 100644 --- a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/ar.md +++ b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/ar.md @@ -17,4 +17,4 @@ |--------------------|---------------|--------| | `المرحلة_ج` | IMAGE | التمثيل المشفر للصورة المناسب لمدخلات controlnet | | `المرحلة_ب` | LATENT | التمثيل الكامن البديل للمرحلة C من معالجة Stable Cascade | -| `stage_b` | LATENT | التمثيل الكامن البديل للمرحلة B من معالجة Stable Cascade | \ No newline at end of file +| `stage_b` | LATENT | التمثيل الكامن البديل للمرحلة B من معالجة Stable Cascade | diff --git a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/pt-BR.md b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/pt-BR.md index 763e24d95..f0fc2f320 100644 --- a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/pt-BR.md @@ -15,4 +15,4 @@ O nó StableCascade_SuperResolutionControlnet prepara as entradas para o process |-------------|-----------|-------------| | `controlnet_input` | IMAGE | A representação da imagem codificada adequada para a entrada do controlnet | | `stage_c` | LATENT | Representação latente de espaço reservado para o estágio C do processamento do Stable Cascade | -| `stage_b` | LATENT | Representação latente de espaço reservado para o estágio B do processamento do Stable Cascade | \ No newline at end of file +| `stage_b` | LATENT | Representação latente de espaço reservado para o estágio B do processamento do Stable Cascade | diff --git a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/tr.md b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/tr.md index af53cbca5..4c41f47f6 100644 --- a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/tr.md +++ b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/tr.md @@ -15,4 +15,4 @@ StableCascade_SuperResolutionControlnet düğümü, Stable Cascade süper çöz |-------------|-----------|-------------| | `aşama_c` | IMAGE | Kontrol ağı girdisi için uygun kodlanmış görüntü temsili | | `aşama_b` | LATENT | Stable Cascade işlemenin C aşaması için yer tutucu gizli temsil | -| `stage_b` | LATENT | Stable Cascade işlemenin B aşaması için yer tutucu gizli temsil | \ No newline at end of file +| `stage_b` | LATENT | Stable Cascade işlemenin B aşaması için yer tutucu gizli temsil | diff --git a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/zh-TW.md b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/zh-TW.md index cc2f31016..6593201dd 100644 --- a/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableCascade_SuperResolutionControlnet/zh-TW.md @@ -17,4 +17,4 @@ StableCascade_SuperResolutionControlnet 節點為 Stable Cascade 超解析度處 |-------------|-----------|-------------| | `controlnet_input` | IMAGE | 適合用於控制網路輸入的編碼圖像表示 | | `stage_c` | LATENT | 用於 Stable Cascade 處理階段 C 的佔位符潛在表示 | -| `stage_b` | LATENT | 用於 Stable Cascade 處理階段 B 的佔位符潛在表示 | \ No newline at end of file +| `stage_b` | LATENT | 用於 Stable Cascade 處理階段 B 的佔位符潛在表示 | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning/ar.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning/ar.md index 13acee0ba..f31617ab9 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning/ar.md @@ -25,4 +25,4 @@ | `سلبي` | CONDITIONING | بيانات التكييف الإيجابي التي تجمع بين ميزات الصورة وتضمينات الكاميرا | | `كامِن` | CONDITIONING | بيانات التكييف السلبي بميزات مهيأة بصفر | | `latent` | LATENT | تمثيل كامن بأبعاد [batch_size, 4, height//8, width//8] | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning/pt-BR.md index f7ff37ab1..2ae8e0f36 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning/pt-BR.md @@ -23,4 +23,4 @@ O nó StableZero123_Conditioning processa uma imagem de entrada e ângulos de c |-------------|-----------|-------------| | `positive` | CONDITIONING | Dados de condicionamento positivo que combinam características da imagem e incorporações da câmera | | `negative` | CONDITIONING | Dados de condicionamento negativo com características inicializadas como zero | -| `latent` | LATENT | Representação latente com dimensões [batch_size, 4, height//8, width//8] | \ No newline at end of file +| `latent` | LATENT | Representação latente com dimensões [batch_size, 4, height//8, width//8] | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning/tr.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning/tr.md index 82bfc3ebc..ea93eadea 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning/tr.md @@ -23,4 +23,4 @@ StableZero123_Conditioning düğümü, bir giriş görüntüsünü ve kamera aç |-------------|-----------|-------------| | `positive` | CONDITIONING | Görüntü özellikleri ve kamera gömme bilgilerini birleştiren pozitif koşullandırma verisi | | `negative` | CONDITIONING | Sıfır başlatılmış özelliklere sahip negatif koşullandırma verisi | -| `latent` | LATENT | [batch_size, 4, height//8, width//8] boyutlarına sahip gizli temsil | \ No newline at end of file +| `latent` | LATENT | [batch_size, 4, height//8, width//8] boyutlarına sahip gizli temsil | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning/zh-TW.md index a54a1c16c..4c7257c8e 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning/zh-TW.md @@ -23,4 +23,4 @@ StableZero123_Conditioning 節點處理輸入圖像和相機角度,生成用 |-------------|-----------|-------------| | `負向` | CONDITIONING | 結合圖像特徵和相機嵌入的正向條件資料 | | `潛在空間` | CONDITIONING | 具有零初始化特徵的負向條件資料 | -| `latent` | LATENT | 潛在表示,維度為 [batch_size, 4, height//8, width//8] | \ No newline at end of file +| `latent` | LATENT | 潛在表示,維度為 [batch_size, 4, height//8, width//8] | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/ar.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/ar.md index db04f03ea..93f947eee 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/ar.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/ar.md @@ -27,4 +27,4 @@ | `سلبي` | CONDITIONING | بيانات التكييف الإيجابي التي تحتوي على تضمينات الصورة ومعاملات الكاميرا | | `كامِن` | CONDITIONING | بيانات التكييف السلبي ذات التضمينات المُهيأة بصفر | | `latent` | LATENT | التمثيل الكامن للصورة المُعالجة مع معلومات فهرسة الدُفعة | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/pt-BR.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/pt-BR.md index e87f365a7..2ce6268fe 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/pt-BR.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/pt-BR.md @@ -25,4 +25,4 @@ O nó StableZero123_Conditioning_Batched processa uma imagem de entrada e gera d |-------------|-----------|-------------| | `positive` | CONDITIONING | Os dados de condicionamento positivo contendo embeddings de imagem e parâmetros da câmera | | `negative` | CONDITIONING | Os dados de condicionamento negativo com embeddings inicializados em zero | -| `latent` | LATENT | A representação latente da imagem processada com informações de indexação do lote | \ No newline at end of file +| `latent` | LATENT | A representação latente da imagem processada com informações de indexação do lote | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/tr.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/tr.md index 4ec807ff6..96de9b511 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/tr.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/tr.md @@ -25,4 +25,4 @@ StableZero123_Conditioning_Batched düğümü, bir giriş görüntüsünü işle |-------------|-----------|-------------| | `positive` | CONDITIONING | Görüntü yerleştirmelerini ve kamera parametrelerini içeren pozitif koşullandırma verisi | | `negative` | CONDITIONING | Sıfır başlatılmış yerleştirmeler içeren negatif koşullandırma verisi | -| `latent` | LATENT | Toplu indeksleme bilgisiyle birlikte işlenen görüntünün gizli temsili | \ No newline at end of file +| `latent` | LATENT | Toplu indeksleme bilgisiyle birlikte işlenen görüntünün gizli temsili | diff --git a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/zh-TW.md b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/zh-TW.md index f730777bb..6b8f8620c 100644 --- a/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/zh-TW.md +++ b/comfyui_embedded_docs/docs/StableZero123_Conditioning_Batched/zh-TW.md @@ -25,4 +25,4 @@ StableZero123_Conditioning_Batched 節點處理輸入圖像並生成用於 3D |-------------|-----------|-------------| | `負向` | CONDITIONING | 包含圖像嵌入和攝影機參數的正向條件資料 | | `潛在空間` | CONDITIONING | 帶有零初始化嵌入的負向條件資料 | -| `latent` | LATENT | 帶有批次索引資訊的處理後圖像潛在表示 | \ No newline at end of file +| `latent` | LATENT | 帶有批次索引資訊的處理後圖像潛在表示 | diff --git a/comfyui_embedded_docs/docs/Stablezero123Conditioning/ar.md b/comfyui_embedded_docs/docs/Stablezero123Conditioning/ar.md index 02fc7909b..2879d8ddd 100644 --- a/comfyui_embedded_docs/docs/Stablezero123Conditioning/ar.md +++ b/comfyui_embedded_docs/docs/Stablezero123Conditioning/ar.md @@ -21,4 +21,4 @@ |-------------|-------------------|-------------| | `positive` | `CONDITIONING` | يُولد متجهات تكييف إيجابية، مما يساعد في تعزيز السمات الإيجابية للنموذج. | | `negative` | `CONDITIONING` | يُنتج متجهات تكييف سلبية، مما يساعد النموذج على تجنب سمات معينة. | -| `latent` | `LATENT` | يُنشئ تمثيلات كامنة، مما يسهل الحصول على رؤى أعمق للنموذج في البيانات. | \ No newline at end of file +| `latent` | `LATENT` | يُنشئ تمثيلات كامنة، مما يسهل الحصول على رؤى أعمق للنموذج في البيانات. | diff --git a/comfyui_embedded_docs/docs/Stablezero123Conditioning/pt-BR.md b/comfyui_embedded_docs/docs/Stablezero123Conditioning/pt-BR.md index 868d7ab5a..620ac9fa6 100644 --- a/comfyui_embedded_docs/docs/Stablezero123Conditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/Stablezero123Conditioning/pt-BR.md @@ -21,4 +21,4 @@ Este nó foi projetado para processar e condicionar dados para uso em modelos St |---------------|--------------------|-------------| | `positive` | `CONDITIONING` | Gera vetores de condicionamento positivo, auxiliando no reforço de características positivas do modelo. | | `negative` | `CONDITIONING` | Produz vetores de condicionamento negativo, auxiliando o modelo a evitar certas características. | -| `latent` | `LATENT` | Cria representações latentes, facilitando insights mais profundos do modelo sobre os dados. | \ No newline at end of file +| `latent` | `LATENT` | Cria representações latentes, facilitando insights mais profundos do modelo sobre os dados. | diff --git a/comfyui_embedded_docs/docs/Stablezero123Conditioning/tr.md b/comfyui_embedded_docs/docs/Stablezero123Conditioning/tr.md index 3aef4bc2b..9c9a06f37 100644 --- a/comfyui_embedded_docs/docs/Stablezero123Conditioning/tr.md +++ b/comfyui_embedded_docs/docs/Stablezero123Conditioning/tr.md @@ -21,4 +21,4 @@ Bu düğüm, StableZero123 modellerinde kullanılmak üzere verileri işlemek ve |---------------|----------------|-------------| | `positive` | `CONDITIONING` | Pozitif koşullandırma vektörleri oluşturur, modelin pozitif özelliklerini güçlendirmesine yardımcı olur. | | `negative` | `CONDITIONING` | Negatif koşullandırma vektörleri üretir, modelin belirli özelliklerden kaçınmasına yardımcı olur. | -| `latent` | `LATENT` | Gizil temsiller oluşturur, modelin veriye dair daha derin içgörüler elde etmesini kolaylaştırır. | \ No newline at end of file +| `latent` | `LATENT` | Gizil temsiller oluşturur, modelin veriye dair daha derin içgörüler elde etmesini kolaylaştırır. | diff --git a/comfyui_embedded_docs/docs/Stablezero123Conditioning/zh-TW.md b/comfyui_embedded_docs/docs/Stablezero123Conditioning/zh-TW.md index dd873f5da..9b952584c 100644 --- a/comfyui_embedded_docs/docs/Stablezero123Conditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/Stablezero123Conditioning/zh-TW.md @@ -21,4 +21,4 @@ |---------------|--------------|-------------| | `positive` | `CONDITIONING` | 生成正向調節向量,協助模型強化正面特徵。 | | `negative` | `CONDITIONING` | 產生負向調節向量,幫助模型避免特定不良特徵。 | -| `latent` | `LATENT` | 建立潛在表示,促進模型對資料的深層理解。 | \ No newline at end of file +| `latent` | `LATENT` | 建立潛在表示,促進模型對資料的深層理解。 | diff --git a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/ar.md b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/ar.md index 1a041dbf8..89b9d7974 100644 --- a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/ar.md +++ b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/ar.md @@ -23,4 +23,4 @@ |------------|--------------|-------------| | `positive` | `CONDITIONING` | مخرجات التكييف الإيجابي، المصممة لتعزيز ميزات أو جوانب معينة في المحتوى المُولَّد. | | `negative` | `CONDITIONING` | مخرجات التكييف السلبي، المصممة لتقليل ميزات أو جوانب معينة في المحتوى المُولَّد. | -| `latent` | `LATENT` | التمثيل الكامن المستمد من عملية التكييف، الجاهز لمزيد من خطوات المعالجة أو التوليد. | \ No newline at end of file +| `latent` | `LATENT` | التمثيل الكامن المستمد من عملية التكييف، الجاهز لمزيد من خطوات المعالجة أو التوليد. | diff --git a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/pt-BR.md b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/pt-BR.md index 45f8120d0..8df17e5a2 100644 --- a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/pt-BR.md +++ b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/pt-BR.md @@ -23,4 +23,4 @@ Este nó foi projetado para processar informações de condicionamento de forma |---------------|--------------|-------------| | `positive` | `CONDITIONING` | A saída de condicionamento positivo, adaptada para promover certas características ou aspectos no conteúdo gerado. | | `negative` | `CONDITIONING` | A saída de condicionamento negativo, adaptada para desfavorecer certas características ou aspectos no conteúdo gerado. | -| `latent` | `LATENT` | A representação latente derivada do processo de condicionamento, pronta para etapas posteriores de processamento ou geração. | \ No newline at end of file +| `latent` | `LATENT` | A representação latente derivada do processo de condicionamento, pronta para etapas posteriores de processamento ou geração. | diff --git a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/tr.md b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/tr.md index 3a636dd7c..cb9ed05e9 100644 --- a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/tr.md +++ b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/tr.md @@ -23,4 +23,4 @@ Bu düğüm, StableZero123 modeli için özel olarak tasarlanmış şekilde grup |---------------|--------------|-------------| | `positive` | `CONDITIONING` | Oluşturulan içerikte belirli özellikleri veya yönleri desteklemek için uyarlanmış pozitif koşullandırma çıktısı. | | `negative` | `CONDITIONING` | Oluşturulan içerikte belirli özellikleri veya yönleri bastırmak için uyarlanmış negatif koşullandırma çıktısı. | -| `latent` | `LATENT` | Koşullandırma sürecinden türetilen, daha fazla işleme veya üretim adımlarına hazır olan gizli temsil. | \ No newline at end of file +| `latent` | `LATENT` | Koşullandırma sürecinden türetilen, daha fazla işleme veya üretim adımlarına hazır olan gizli temsil. | diff --git a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/zh-TW.md b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/zh-TW.md index dac1b2fc5..f07a39d0e 100644 --- a/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/zh-TW.md +++ b/comfyui_embedded_docs/docs/Stablezero123ConditioningBatched/zh-TW.md @@ -23,4 +23,4 @@ |-------------|-----------------|------| | `positive` | `CONDITIONING` | 正向條件化輸出,專門用於在生成內容中增強特定特徵或方面 | | `negative` | `CONDITIONING` | 負向條件化輸出,專門用於在生成內容中抑制特定特徵或方面 | -| `latent` | `LATENT` | 從條件化過程推導出的潛在表示,準備用於進一步處理或生成步驟 | \ No newline at end of file +| `latent` | `LATENT` | 從條件化過程推導出的潛在表示,準備用於進一步處理或生成步驟 | diff --git a/comfyui_embedded_docs/docs/StringCompare/ar.md b/comfyui_embedded_docs/docs/StringCompare/ar.md index d7f6eb118..26ddf8ccc 100644 --- a/comfyui_embedded_docs/docs/StringCompare/ar.md +++ b/comfyui_embedded_docs/docs/StringCompare/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | BOOLEAN | يُرجع قيمة true إذا تحققت شرط المقارنة، وقيمة false إذا لم يتحقق | \ No newline at end of file +| `output` | BOOLEAN | يُرجع قيمة true إذا تحققت شرط المقارنة، وقيمة false إذا لم يتحقق | diff --git a/comfyui_embedded_docs/docs/StringCompare/pt-BR.md b/comfyui_embedded_docs/docs/StringCompare/pt-BR.md index 50d8b8b9e..b55639687 100644 --- a/comfyui_embedded_docs/docs/StringCompare/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringCompare/pt-BR.md @@ -15,4 +15,4 @@ O nó StringCompare compara duas strings de texto usando diferentes métodos de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | BOOLEAN | Retorna verdadeiro se a condição de comparação for atendida, falso caso contrário | \ No newline at end of file +| `output` | BOOLEAN | Retorna verdadeiro se a condição de comparação for atendida, falso caso contrário | diff --git a/comfyui_embedded_docs/docs/StringCompare/tr.md b/comfyui_embedded_docs/docs/StringCompare/tr.md index 0ade13018..c350e6346 100644 --- a/comfyui_embedded_docs/docs/StringCompare/tr.md +++ b/comfyui_embedded_docs/docs/StringCompare/tr.md @@ -15,4 +15,4 @@ StringCompare düğümü, iki metin dizesini farklı karşılaştırma yöntemle | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | BOOLEAN | Karşılaştırma koşulu sağlanıyorsa true, aksi takdirde false döndürür | \ No newline at end of file +| `output` | BOOLEAN | Karşılaştırma koşulu sağlanıyorsa true, aksi takdirde false döndürür | diff --git a/comfyui_embedded_docs/docs/StringCompare/zh-TW.md b/comfyui_embedded_docs/docs/StringCompare/zh-TW.md index e5d86f689..88a28c507 100644 --- a/comfyui_embedded_docs/docs/StringCompare/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringCompare/zh-TW.md @@ -15,4 +15,4 @@ StringCompare 節點使用不同的比較方法來比較兩個文字字串。它 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | BOOLEAN | 如果比較條件符合則返回 true,否則返回 false | \ No newline at end of file +| `output` | BOOLEAN | 如果比較條件符合則返回 true,否則返回 false | diff --git a/comfyui_embedded_docs/docs/StringConcatenate/ar.md b/comfyui_embedded_docs/docs/StringConcatenate/ar.md index 1cb32da73..8ced07e4a 100644 --- a/comfyui_embedded_docs/docs/StringConcatenate/ar.md +++ b/comfyui_embedded_docs/docs/StringConcatenate/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | النص المُدمج مع إدراج الفاصل بين `string_a` و `string_b` | \ No newline at end of file +| `output` | STRING | النص المُدمج مع إدراج الفاصل بين `string_a` و `string_b` | diff --git a/comfyui_embedded_docs/docs/StringConcatenate/pt-BR.md b/comfyui_embedded_docs/docs/StringConcatenate/pt-BR.md index 1d5ef0857..bcc2931e5 100644 --- a/comfyui_embedded_docs/docs/StringConcatenate/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringConcatenate/pt-BR.md @@ -14,4 +14,4 @@ O nó StringConcatenate combina duas strings de texto em uma, unindo-as com um d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string combinada com o delimitador inserido entre `string_a` e `string_b` | \ No newline at end of file +| `output` | STRING | A string combinada com o delimitador inserido entre `string_a` e `string_b` | diff --git a/comfyui_embedded_docs/docs/StringConcatenate/tr.md b/comfyui_embedded_docs/docs/StringConcatenate/tr.md index fab89cdd8..68b20aab0 100644 --- a/comfyui_embedded_docs/docs/StringConcatenate/tr.md +++ b/comfyui_embedded_docs/docs/StringConcatenate/tr.md @@ -14,4 +14,4 @@ StringConcatenate düğümü, iki metin dizisini belirtilen bir ayırıcı ile b | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | string_a ve string_b arasına ayırıcı yerleştirilmiş şekilde birleştirilmiş dizi | \ No newline at end of file +| `output` | STRING | string_a ve string_b arasına ayırıcı yerleştirilmiş şekilde birleştirilmiş dizi | diff --git a/comfyui_embedded_docs/docs/StringConcatenate/zh-TW.md b/comfyui_embedded_docs/docs/StringConcatenate/zh-TW.md index 8d5d27fca..7fc28db60 100644 --- a/comfyui_embedded_docs/docs/StringConcatenate/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringConcatenate/zh-TW.md @@ -14,4 +14,4 @@ StringConcatenate 節點透過指定的分隔符將兩個文字字串組合成 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | STRING | 在 string_a 和 string_b 之間插入分隔符後的組合字串 | \ No newline at end of file +| `output` | STRING | 在 string_a 和 string_b 之間插入分隔符後的組合字串 | diff --git a/comfyui_embedded_docs/docs/StringContains/ar.md b/comfyui_embedded_docs/docs/StringContains/ar.md index 1e3eea44c..8183a9cb5 100644 --- a/comfyui_embedded_docs/docs/StringContains/ar.md +++ b/comfyui_embedded_docs/docs/StringContains/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `contains` | BOOLEAN | يُرجع القيمة true إذا تم العثور على السلسلة الفرعية في السلسلة النصية، والقيمة false في الحالة الأخرى | \ No newline at end of file +| `contains` | BOOLEAN | يُرجع القيمة true إذا تم العثور على السلسلة الفرعية في السلسلة النصية، والقيمة false في الحالة الأخرى | diff --git a/comfyui_embedded_docs/docs/StringContains/pt-BR.md b/comfyui_embedded_docs/docs/StringContains/pt-BR.md index 8c10c2fad..90fab2f37 100644 --- a/comfyui_embedded_docs/docs/StringContains/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringContains/pt-BR.md @@ -14,4 +14,4 @@ O nó StringContains verifica se uma determinada string contém uma substring es | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `contains` | BOOLEAN | Retorna verdadeiro se a substring for encontrada na string, falso caso contrário | \ No newline at end of file +| `contains` | BOOLEAN | Retorna verdadeiro se a substring for encontrada na string, falso caso contrário | diff --git a/comfyui_embedded_docs/docs/StringContains/tr.md b/comfyui_embedded_docs/docs/StringContains/tr.md index 3a99b952e..1daccbe79 100644 --- a/comfyui_embedded_docs/docs/StringContains/tr.md +++ b/comfyui_embedded_docs/docs/StringContains/tr.md @@ -14,4 +14,4 @@ StringContains düğümü, belirli bir dizenin belirtilen bir alt dize içerip i | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `contains` | BOOLEAN | Alt dize dize içinde bulunursa true, aksi takdirde false döndürür | \ No newline at end of file +| `contains` | BOOLEAN | Alt dize dize içinde bulunursa true, aksi takdirde false döndürür | diff --git a/comfyui_embedded_docs/docs/StringContains/zh-TW.md b/comfyui_embedded_docs/docs/StringContains/zh-TW.md index fe2a86e4c..864f251ae 100644 --- a/comfyui_embedded_docs/docs/StringContains/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringContains/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `contains` | BOOLEAN | 如果在字串中找到子字串則返回 true,否則返回 false | \ No newline at end of file +| `contains` | BOOLEAN | 如果在字串中找到子字串則返回 true,否則返回 false | diff --git a/comfyui_embedded_docs/docs/StringLength/ar.md b/comfyui_embedded_docs/docs/StringLength/ar.md index 53bcf1312..8f75d60d5 100644 --- a/comfyui_embedded_docs/docs/StringLength/ar.md +++ b/comfyui_embedded_docs/docs/StringLength/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| -| `length` | INT | العدد الإجمالي للأحرف في سلسلة الإدخال، بما في ذلك المسافات والأحرف الخاصة. | \ No newline at end of file +| `length` | INT | العدد الإجمالي للأحرف في سلسلة الإدخال، بما في ذلك المسافات والأحرف الخاصة. | diff --git a/comfyui_embedded_docs/docs/StringLength/pt-BR.md b/comfyui_embedded_docs/docs/StringLength/pt-BR.md index 6ec471b4a..3fd729068 100644 --- a/comfyui_embedded_docs/docs/StringLength/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringLength/pt-BR.md @@ -12,4 +12,4 @@ O nó StringLength calcula o número de caracteres em uma string de texto. Ele r | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `length` | INT | O número total de caracteres na string de entrada, incluindo espaços e caracteres especiais. | \ No newline at end of file +| `length` | INT | O número total de caracteres na string de entrada, incluindo espaços e caracteres especiais. | diff --git a/comfyui_embedded_docs/docs/StringLength/tr.md b/comfyui_embedded_docs/docs/StringLength/tr.md index a39ff3cac..39389916d 100644 --- a/comfyui_embedded_docs/docs/StringLength/tr.md +++ b/comfyui_embedded_docs/docs/StringLength/tr.md @@ -12,4 +12,4 @@ StringLength düğümü, bir metin dizesindeki karakter sayısını hesaplar. He | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `length` | INT | Giriş dizesindeki toplam karakter sayısı, boşluklar ve özel karakterler dahil. | \ No newline at end of file +| `length` | INT | Giriş dizesindeki toplam karakter sayısı, boşluklar ve özel karakterler dahil. | diff --git a/comfyui_embedded_docs/docs/StringLength/zh-TW.md b/comfyui_embedded_docs/docs/StringLength/zh-TW.md index 96879fbca..460207c32 100644 --- a/comfyui_embedded_docs/docs/StringLength/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringLength/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `length` | INT | 輸入字串中的字元總數,包括空格和特殊字元。 | \ No newline at end of file +| `length` | INT | 輸入字串中的字元總數,包括空格和特殊字元。 | diff --git a/comfyui_embedded_docs/docs/StringReplace/ar.md b/comfyui_embedded_docs/docs/StringReplace/ar.md index eb1b81d32..5d7f98623 100644 --- a/comfyui_embedded_docs/docs/StringReplace/ar.md +++ b/comfyui_embedded_docs/docs/StringReplace/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | السلسلة المعدلة مع استبدال جميع تواجدات نص البحث بنص الاستبدال | \ No newline at end of file +| `output` | STRING | السلسلة المعدلة مع استبدال جميع تواجدات نص البحث بنص الاستبدال | diff --git a/comfyui_embedded_docs/docs/StringReplace/pt-BR.md b/comfyui_embedded_docs/docs/StringReplace/pt-BR.md index 3836a0ca2..97cd16d52 100644 --- a/comfyui_embedded_docs/docs/StringReplace/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringReplace/pt-BR.md @@ -14,4 +14,4 @@ O nó StringReplace executa operações de substituição de texto em strings de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string modificada com todas as ocorrências do texto de busca substituídas pelo texto de substituição | \ No newline at end of file +| `output` | STRING | A string modificada com todas as ocorrências do texto de busca substituídas pelo texto de substituição | diff --git a/comfyui_embedded_docs/docs/StringReplace/tr.md b/comfyui_embedded_docs/docs/StringReplace/tr.md index 6ab7ed459..9daccf3d1 100644 --- a/comfyui_embedded_docs/docs/StringReplace/tr.md +++ b/comfyui_embedded_docs/docs/StringReplace/tr.md @@ -14,4 +14,4 @@ StringReplace düğümü, giriş dizeleri üzerinde metin değiştirme işlemler | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Bulunan metnin tüm örneklerinin değiştirme metniyle değiştirildiği değiştirilmiş dize | \ No newline at end of file +| `output` | STRING | Bulunan metnin tüm örneklerinin değiştirme metniyle değiştirildiği değiştirilmiş dize | diff --git a/comfyui_embedded_docs/docs/StringReplace/zh-TW.md b/comfyui_embedded_docs/docs/StringReplace/zh-TW.md index 4134925f1..3824ab966 100644 --- a/comfyui_embedded_docs/docs/StringReplace/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringReplace/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 已修改的字串,其中所有搜尋文字均已被替換文字取代 | \ No newline at end of file +| `output` | STRING | 已修改的字串,其中所有搜尋文字均已被替換文字取代 | diff --git a/comfyui_embedded_docs/docs/StringSubstring/ar.md b/comfyui_embedded_docs/docs/StringSubstring/ar.md index e72a4ec55..5e5337b6c 100644 --- a/comfyui_embedded_docs/docs/StringSubstring/ar.md +++ b/comfyui_embedded_docs/docs/StringSubstring/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | STRING | الجزء النصي الفرعي المستخرج من النص المدخل | \ No newline at end of file +| `output` | STRING | الجزء النصي الفرعي المستخرج من النص المدخل | diff --git a/comfyui_embedded_docs/docs/StringSubstring/pt-BR.md b/comfyui_embedded_docs/docs/StringSubstring/pt-BR.md index 7d7d5dd35..b1633baf1 100644 --- a/comfyui_embedded_docs/docs/StringSubstring/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringSubstring/pt-BR.md @@ -14,4 +14,4 @@ O nó StringSubstring extrai uma porção de texto de uma string maior. Ele rece | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A substring extraída do texto de entrada | \ No newline at end of file +| `output` | STRING | A substring extraída do texto de entrada | diff --git a/comfyui_embedded_docs/docs/StringSubstring/tr.md b/comfyui_embedded_docs/docs/StringSubstring/tr.md index 0fe3d6285..9371d85bc 100644 --- a/comfyui_embedded_docs/docs/StringSubstring/tr.md +++ b/comfyui_embedded_docs/docs/StringSubstring/tr.md @@ -14,4 +14,4 @@ StringSubstring düğümü, daha büyük bir metin dizisinden bir bölüm çıka | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Giriş metninden çıkarılan alt dizi | \ No newline at end of file +| `output` | STRING | Giriş metninden çıkarılan alt dizi | diff --git a/comfyui_embedded_docs/docs/StringSubstring/zh-TW.md b/comfyui_embedded_docs/docs/StringSubstring/zh-TW.md index 92b701f79..88f03ec9e 100644 --- a/comfyui_embedded_docs/docs/StringSubstring/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringSubstring/zh-TW.md @@ -14,4 +14,4 @@ StringSubstring 節點可從較長的字串中擷取部分文字。它接受起 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | STRING | 從輸入文字中擷取出的子字串 | \ No newline at end of file +| `output` | STRING | 從輸入文字中擷取出的子字串 | diff --git a/comfyui_embedded_docs/docs/StringTrim/ar.md b/comfyui_embedded_docs/docs/StringTrim/ar.md index 901871395..c1b6e2fc1 100644 --- a/comfyui_embedded_docs/docs/StringTrim/ar.md +++ b/comfyui_embedded_docs/docs/StringTrim/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `output` | STRING | سلسلة النص المقصوصة بعد إزالة المسافات البيضاء وفقًا للنمط المحدد. | \ No newline at end of file +| `output` | STRING | سلسلة النص المقصوصة بعد إزالة المسافات البيضاء وفقًا للنمط المحدد. | diff --git a/comfyui_embedded_docs/docs/StringTrim/pt-BR.md b/comfyui_embedded_docs/docs/StringTrim/pt-BR.md index a77be4701..e70c195a1 100644 --- a/comfyui_embedded_docs/docs/StringTrim/pt-BR.md +++ b/comfyui_embedded_docs/docs/StringTrim/pt-BR.md @@ -13,4 +13,4 @@ O nó StringTrim remove caracteres de espaço em branco do início, do final ou | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | STRING | A string de texto aparada, com os espaços em branco removidos de acordo com o modo selecionado. | \ No newline at end of file +| `output` | STRING | A string de texto aparada, com os espaços em branco removidos de acordo com o modo selecionado. | diff --git a/comfyui_embedded_docs/docs/StringTrim/tr.md b/comfyui_embedded_docs/docs/StringTrim/tr.md index 69db9b283..0ffbacc6d 100644 --- a/comfyui_embedded_docs/docs/StringTrim/tr.md +++ b/comfyui_embedded_docs/docs/StringTrim/tr.md @@ -13,4 +13,4 @@ StringTrim düğümü, bir metin dizesinin başından, sonundan veya her iki tar | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | STRING | Seçilen moda göre boşlukları kaldırılmış kırpılmış metin dizesi. | \ No newline at end of file +| `output` | STRING | Seçilen moda göre boşlukları kaldırılmış kırpılmış metin dizesi. | diff --git a/comfyui_embedded_docs/docs/StringTrim/zh-TW.md b/comfyui_embedded_docs/docs/StringTrim/zh-TW.md index 75a4bf816..57eabe64c 100644 --- a/comfyui_embedded_docs/docs/StringTrim/zh-TW.md +++ b/comfyui_embedded_docs/docs/StringTrim/zh-TW.md @@ -13,4 +13,4 @@ StringTrim 節點可移除文字字串開頭、結尾或兩側的空白字元。 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | STRING | 根據所選模式移除空白字元後的修剪文字字串。 | \ No newline at end of file +| `output` | STRING | 根據所選模式移除空白字元後的修剪文字字串。 | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/ar.md b/comfyui_embedded_docs/docs/StripWhitespace/ar.md index 2e11919d3..1d0309535 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/ar.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص المُعالج بعد إزالة جميع أحرف المسافات البيضاء من البداية والنهاية. | \ No newline at end of file +| `text` | STRING | النص المُعالج بعد إزالة جميع أحرف المسافات البيضاء من البداية والنهاية. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/en.md b/comfyui_embedded_docs/docs/StripWhitespace/en.md index b69498802..a75e028b9 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/en.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/en.md @@ -12,4 +12,4 @@ This node removes any extra spaces, tabs, or newlines from the beginning and end | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The processed text with all leading and trailing whitespace characters removed. | \ No newline at end of file +| `text` | STRING | The processed text with all leading and trailing whitespace characters removed. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/es.md b/comfyui_embedded_docs/docs/StripWhitespace/es.md index 157f59e84..2de607936 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/es.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/es.md @@ -12,4 +12,4 @@ Este nodo elimina cualquier espacio, tabulación o salto de línea adicional del | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto procesado con todos los caracteres de espacio en blanco iniciales y finales eliminados. | \ No newline at end of file +| `text` | STRING | El texto procesado con todos los caracteres de espacio en blanco iniciales y finales eliminados. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/fr.md b/comfyui_embedded_docs/docs/StripWhitespace/fr.md index fde839ab6..2bd6f9d14 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/fr.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/fr.md @@ -12,4 +12,4 @@ Ce nœud supprime les espaces, tabulations ou sauts de ligne superflus au début | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte traité, avec tous les caractères d'espacement de début et de fin supprimés. | \ No newline at end of file +| `text` | STRING | Le texte traité, avec tous les caractères d'espacement de début et de fin supprimés. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/ja.md b/comfyui_embedded_docs/docs/StripWhitespace/ja.md index ec1383bd2..d3b5a45bd 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/ja.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | 先頭と末尾のすべての空白文字が削除された処理済みテキストです。 | \ No newline at end of file +| `text` | STRING | 先頭と末尾のすべての空白文字が削除された処理済みテキストです。 | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/ko.md b/comfyui_embedded_docs/docs/StripWhitespace/ko.md index da3aea0f8..70b1ef399 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/ko.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | 모든 앞뒤 공백 문자가 제거된 처리된 텍스트입니다. | \ No newline at end of file +| `text` | STRING | 모든 앞뒤 공백 문자가 제거된 처리된 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/pt-BR.md b/comfyui_embedded_docs/docs/StripWhitespace/pt-BR.md index 348e6a4de..1c49ff178 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/pt-BR.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/pt-BR.md @@ -12,4 +12,4 @@ Este nó remove quaisquer espaços, tabulações ou quebras de linha extras do i | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto processado, com todos os caracteres de espaço em branco iniciais e finais removidos. | \ No newline at end of file +| `text` | STRING | O texto processado, com todos os caracteres de espaço em branco iniciais e finais removidos. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/ru.md b/comfyui_embedded_docs/docs/StripWhitespace/ru.md index 9bb57fed3..36b71d3ee 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/ru.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Обработанный текст, из которого удалены все начальные и конечные пробельные символы. | \ No newline at end of file +| `text` | STRING | Обработанный текст, из которого удалены все начальные и конечные пробельные символы. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/tr.md b/comfyui_embedded_docs/docs/StripWhitespace/tr.md index 56bc271cc..9de8db0dc 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/tr.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/tr.md @@ -12,4 +12,4 @@ Bu düğüm, bir metin dizesinin başındaki ve sonundaki tüm fazladan boşlukl | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | Başındaki ve sonundaki tüm boşluk karakterleri kaldırılmış olarak işlenmiş metin. | \ No newline at end of file +| `text` | STRING | Başındaki ve sonundaki tüm boşluk karakterleri kaldırılmış olarak işlenmiş metin. | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/zh-TW.md b/comfyui_embedded_docs/docs/StripWhitespace/zh-TW.md index 2460afabb..8fef32415 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/zh-TW.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 經過處理的文字,所有開頭和結尾的空白字元已被移除。 | \ No newline at end of file +| `text` | STRING | 經過處理的文字,所有開頭和結尾的空白字元已被移除。 | diff --git a/comfyui_embedded_docs/docs/StripWhitespace/zh.md b/comfyui_embedded_docs/docs/StripWhitespace/zh.md index 123cc2f1f..f00149eab 100644 --- a/comfyui_embedded_docs/docs/StripWhitespace/zh.md +++ b/comfyui_embedded_docs/docs/StripWhitespace/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 处理后的文本,所有开头和结尾的空白字符已被移除。 | \ No newline at end of file +| `text` | STRING | 处理后的文本,所有开头和结尾的空白字符已被移除。 | diff --git a/comfyui_embedded_docs/docs/StyleModelApply/ar.md b/comfyui_embedded_docs/docs/StyleModelApply/ar.md index f5d743c3c..bba1a33c8 100644 --- a/comfyui_embedded_docs/docs/StyleModelApply/ar.md +++ b/comfyui_embedded_docs/docs/StyleModelApply/ar.md @@ -16,4 +16,4 @@ | المعامل | نوع Comfy | الوصف | |---------------------|--------------------|--------| -| `تهيئة` | `CONDITIONING` | التكييف المحسن أو المعدل، متضمنًا مخرجات نموذج الأسلوب. يمثل التكييف النهائي المُنمق الجاهز لمزيد من المعالجة أو التوليد. | \ No newline at end of file +| `تهيئة` | `CONDITIONING` | التكييف المحسن أو المعدل، متضمنًا مخرجات نموذج الأسلوب. يمثل التكييف النهائي المُنمق الجاهز لمزيد من المعالجة أو التوليد. | diff --git a/comfyui_embedded_docs/docs/StyleModelApply/pt-BR.md b/comfyui_embedded_docs/docs/StyleModelApply/pt-BR.md index b0c8cdadb..3f0a927c5 100644 --- a/comfyui_embedded_docs/docs/StyleModelApply/pt-BR.md +++ b/comfyui_embedded_docs/docs/StyleModelApply/pt-BR.md @@ -16,4 +16,4 @@ Este nó aplica um modelo de estilo a um condicionamento fornecido, aprimorando | Parâmetro | Tipo Comfy | Descrição | |----------------------|-----------------------|-------------| -| `conditioning` | `CONDITIONING` | O condicionamento aprimorado ou alterado, incorporando a saída do modelo de estilo. Representa o condicionamento final, estilizado e pronto para processamento ou geração posterior. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | O condicionamento aprimorado ou alterado, incorporando a saída do modelo de estilo. Representa o condicionamento final, estilizado e pronto para processamento ou geração posterior. | diff --git a/comfyui_embedded_docs/docs/StyleModelApply/tr.md b/comfyui_embedded_docs/docs/StyleModelApply/tr.md index 7d971620a..90b217269 100644 --- a/comfyui_embedded_docs/docs/StyleModelApply/tr.md +++ b/comfyui_embedded_docs/docs/StyleModelApply/tr.md @@ -16,4 +16,4 @@ Bu düğüm, bir stil modelini belirli bir koşullandırmaya uygulayarak, bir CL | Parametre | Comfy dtype | Açıklama | |----------------------|-----------------------|-------------| -| `koşullandırma` | `CONDITIONING` | Stil modelinin çıktısını içeren, geliştirilmiş veya değiştirilmiş koşullandırma. Daha fazla işleme veya üretim için hazır, nihai, stillendirilmiş koşullandırmayı temsil eder. | \ No newline at end of file +| `koşullandırma` | `CONDITIONING` | Stil modelinin çıktısını içeren, geliştirilmiş veya değiştirilmiş koşullandırma. Daha fazla işleme veya üretim için hazır, nihai, stillendirilmiş koşullandırmayı temsil eder. | diff --git a/comfyui_embedded_docs/docs/StyleModelApply/zh-TW.md b/comfyui_embedded_docs/docs/StyleModelApply/zh-TW.md index 5ea537e60..37d3f9581 100644 --- a/comfyui_embedded_docs/docs/StyleModelApply/zh-TW.md +++ b/comfyui_embedded_docs/docs/StyleModelApply/zh-TW.md @@ -16,4 +16,4 @@ | 參數名稱 | Comfy 資料類型 | 描述 | |----------------------|-----------------------|-------------| -| `條件設定` | `CONDITIONING` | 經過增強或改變的條件資料,其中融入了風格模型的輸出。它代表已準備好進行後續處理或生成的最終帶有風格的條件資料。 | \ No newline at end of file +| `條件設定` | `CONDITIONING` | 經過增強或改變的條件資料,其中融入了風格模型的輸出。它代表已準備好進行後續處理或生成的最終帶有風格的條件資料。 | diff --git a/comfyui_embedded_docs/docs/StyleModelLoader/ar.md b/comfyui_embedded_docs/docs/StyleModelLoader/ar.md index 50bdd0ea4..c65e6a254 100644 --- a/comfyui_embedded_docs/docs/StyleModelLoader/ar.md +++ b/comfyui_embedded_docs/docs/StyleModelLoader/ar.md @@ -14,4 +14,4 @@ | اسم المعامل | نوع Comfy | نوع Python | الوصف | |-----------------|---------------|--------------|---------------------------------------------------------------------------------------------------| -| `style_model` | `STYLE_MODEL` | `StyleModel` | يُرجع نموذج النمط المُحمّل، جاهزًا للاستخدام في تطبيق الأنماط على الصور. يمكن هذا من تخصيص المخرجات البصرية ديناميكيًا من خلال تطبيق أنماط فنية مختلفة. | \ No newline at end of file +| `style_model` | `STYLE_MODEL` | `StyleModel` | يُرجع نموذج النمط المُحمّل، جاهزًا للاستخدام في تطبيق الأنماط على الصور. يمكن هذا من تخصيص المخرجات البصرية ديناميكيًا من خلال تطبيق أنماط فنية مختلفة. | diff --git a/comfyui_embedded_docs/docs/StyleModelLoader/pt-BR.md b/comfyui_embedded_docs/docs/StyleModelLoader/pt-BR.md index 472668267..bd7194884 100644 --- a/comfyui_embedded_docs/docs/StyleModelLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/StyleModelLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó StyleModelLoader é projetado para carregar um modelo de estilo a partir d | Nome do Parâmetro | Tipo Comfy | Tipo Python | Descrição | |-------------------|--------------|-------------|---------------------------------------------------------------------------------------------------| -| `style_model` | `STYLE_MODEL` | `StyleModel` | Retorna o modelo de estilo carregado, pronto para ser usado na aplicação de estilos a imagens. Isso permite a personalização dinâmica de saídas visuais através da aplicação de diferentes estilos artísticos. | \ No newline at end of file +| `style_model` | `STYLE_MODEL` | `StyleModel` | Retorna o modelo de estilo carregado, pronto para ser usado na aplicação de estilos a imagens. Isso permite a personalização dinâmica de saídas visuais através da aplicação de diferentes estilos artísticos. | diff --git a/comfyui_embedded_docs/docs/StyleModelLoader/tr.md b/comfyui_embedded_docs/docs/StyleModelLoader/tr.md index ca0fa258a..4b7f52b7e 100644 --- a/comfyui_embedded_docs/docs/StyleModelLoader/tr.md +++ b/comfyui_embedded_docs/docs/StyleModelLoader/tr.md @@ -14,4 +14,4 @@ StyleModelLoader düğümü, belirli bir yoldan bir stil modeli yüklemek için | Parametre Adı | Comfy dtype | Python dtype | Açıklama | |-----------------|---------------|--------------|---------------------------------------------------------------------------------------------------| -| `style_model` | `STYLE_MODEL` | `StyleModel` | Farklı sanatsal stiller uygulayarak görsel çıktıların dinamik özelleştirilmesini sağlamak üzere, resimlere stiller uygulamada kullanıma hazır yüklenmiş stil modelini döndürür. | \ No newline at end of file +| `style_model` | `STYLE_MODEL` | `StyleModel` | Farklı sanatsal stiller uygulayarak görsel çıktıların dinamik özelleştirilmesini sağlamak üzere, resimlere stiller uygulamada kullanıma hazır yüklenmiş stil modelini döndürür. | diff --git a/comfyui_embedded_docs/docs/StyleModelLoader/zh-TW.md b/comfyui_embedded_docs/docs/StyleModelLoader/zh-TW.md index 955f128ee..8daf25fc5 100644 --- a/comfyui_embedded_docs/docs/StyleModelLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/StyleModelLoader/zh-TW.md @@ -14,4 +14,4 @@ StyleModelLoader 節點旨在從指定路徑載入風格模型。它專注於檢 | 參數名稱 | Comfy 資料類型 | Python 資料類型 | 描述 | |----------|----------------|-----------------|------| -| `style_model` | `STYLE_MODEL` | `StyleModel` | 返回已載入的風格模型,準備好用於對影像應用風格。這使得能夠透過應用不同的藝術風格來動態自訂視覺輸出。 | \ No newline at end of file +| `style_model` | `STYLE_MODEL` | `StyleModel` | 返回已載入的風格模型,準備好用於對影像應用風格。這使得能夠透過應用不同的藝術風格來動態自訂視覺輸出。 | diff --git a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/ar.md b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/ar.md index 23e34494d..ba1703967 100644 --- a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/ar.md +++ b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/ar.md @@ -22,4 +22,4 @@ |------------|-------------------|-------------| | `positive` | `CONDITIONING` | بيانات التوجيه الإيجابية، وتتكون من الميزات المُرمزة والمعلمات لتوجيه عملية توليد الفيديو في الاتجاه المرغوب. | | `negative` | `CONDITIONING` | بيانات التوجيه السلبية، وتوفر تباينًا مع بيانات التوجيه الإيجابية، والتي يمكن استخدامها لتجنب أنماط أو ميزات معينة في الفيديو المُولد. | -| `latent` | `LATENT` | التمثيلات الكامنة المُولدة لكل إطار من الفيديو، وتعمل كمكون أساسي لعملية توليد الفيديو. | \ No newline at end of file +| `latent` | `LATENT` | التمثيلات الكامنة المُولدة لكل إطار من الفيديو، وتعمل كمكون أساسي لعملية توليد الفيديو. | diff --git a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/pt-BR.md b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/pt-BR.md index cf7804fe3..3fdf030d2 100644 --- a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/pt-BR.md @@ -22,4 +22,4 @@ Este nó é projetado para gerar dados de condicionamento para tarefas de geraç |---------------|--------------------|-------------| | `positive` | `CONDITIONING` | Os dados de condicionamento positivo, consistindo em características codificadas e parâmetros para orientar o processo de geração de vídeo em uma direção desejada. | | `negative` | `CONDITIONING` | Os dados de condicionamento negativo, fornecendo um contraste ao condicionamento positivo, que pode ser usado para evitar certos padrões ou características no vídeo gerado. | -| `latent` | `LATENT` | Representações latentes geradas para cada quadro do vídeo, servindo como um componente fundamental para o processo de geração de vídeo. | \ No newline at end of file +| `latent` | `LATENT` | Representações latentes geradas para cada quadro do vídeo, servindo como um componente fundamental para o processo de geração de vídeo. | diff --git a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/tr.md b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/tr.md index a170c346b..4a68d783b 100644 --- a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/tr.md +++ b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/tr.md @@ -22,4 +22,4 @@ Bu düğüm, video üretimi görevleri için koşullandırma verileri oluşturma |---------------|--------------------|-------------| | `positive` | `CONDITIONING` | Pozitif koşullandırma verileridir; video üretim sürecini istenen yönde yönlendirmek için kodlanmış özellikler ve parametrelerden oluşur. | | `negative` | `CONDITIONING` | Negatif koşullandırma verileridir; pozitif koşullandırmaya bir tezat oluşturur ve oluşturulan videoda belirli desenlerden veya özelliklerden kaçınmak için kullanılabilir. | -| `latent` | `LATENT` | Videodaki her bir kare için oluşturulan gizli temsillerdir (latent representations); video üretim süreci için temel bir bileşen görevi görür. | \ No newline at end of file +| `latent` | `LATENT` | Videodaki her bir kare için oluşturulan gizli temsillerdir (latent representations); video üretim süreci için temel bir bileşen görevi görür. | diff --git a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/zh-TW.md b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/zh-TW.md index b1c83b53f..81e64b9ef 100644 --- a/comfyui_embedded_docs/docs/SvdImg2vidConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/SvdImg2vidConditioning/zh-TW.md @@ -22,4 +22,4 @@ |---------------|--------------------|-------------| | `positive` | `CONDITIONING` | 正向條件化資料,包含用於引導影片生成過程朝向期望方向發展的編碼特徵和參數。 | | `negative` | `CONDITIONING` | 負向條件化資料,提供與正向條件化的對比,可用於避免生成影片中的某些模式或特徵。 | -| `latent` | `LATENT` | 為影片每個影格生成的潛在表示,作為影片生成過程的基礎組件。 | \ No newline at end of file +| `latent` | `LATENT` | 為影片每個影格生成的潛在表示,作為影片生成過程的基礎組件。 | diff --git a/comfyui_embedded_docs/docs/T5TokenizerOptions/ar.md b/comfyui_embedded_docs/docs/T5TokenizerOptions/ar.md index cfe7c7e91..8b1af8ebe 100644 --- a/comfyui_embedded_docs/docs/T5TokenizerOptions/ar.md +++ b/comfyui_embedded_docs/docs/T5TokenizerOptions/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | CLIP | نموذج CLIP المعدل مع تحديث خيارات المُعرِّف الرمزي المطبقة على جميع متغيرات T5 | \ No newline at end of file +| `output` | CLIP | نموذج CLIP المعدل مع تحديث خيارات المُعرِّف الرمزي المطبقة على جميع متغيرات T5 | diff --git a/comfyui_embedded_docs/docs/T5TokenizerOptions/pt-BR.md b/comfyui_embedded_docs/docs/T5TokenizerOptions/pt-BR.md index 40da3e8d5..0078dfa14 100644 --- a/comfyui_embedded_docs/docs/T5TokenizerOptions/pt-BR.md +++ b/comfyui_embedded_docs/docs/T5TokenizerOptions/pt-BR.md @@ -14,4 +14,4 @@ O nó T5TokenizerOptions permite configurar parâmetros do tokenizador para vár | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | CLIP | O modelo CLIP modificado com as opções de tokenizador atualizadas aplicadas a todas as variantes T5 | \ No newline at end of file +| `output` | CLIP | O modelo CLIP modificado com as opções de tokenizador atualizadas aplicadas a todas as variantes T5 | diff --git a/comfyui_embedded_docs/docs/T5TokenizerOptions/tr.md b/comfyui_embedded_docs/docs/T5TokenizerOptions/tr.md index c8ef757cd..4fd8fc418 100644 --- a/comfyui_embedded_docs/docs/T5TokenizerOptions/tr.md +++ b/comfyui_embedded_docs/docs/T5TokenizerOptions/tr.md @@ -14,4 +14,4 @@ T5TokenizerOptions düğümü, çeşitli T5 model türleri için tokenizer ayarl | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | CLIP | Tüm T5 varyantlarına uygulanmış güncellenmiş tokenizer seçenekleriyle değiştirilmiş CLIP modeli | \ No newline at end of file +| `output` | CLIP | Tüm T5 varyantlarına uygulanmış güncellenmiş tokenizer seçenekleriyle değiştirilmiş CLIP modeli | diff --git a/comfyui_embedded_docs/docs/T5TokenizerOptions/zh-TW.md b/comfyui_embedded_docs/docs/T5TokenizerOptions/zh-TW.md index 4c4ef46e1..030fece3f 100644 --- a/comfyui_embedded_docs/docs/T5TokenizerOptions/zh-TW.md +++ b/comfyui_embedded_docs/docs/T5TokenizerOptions/zh-TW.md @@ -14,4 +14,4 @@ T5TokenizerOptions 節點可讓您為各種 T5 模型類型配置標記化器設 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `output` | CLIP | 已更新標記化器選項的修改後 CLIP 模型,適用於所有 T5 變體 | \ No newline at end of file +| `output` | CLIP | 已更新標記化器選項的修改後 CLIP 模型,適用於所有 T5 變體 | diff --git a/comfyui_embedded_docs/docs/TCFG/ar.md b/comfyui_embedded_docs/docs/TCFG/ar.md index 1beb48692..3d75ab529 100644 --- a/comfyui_embedded_docs/docs/TCFG/ar.md +++ b/comfyui_embedded_docs/docs/TCFG/ar.md @@ -14,4 +14,4 @@ ## الوصف -يُطبق TCFG (التوجيه باستخدام التخميد المماسي) تقنية توجيه تعمل على تحسين التنبؤات غير المشروطة (السالبة) لمحاذاتها بشكل أفضل مع التنبؤات المشروطة (الموجبة). تعمل هذه الطريقة على تحسين جودة المخرجات من خلال تطبيق تخميد مماسي على التوجيه غير المشروط، استنادًا إلى ورقة البحث المشار إليها بالرمز 2503.18137. يقوم العقدة بتعديل سلوك أخذ العينات للنموذج من خلال ضبط طريقة معالجة التنبؤات غير المشروطة أثناء عملية التوجيه الخالية من المصنِّف. \ No newline at end of file +يُطبق TCFG (التوجيه باستخدام التخميد المماسي) تقنية توجيه تعمل على تحسين التنبؤات غير المشروطة (السالبة) لمحاذاتها بشكل أفضل مع التنبؤات المشروطة (الموجبة). تعمل هذه الطريقة على تحسين جودة المخرجات من خلال تطبيق تخميد مماسي على التوجيه غير المشروط، استنادًا إلى ورقة البحث المشار إليها بالرمز 2503.18137. يقوم العقدة بتعديل سلوك أخذ العينات للنموذج من خلال ضبط طريقة معالجة التنبؤات غير المشروطة أثناء عملية التوجيه الخالية من المصنِّف. diff --git a/comfyui_embedded_docs/docs/TCFG/pt-BR.md b/comfyui_embedded_docs/docs/TCFG/pt-BR.md index 51f4b4f71..765f2f267 100644 --- a/comfyui_embedded_docs/docs/TCFG/pt-BR.md +++ b/comfyui_embedded_docs/docs/TCFG/pt-BR.md @@ -12,4 +12,4 @@ TCFG (Tangential Damping CFG) implementa uma técnica de orientação que refina | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `patched_model` | MODEL | O modelo modificado com o amortecimento tangencial CFG aplicado | \ No newline at end of file +| `patched_model` | MODEL | O modelo modificado com o amortecimento tangencial CFG aplicado | diff --git a/comfyui_embedded_docs/docs/TCFG/tr.md b/comfyui_embedded_docs/docs/TCFG/tr.md index c61df2d1f..0a444a1b6 100644 --- a/comfyui_embedded_docs/docs/TCFG/tr.md +++ b/comfyui_embedded_docs/docs/TCFG/tr.md @@ -12,4 +12,4 @@ TCFG (Teğetsel Sönümleme CFG), koşulsuz (negatif) tahminleri, koşullu (pozi | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `patched_model` | MODEL | Teğetsel sönümleme CFG uygulanmış, değiştirilmiş model | \ No newline at end of file +| `patched_model` | MODEL | Teğetsel sönümleme CFG uygulanmış, değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/TCFG/zh-TW.md b/comfyui_embedded_docs/docs/TCFG/zh-TW.md index 65886f5bd..05ffda1f7 100644 --- a/comfyui_embedded_docs/docs/TCFG/zh-TW.md +++ b/comfyui_embedded_docs/docs/TCFG/zh-TW.md @@ -12,4 +12,4 @@ TCFG(切向阻尼 CFG)實現了一種引導技術,該技術透過改進無 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 已應用切向阻尼 CFG 的修改後模型 | \ No newline at end of file +| `patched_model` | MODEL | 已應用切向阻尼 CFG 的修改後模型 | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ar.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ar.md index 6ae566b07..54546e9ea 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ar.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `patched_model` | MODEL | نموذج الإدخال، بعد تعديله بتطبيق وظيفة إعادة قياس النقاط الزمنية على عملية أخذ العينات الخاصة به. | \ No newline at end of file +| `patched_model` | MODEL | نموذج الإدخال، بعد تعديله بتطبيق وظيفة إعادة قياس النقاط الزمنية على عملية أخذ العينات الخاصة به. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/en.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/en.md index 95527a145..d014ab090 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/en.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/en.md @@ -14,4 +14,4 @@ This node applies Temporal Score Rescaling (TSR) to a diffusion model. It modifi | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `patched_model` | MODEL | The input model, now patched with the Temporal Score Rescaling function applied to its sampling process. | \ No newline at end of file +| `patched_model` | MODEL | The input model, now patched with the Temporal Score Rescaling function applied to its sampling process. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/es.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/es.md index d5ca4b71b..f30e53693 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/es.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/es.md @@ -14,4 +14,4 @@ Este nodo aplica el Reajuste Temporal de Puntuación (TSR) a un modelo de difusi | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `patched_model` | MODEL | El modelo de entrada, ahora parcheado con la función de Reajuste Temporal de Puntuación aplicada a su proceso de muestreo. | \ No newline at end of file +| `patched_model` | MODEL | El modelo de entrada, ahora parcheado con la función de Reajuste Temporal de Puntuación aplicada a su proceso de muestreo. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/fr.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/fr.md index d77b932b8..4d88e375a 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/fr.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/fr.md @@ -14,4 +14,4 @@ Ce nœud applique le Rescaling Temporel des Scores (TSR) à un modèle de diffus | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `patched_model` | MODEL | Le modèle d'entrée, maintenant modifié avec la fonction de Rescaling Temporel des Scores appliquée à son processus d'échantillonnage. | \ No newline at end of file +| `patched_model` | MODEL | Le modèle d'entrée, maintenant modifié avec la fonction de Rescaling Temporel des Scores appliquée à son processus d'échantillonnage. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ja.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ja.md index e6f872f01..647b1c6f7 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ja.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ja.md @@ -14,4 +14,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 入力されたモデルで、そのサンプリングプロセスにTemporal Score Rescaling関数が適用された状態のもの。 | \ No newline at end of file +| `patched_model` | MODEL | 入力されたモデルで、そのサンプリングプロセスにTemporal Score Rescaling関数が適用された状態のもの。 | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ko.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ko.md index e4c6cd9fc..d38a787c3 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ko.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ko.md @@ -14,4 +14,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 입력 모델로, 이제 샘플링 과정에 Temporal Score Rescaling 함수가 적용된 상태입니다. | \ No newline at end of file +| `patched_model` | MODEL | 입력 모델로, 이제 샘플링 과정에 Temporal Score Rescaling 함수가 적용된 상태입니다. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/pt-BR.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/pt-BR.md index 8ae6e07e7..27e34b758 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/pt-BR.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/pt-BR.md @@ -14,4 +14,4 @@ Este nó aplica o Reajuste de Pontuação Temporal (Temporal Score Rescaling - T | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `patched_model` | MODEL | O modelo de entrada, agora modificado com a função de Reajuste de Pontuação Temporal aplicada ao seu processo de amostragem. | \ No newline at end of file +| `patched_model` | MODEL | O modelo de entrada, agora modificado com a função de Reajuste de Pontuação Temporal aplicada ao seu processo de amostragem. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ru.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ru.md index 4ac94f91d..a856c9a5b 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/ru.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/ru.md @@ -14,4 +14,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `patched_model` | MODEL | Входная модель, теперь с применённой к её процессу сэмплирования функцией Temporal Score Rescaling. | \ No newline at end of file +| `patched_model` | MODEL | Входная модель, теперь с применённой к её процессу сэмплирования функцией Temporal Score Rescaling. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/tr.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/tr.md index f9cda5088..bd838fff3 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/tr.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/tr.md @@ -14,4 +14,4 @@ Bu düğüm, bir difüzyon modeline Zamansal Skor Yeniden Ölçeklendirme (TSR) | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `patched_model` | MODEL | Giriş modeli, artık örnekleme sürecine Zamansal Skor Yeniden Ölçeklendirme işlevi uygulanmış şekilde yamalanmıştır. | \ No newline at end of file +| `patched_model` | MODEL | Giriş modeli, artık örnekleme sürecine Zamansal Skor Yeniden Ölçeklendirme işlevi uygulanmış şekilde yamalanmıştır. | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh-TW.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh-TW.md index c35d3a4c3..e69a06c61 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh-TW.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 輸入的模型,現已修補並在其採樣過程中應用了時間分數重新縮放功能。 | \ No newline at end of file +| `patched_model` | MODEL | 輸入的模型,現已修補並在其採樣過程中應用了時間分數重新縮放功能。 | diff --git a/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh.md b/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh.md index 10f0aa7ed..908bb4e73 100644 --- a/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh.md +++ b/comfyui_embedded_docs/docs/TemporalScoreRescaling/zh.md @@ -14,4 +14,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `patched_model` | MODEL | 输入模型,现已在其采样过程中应用了时序分数重缩放函数进行修补。 | \ No newline at end of file +| `patched_model` | MODEL | 输入模型,现已在其采样过程中应用了时序分数重缩放函数进行修补。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/ar.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/ar.md new file mode 100644 index 000000000..4674392fe --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/ar.md) + +يستخدم هذا العقد واجهة برمجة تطبيقات Tencent Hunyuan3D لتحليل نموذج ثلاثي الأبعاد تلقائيًا وإنشاء أو تحديد مكوناته بناءً على هيكله. يقوم بمعالجة النموذج وإرجاع ملف FBX جديد. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | نعم | FBX, Any | النموذج ثلاثي الأبعاد المراد معالجته. يجب أن يكون النموذج بتنسيق FBK وأن يحتوي على أقل من 30000 وجه. | +| `seed` | INT | لا | 0 إلى 2147483647 | قيمة بذرية للتحكم فيما إذا كان يجب على العقدة إعادة التشغيل. النتائج غير حتمية بغض النظر عن قيمة البذرة. (الافتراضي: 0) | + +**ملاحظة:** مدخل `model_3d` يدعم فقط الملفات بتنسيق FBX. إذا تم تقديم تنسيق ملف ثلاثي الأبعاد مختلف، فسيرفع العقد خطأ. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | النموذج ثلاثي الأبعاد المُعالَج، يُرجع كملف FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/en.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/en.md new file mode 100644 index 000000000..94afd26c2 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/en.md) + +This node uses the Tencent Hunyuan3D API to automatically analyze a 3D model and generate or identify its components based on its structure. It processes the model and returns a new FBX file. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Yes | FBX, Any | The 3D model to process. The model should be in FBX format and have less than 30000 faces. | +| `seed` | INT | No | 0 to 2147483647 | A seed value to control whether the node should re-run. The results are non-deterministic regardless of the seed value. (default: 0) | + +**Note:** The `model_3d` input only supports files in the FBX format. If a different 3D file format is provided, the node will raise an error. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | The processed 3D model, returned as an FBX file. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/es.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/es.md new file mode 100644 index 000000000..56eddc371 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/es.md) + +Este nodo utiliza la API Tencent Hunyuan3D para analizar automáticamente un modelo 3D y generar o identificar sus componentes en función de su estructura. Procesa el modelo y devuelve un nuevo archivo FBX. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sí | FBX, Cualquiera | El modelo 3D a procesar. El modelo debe estar en formato FBX y tener menos de 30000 caras. | +| `seed` | INT | No | 0 a 2147483647 | Un valor de semilla para controlar si el nodo debe volver a ejecutarse. Los resultados son no deterministas independientemente del valor de la semilla. (por defecto: 0) | + +**Nota:** La entrada `model_3d` solo admite archivos en formato FBX. Si se proporciona un formato de archivo 3D diferente, el nodo generará un error. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | El modelo 3D procesado, devuelto como un archivo FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/fr.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/fr.md new file mode 100644 index 000000000..8fe1e00a3 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/fr.md) + +Ce nœud utilise l'API Tencent Hunyuan3D pour analyser automatiquement un modèle 3D et générer ou identifier ses composants en fonction de sa structure. Il traite le modèle et renvoie un nouveau fichier FBX. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Oui | FBX, Tous | Le modèle 3D à traiter. Le modèle doit être au format FBX et comporter moins de 30 000 faces. | +| `seed` | INT | Non | 0 à 2147483647 | Une valeur de départ (seed) pour contrôler si le nœud doit être réexécuté. Les résultats sont non déterministes, quelle que soit la valeur du seed. (par défaut : 0) | + +**Note :** L'entrée `model_3d` ne prend en charge que les fichiers au format FBX. Si un format de fichier 3D différent est fourni, le nœud générera une erreur. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | Le modèle 3D traité, renvoyé sous forme de fichier FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/ja.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/ja.md new file mode 100644 index 000000000..826094e95 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/ja.md) + +このノードは、Tencent Hunyuan3D APIを使用して3Dモデルを自動的に分析し、その構造に基づいてコンポーネントを生成または識別します。モデルを処理し、新しいFBXファイルを返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | はい | FBX, Any | 処理対象の3Dモデルです。モデルはFBX形式で、面数が30000未満である必要があります。 | +| `seed` | INT | いいえ | 0 から 2147483647 | ノードを再実行するかどうかを制御するシード値です。シード値に関わらず、結果は非決定的です。(デフォルト: 0) | + +**注意:** `model_3d` 入力はFBX形式のファイルのみをサポートしています。異なる3Dファイル形式が提供された場合、ノードはエラーを発生させます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | 処理された3Dモデルで、FBXファイルとして返されます。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/ko.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/ko.md new file mode 100644 index 000000000..28c17822b --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/ko.md) + +이 노드는 Tencent Hunyuan3D API를 사용하여 3D 모델을 자동으로 분석하고, 그 구조를 기반으로 구성 요소를 생성하거나 식별합니다. 모델을 처리하여 새로운 FBX 파일을 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 예 | FBX, Any | 처리할 3D 모델입니다. 모델은 FBX 형식이어야 하며 30000개 미만의 면을 가져야 합니다. | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 노드를 재실행할지 여부를 제어하는 시드 값입니다. 시드 값과 관계없이 결과는 비결정적입니다. (기본값: 0) | + +**참고:** `model_3d` 입력은 FBX 형식의 파일만 지원합니다. 다른 3D 파일 형식이 제공되면 노드에서 오류가 발생합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | 처리된 3D 모델로, FBX 파일로 반환됩니다. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/pt-BR.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/pt-BR.md new file mode 100644 index 000000000..67df7c3d1 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/pt-BR.md) + +Este nó utiliza a API Tencent Hunyuan3D para analisar automaticamente um modelo 3D e gerar ou identificar seus componentes com base em sua estrutura. Ele processa o modelo e retorna um novo arquivo FBX. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sim | FBX, Qualquer | O modelo 3D a ser processado. O modelo deve estar no formato FBX e ter menos de 30000 faces. | +| `seed` | INT | Não | 0 a 2147483647 | Um valor de semente para controlar se o nó deve ser executado novamente. Os resultados são não determinísticos, independentemente do valor da semente. (padrão: 0) | + +**Observação:** A entrada `model_3d` suporta apenas arquivos no formato FBX. Se um formato de arquivo 3D diferente for fornecido, o nó gerará um erro. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | O modelo 3D processado, retornado como um arquivo FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/ru.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/ru.md new file mode 100644 index 000000000..1f27b3527 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/ru.md) + +Этот узел использует API Tencent Hunyuan3D для автоматического анализа 3D-модели и генерации или идентификации её компонентов на основе её структуры. Он обрабатывает модель и возвращает новый файл FBX. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Да | FBX, Any | 3D-модель для обработки. Модель должна быть в формате FBX и содержать менее 30000 полигонов. | +| `seed` | INT | Нет | от 0 до 2147483647 | Значение сида для управления тем, должен ли узел запускаться повторно. Результаты не являются детерминированными независимо от значения сида. (по умолчанию: 0) | + +**Примечание:** Входной параметр `model_3d` поддерживает только файлы в формате FBX. Если предоставлен файл другого 3D-формата, узел выдаст ошибку. + +## Выходные данные + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | Обработанная 3D-модель, возвращаемая в виде файла FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/tr.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/tr.md new file mode 100644 index 000000000..61556a3bf --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/tr.md) + +Bu düğüm, Tencent Hunyuan3D API'sini kullanarak bir 3B modeli otomatik olarak analiz eder ve yapısına dayalı olarak bileşenlerini oluşturur veya tanımlar. Modeli işler ve yeni bir FBX dosyası döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Evet | FBX, Herhangi | İşlenecek 3B model. Model FBX formatında olmalı ve 30000'den az yüze sahip olmalıdır. | +| `seed` | INT | Hayır | 0 ile 2147483647 | Düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol etmek için bir başlangıç değeri. Sonuçlar, başlangıç değerinden bağımsız olarak deterministik değildir. (varsayılan: 0) | + +**Not:** `model_3d` girişi yalnızca FBX formatındaki dosyaları destekler. Farklı bir 3B dosya formatı sağlanırsa, düğüm bir hata verecektir. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | İşlenmiş 3B model, bir FBX dosyası olarak döndürülür. | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/zh-TW.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/zh-TW.md new file mode 100644 index 000000000..1e6fe329f --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/zh-TW.md) + +此節點使用騰訊混元3D API 自動分析 3D 模型,並根據其結構生成或識別其組件。它會處理模型並返回一個新的 FBX 檔案。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | FBX, Any | 要處理的 3D 模型。模型應為 FBX 格式且面數少於 30000。 | +| `seed` | INT | 否 | 0 至 2147483647 | 用於控制節點是否應重新執行的種子值。無論種子值為何,結果都是非確定性的。(預設值: 0) | + +**注意:** `model_3d` 輸入僅支援 FBX 格式的檔案。如果提供其他 3D 檔案格式,節點將引發錯誤。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | 處理後的 3D 模型,以 FBX 檔案形式返回。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DPartNode/zh.md b/comfyui_embedded_docs/docs/Tencent3DPartNode/zh.md new file mode 100644 index 000000000..6bdea86bc --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DPartNode/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DPartNode/zh.md) + +此节点使用腾讯混元3D API,自动分析一个3D模型并根据其结构生成或识别其组件。它会处理模型并返回一个新的FBX文件。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | FBX, Any | 要处理的3D模型。模型应为FBX格式,且面数少于30000。 | +| `seed` | INT | 否 | 0 到 2147483647 | 用于控制节点是否应重新运行的种子值。无论种子值如何,结果都是非确定性的。(默认值:0) | + +**注意:** `model_3d` 输入仅支持 FBX 格式的文件。如果提供了其他3D文件格式,节点将引发错误。 + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `FBX` | FILE3DFBX | 处理后的3D模型,以FBX文件形式返回。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ar.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ar.md new file mode 100644 index 000000000..0c1e64f95 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ar.md @@ -0,0 +1,20 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ar.md) + +يستخدم هذا العقد واجهة برمجة تطبيقات Tencent Hunyuan3D لتحرير القوام (المواد النسيجية) لنموذج ثلاثي الأبعاد. تقوم بتقديم نموذج ثلاثي الأبعاد ووصف نصي للتغييرات المطلوبة، ويعيد العقد نسخة جديدة من النموذج مع إعادة رسم قوامه وفقًا للوصف المقدم. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | نعم | FBX, Any | نموذج ثلاثي الأبعاد بصيغة FBX. يجب أن يحتوي النموذج على أقل من 100000 وجه. | +| `prompt` | STRING | نعم | | يصف تحرير القوام. يدعم حتى 1024 حرفًا من ترميز UTF-8. | +| `seed` | INT | لا | 0 إلى 2147483647 | يتحكم `seed` في ما إذا كان يجب على العقد إعادة التشغيل؛ النتائج غير حتمية بغض النظر عن قيمة `seed`. (القيمة الافتراضية: 0) | + +**ملاحظة:** يجب أن يكون مدخل `model_3d` ملفًا بصيغة FBX. لا تدعم هذه العقدة صيغ ملفات النماذج ثلاثية الأبعاد الأخرى. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `GLB` | FILE3D | النموذج ثلاثي الأبعاد المعالج بصيغة GLB. | +| `FBX` | FILE3D | النموذج ثلاثي الأبعاد المعالج بصيغة FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/en.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/en.md new file mode 100644 index 000000000..692eb52ea --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/en.md @@ -0,0 +1,20 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/en.md) + +This node uses the Tencent Hunyuan3D API to edit the textures of a 3D model. You provide a 3D model and a text description of the desired changes, and the node returns a new version of the model with its textures redrawn according to your prompt. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Yes | FBX, Any | 3D model in FBX format. Model should have less than 100000 faces. | +| `prompt` | STRING | Yes | | Describes texture editing. Supports up to 1024 UTF-8 characters. | +| `seed` | INT | No | 0 to 2147483647 | Seed controls whether the node should re-run; results are non-deterministic regardless of seed. (default: 0) | + +**Note:** The `model_3d` input must be a file in the FBX format. Other 3D file formats are not supported by this node. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `GLB` | FILE3D | The processed 3D model in GLB format. | +| `FBX` | FILE3D | The processed 3D model in FBX format. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/es.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/es.md new file mode 100644 index 000000000..eff70acca --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/es.md @@ -0,0 +1,20 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/es.md) + +Este nodo utiliza la API Tencent Hunyuan3D para editar las texturas de un modelo 3D. Proporcionas un modelo 3D y una descripción textual de los cambios deseados, y el nodo devuelve una nueva versión del modelo con sus texturas redibujadas según tu indicación. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sí | FBX, Cualquiera | Modelo 3D en formato FBX. El modelo debe tener menos de 100000 caras. | +| `prompt` | STRING | Sí | | Describe la edición de texturas. Admite hasta 1024 caracteres UTF-8. | +| `seed` | INT | No | 0 a 2147483647 | La semilla controla si el nodo debe volver a ejecutarse; los resultados no son deterministas independientemente de la semilla. (por defecto: 0) | + +**Nota:** La entrada `model_3d` debe ser un archivo en formato FBX. Este nodo no admite otros formatos de archivo 3D. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `GLB` | FILE3D | El modelo 3D procesado en formato GLB. | +| `FBX` | FILE3D | El modelo 3D procesado en formato FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/fr.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/fr.md new file mode 100644 index 000000000..516c0b587 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/fr.md @@ -0,0 +1,20 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/fr.md) + +Ce nœud utilise l'API Tencent Hunyuan3D pour modifier les textures d'un modèle 3D. Vous fournissez un modèle 3D et une description textuelle des changements souhaités, et le nœud renvoie une nouvelle version du modèle avec ses textures redessinées selon votre prompt. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Oui | FBX, Any | Modèle 3D au format FBX. Le modèle doit avoir moins de 100 000 faces. | +| `prompt` | STRING | Oui | | Décrit la modification de texture. Prend en charge jusqu'à 1024 caractères UTF-8. | +| `seed` | INT | Non | 0 à 2147483647 | La graine contrôle si le nœud doit être réexécuté ; les résultats sont non déterministes quelle que soit la graine. (par défaut : 0) | + +**Note :** L'entrée `model_3d` doit être un fichier au format FBX. Les autres formats de fichiers 3D ne sont pas pris en charge par ce nœud. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `GLB` | FILE3D | Le modèle 3D traité au format GLB. | +| `FBX` | FILE3D | Le modèle 3D traité au format FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ja.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ja.md new file mode 100644 index 000000000..e11192b13 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ja.md @@ -0,0 +1,20 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ja.md) + +このノードは、Tencent Hunyuan3D APIを使用して3Dモデルのテクスチャを編集します。3Dモデルと、望む変更内容を説明するテキストを提供すると、ノードはプロンプトに従ってテクスチャを描き直した新しいバージョンのモデルを返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | はい | FBX, Any | FBX形式の3Dモデル。モデルの面数は100,000未満である必要があります。 | +| `prompt` | STRING | はい | | テクスチャ編集内容を記述します。最大1024文字のUTF-8文字列をサポートします。 | +| `seed` | INT | いいえ | 0 から 2147483647 | シード値はノードを再実行するかどうかを制御します。シード値に関わらず結果は非決定的です。(デフォルト: 0) | + +**注意:** `model_3d`入力はFBX形式のファイルである必要があります。このノードは他の3Dファイル形式をサポートしていません。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `GLB` | FILE3D | 処理済みの3Dモデル(GLB形式)。 | +| `FBX` | FILE3D | 処理済みの3Dモデル(FBX形式)。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ko.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ko.md new file mode 100644 index 000000000..2cf9b6d13 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ko.md @@ -0,0 +1,20 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ko.md) + +이 노드는 Tencent Hunyuan3D API를 사용하여 3D 모델의 텍스처를 편집합니다. 3D 모델과 원하는 변경 사항에 대한 텍스트 설명을 제공하면, 노드는 사용자의 프롬프트에 따라 텍스처가 다시 그려진 새로운 버전의 모델을 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 예 | FBX, Any | FBX 형식의 3D 모델입니다. 모델은 100,000개 미만의 면을 가져야 합니다. | +| `prompt` | STRING | 예 | | 텍스처 편집을 설명합니다. 최대 1024자의 UTF-8 문자를 지원합니다. | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 시드는 노드를 다시 실행할지 여부를 제어합니다. 시드와 관계없이 결과는 비결정적입니다. (기본값: 0) | + +**참고:** `model_3d` 입력은 반드시 FBX 형식의 파일이어야 합니다. 다른 3D 파일 형식은 이 노드에서 지원되지 않습니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `GLB` | FILE3D | 처리된 3D 모델을 GLB 형식으로 제공합니다. | +| `FBX` | FILE3D | 처리된 3D 모델을 FBX 형식으로 제공합니다. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/pt-BR.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/pt-BR.md new file mode 100644 index 000000000..0726031e1 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/pt-BR.md @@ -0,0 +1,20 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/pt-BR.md) + +Este nó utiliza a API Tencent Hunyuan3D para editar as texturas de um modelo 3D. Você fornece um modelo 3D e uma descrição textual das alterações desejadas, e o nó retorna uma nova versão do modelo com suas texturas redesenhadas de acordo com seu prompt. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sim | FBX, Qualquer | Modelo 3D no formato FBX. O modelo deve ter menos de 100.000 faces. | +| `prompt` | STRING | Sim | | Descreve a edição de textura. Suporta até 1024 caracteres UTF-8. | +| `seed` | INT | Não | 0 a 2147483647 | O *seed* controla se o nó deve ser executado novamente; os resultados são não determinísticos independentemente do *seed*. (padrão: 0) | + +**Observação:** A entrada `model_3d` deve ser um arquivo no formato FBX. Outros formatos de arquivo 3D não são suportados por este nó. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `GLB` | FILE3D | O modelo 3D processado no formato GLB. | +| `FBX` | FILE3D | O modelo 3D processado no formato FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ru.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ru.md new file mode 100644 index 000000000..8bf19a67c --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ru.md @@ -0,0 +1,20 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/ru.md) + +Этот узел использует API Tencent Hunyuan3D для редактирования текстур 3D-модели. Вы предоставляете 3D-модель и текстовое описание желаемых изменений, а узел возвращает новую версию модели с перерисованными текстурами в соответствии с вашим промптом. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Да | FBX, Any | 3D-модель в формате FBX. Модель должна содержать менее 100000 полигонов. | +| `prompt` | STRING | Да | | Описывает редактирование текстур. Поддерживает до 1024 символов UTF-8. | +| `seed` | INT | Нет | от 0 до 2147483647 | Сид контролирует, должен ли узел перезапускаться; результаты не являются детерминированными независимо от сида. (по умолчанию: 0) | + +**Примечание:** Входной параметр `model_3d` должен быть файлом в формате FBX. Другие форматы 3D-файлов данным узлом не поддерживаются. + +## Выходные данные + +| Выходное имя | Тип данных | Описание | +|-------------|-----------|-------------| +| `GLB` | FILE3D | Обработанная 3D-модель в формате GLB. | +| `FBX` | FILE3D | Обработанная 3D-модель в формате FBX. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/tr.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/tr.md new file mode 100644 index 000000000..ef5578860 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/tr.md @@ -0,0 +1,20 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/tr.md) + +Bu düğüm, bir 3B modelin dokularını düzenlemek için Tencent Hunyuan3D API'sini kullanır. Bir 3B model ve istenen değişikliklerin metin açıklamasını sağlarsınız; düğüm de, verdiğiniz komuta göre dokuları yeniden çizilmiş yeni bir model sürümünü döndürür. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Evet | FBX, Herhangi | FBX formatında 3B model. Modelin 100.000'den az yüzü olmalıdır. | +| `prompt` | STRING | Evet | | Doku düzenlemesini açıklar. En fazla 1024 UTF-8 karakteri destekler. | +| `seed` | INT | Hayır | 0 ile 2147483647 arası | Düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol eder; sonuçlar seed değerinden bağımsız olarak deterministik değildir. (varsayılan: 0) | + +**Not:** `model_3d` girişi FBX formatında bir dosya olmalıdır. Diğer 3B dosya formatları bu düğüm tarafından desteklenmez. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `GLB` | FILE3D | İşlenmiş 3B model, GLB formatında. | +| `FBX` | FILE3D | İşlenmiş 3B model, FBX formatında. | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh-TW.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh-TW.md new file mode 100644 index 000000000..a748724b0 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh-TW.md @@ -0,0 +1,20 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh-TW.md) + +此節點使用騰訊混元3D API來編輯3D模型的紋理。您提供一個3D模型以及對期望變更的文字描述,節點會根據您的提示重新繪製紋理,並返回模型的新版本。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | FBX, Any | FBX格式的3D模型。模型面數應少於100,000個。 | +| `prompt` | STRING | 是 | | 描述紋理編輯的提示詞。支援最多1024個UTF-8字元。 | +| `seed` | INT | 否 | 0 至 2147483647 | 種子值控制節點是否應重新執行;無論種子為何,結果均非確定性。(預設值: 0) | + +**注意:** `model_3d` 輸入必須是FBX格式的檔案。此節點不支援其他3D檔案格式。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `GLB` | FILE3D | 處理後的3D模型,格式為GLB。 | +| `FBX` | FILE3D | 處理後的3D模型,格式為FBX。 | diff --git a/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh.md b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh.md new file mode 100644 index 000000000..abe0c2884 --- /dev/null +++ b/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh.md @@ -0,0 +1,20 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Tencent3DTextureEditNode/zh.md) + +此节点使用腾讯混元3D API来编辑3D模型的纹理。您提供一个3D模型和所需更改的文本描述,节点将返回模型的新版本,其纹理会根据您的提示重新绘制。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | FBX, Any | FBX格式的3D模型。模型面数应少于100000个。 | +| `prompt` | STRING | 是 | | 描述纹理编辑的提示词。最多支持1024个UTF-8字符。 | +| `seed` | INT | 否 | 0 至 2147483647 | 种子控制节点是否应重新运行;无论种子如何,结果都是非确定性的。(默认值: 0) | + +**注意:** `model_3d` 输入必须是FBX格式的文件。此节点不支持其他3D文件格式。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `GLB` | FILE3D | 处理后的3D模型,格式为GLB。 | +| `FBX` | FILE3D | 处理后的3D模型,格式为FBX。 | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ar.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ar.md new file mode 100644 index 000000000..e93be2a8a --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ar.md) + +يستخدم هذا العقد واجهة برمجة تطبيقات Tencent Hunyuan3D لإجراء عملية فتح UV على نموذج ثلاثي الأبعاد. يأخذ العقد ملف نموذج ثلاثي الأبعاد كمدخل، ويرسله إلى واجهة البرمجة للمعالجة، ثم يُرجع النموذج المعالج بصيغتي OBJ و FBX مع صورة نسيج UV المُنشأة. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | نعم | GLB
OBJ
FBX | النموذج ثلاثي الأبعاد المدخل (GLB، أو OBJ، أو FBX). يجب أن يحتوي النموذج على أقل من 30000 وجه. | +| `seed` | INT | لا | 0 إلى 2147483647 | قيمة بذرة (الافتراضي: 1). تتحكم هذه القيمة فيما إذا كان يجب على العقد إعادة التشغيل، ولكن النتائج غير حتمية بغض النظر عن قيمة البذرة. | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | ملف النموذج ثلاثي الأبعاد المعالج بصيغة OBJ. | +| `FBX` | FILE3D | ملف النموذج ثلاثي الأبعاد المعالج بصيغة FBX. | +| `Image` | IMAGE | صورة نسيج UV المُنشأة. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/en.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/en.md new file mode 100644 index 000000000..b0da77ecc --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/en.md) + +This node uses the Tencent Hunyuan3D API to perform UV unfolding on a 3D model. It takes a 3D model file as input, sends it to the API for processing, and returns the processed model in OBJ and FBX formats along with a generated UV texture image. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Yes | GLB
OBJ
FBX | Input 3D model (GLB, OBJ, or FBX). The model must have less than 30000 faces. | +| `seed` | INT | No | 0 to 2147483647 | A seed value (default: 1). This controls whether the node should re-run, but results are non-deterministic regardless of the seed value. | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | The processed 3D model file in OBJ format. | +| `FBX` | FILE3D | The processed 3D model file in FBX format. | +| `Image` | IMAGE | The generated UV texture image. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/es.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/es.md new file mode 100644 index 000000000..4f4d36c69 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/es.md) + +Este nodo utiliza la API Tencent Hunyuan3D para realizar el desplegado UV de un modelo 3D. Toma un archivo de modelo 3D como entrada, lo envía a la API para su procesamiento y devuelve el modelo procesado en formatos OBJ y FBX junto con una imagen de textura UV generada. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sí | GLB
OBJ
FBX | Modelo 3D de entrada (GLB, OBJ o FBX). El modelo debe tener menos de 30000 caras. | +| `seed` | INT | No | 0 a 2147483647 | Un valor de semilla (por defecto: 1). Esto controla si el nodo debe volver a ejecutarse, pero los resultados no son deterministas independientemente del valor de la semilla. | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | El archivo del modelo 3D procesado en formato OBJ. | +| `FBX` | FILE3D | El archivo del modelo 3D procesado en formato FBX. | +| `Image` | IMAGE | La imagen de textura UV generada. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/fr.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/fr.md new file mode 100644 index 000000000..1760bc149 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/fr.md) + +Ce nœud utilise l'API Tencent Hunyuan3D pour réaliser le dépliage UV d'un modèle 3D. Il prend un fichier de modèle 3D en entrée, l'envoie à l'API pour traitement, et renvoie le modèle traité aux formats OBJ et FBX ainsi qu'une image de texture UV générée. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Oui | GLB
OBJ
FBX | Modèle 3D en entrée (GLB, OBJ ou FBX). Le modèle doit comporter moins de 30 000 faces. | +| `seed` | INT | Non | 0 à 2147483647 | Une valeur de départ (par défaut : 1). Ce paramètre contrôle si le nœud doit être réexécuté, mais les résultats ne sont pas déterministes quelle que soit la valeur de `seed`. | + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | Le fichier du modèle 3D traité au format OBJ. | +| `FBX` | FILE3D | Le fichier du modèle 3D traité au format FBX. | +| `Image` | IMAGE | L'image de texture UV générée. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ja.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ja.md new file mode 100644 index 000000000..10e0d0676 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ja.md) + +このノードは、Tencent Hunyuan3D APIを使用して3Dモデルに対してUV展開を実行します。3Dモデルファイルを入力として受け取り、APIに送信して処理を行い、処理済みのモデルをOBJおよびFBX形式で、さらに生成されたUVテクスチャ画像と共に返します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | はい | GLB
OBJ
FBX | 入力3Dモデル(GLB、OBJ、またはFBX)。モデルは30000面未満である必要があります。 | +| `seed` | INT | いいえ | 0 から 2147483647 | シード値(デフォルト: 1)。この値はノードを再実行するかどうかを制御しますが、シード値に関わらず結果は非決定的です。 | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | 処理済みの3Dモデルファイル(OBJ形式)。 | +| `FBX` | FILE3D | 処理済みの3Dモデルファイル(FBX形式)。 | +| `Image` | IMAGE | 生成されたUVテクスチャ画像。 | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ko.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ko.md new file mode 100644 index 000000000..ac2ee3d5f --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ko.md) + +이 노드는 Tencent Hunyuan3D API를 사용하여 3D 모델에 UV 전개를 수행합니다. 3D 모델 파일을 입력으로 받아 API로 전송하여 처리하고, 처리된 모델을 OBJ 및 FBX 형식으로, 그리고 생성된 UV 텍스처 이미지를 반환합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 예 | GLB
OBJ
FBX | 입력 3D 모델 (GLB, OBJ 또는 FBX). 모델은 30000개 미만의 면을 가져야 합니다. | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 시드 값 (기본값: 1). 이 값은 노드를 재실행할지 여부를 제어하지만, 시드 값과 관계없이 결과는 비결정적입니다. | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | 처리된 3D 모델 파일 (OBJ 형식). | +| `FBX` | FILE3D | 처리된 3D 모델 파일 (FBX 형식). | +| `Image` | IMAGE | 생성된 UV 텍스처 이미지. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/pt-BR.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/pt-BR.md new file mode 100644 index 000000000..c0995267c --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/pt-BR.md) + +Este nó utiliza a API Tencent Hunyuan3D para realizar o desdobramento UV em um modelo 3D. Ele recebe um arquivo de modelo 3D como entrada, envia-o para a API para processamento e retorna o modelo processado nos formatos OBJ e FBX, juntamente com uma imagem de textura UV gerada. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Sim | GLB
OBJ
FBX | Modelo 3D de entrada (GLB, OBJ ou FBX). O modelo deve ter menos de 30000 faces. | +| `seed` | INT | Não | 0 a 2147483647 | Um valor de semente (padrão: 1). Isso controla se o nó deve ser executado novamente, mas os resultados não são determinísticos, independentemente do valor da semente. | + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | O arquivo do modelo 3D processado no formato OBJ. | +| `FBX` | FILE3D | O arquivo do modelo 3D processado no formato FBX. | +| `Image` | IMAGE | A imagem de textura UV gerada. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ru.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ru.md new file mode 100644 index 000000000..5a21ecac6 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/ru.md) + +Этот узел использует API Tencent Hunyuan3D для выполнения UV-развёртки 3D-модели. Он принимает файл 3D-модели на вход, отправляет его на обработку через API и возвращает обработанную модель в форматах OBJ и FBX вместе со сгенерированным UV-текстурным изображением. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Да | GLB
OBJ
FBX | Входная 3D-модель (GLB, OBJ или FBX). Модель должна содержать менее 30000 полигонов. | +| `seed` | INT | Нет | от 0 до 2147483647 | Значение сида (по умолчанию: 1). Управляет необходимостью повторного запуска узла, однако результаты не являются детерминированными независимо от значения сида. | + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | Обработанный файл 3D-модели в формате OBJ. | +| `FBX` | FILE3D | Обработанный файл 3D-модели в формате FBX. | +| `Image` | IMAGE | Сгенерированное UV-текстурное изображение. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/tr.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/tr.md new file mode 100644 index 000000000..680f13624 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/tr.md) + +Bu düğüm, Tencent Hunyuan3D API'sini kullanarak bir 3B model üzerinde UV açma işlemi gerçekleştirir. Bir 3B model dosyasını girdi olarak alır, işlenmek üzere API'ye gönderir ve işlenmiş modeli OBJ ve FBX formatlarında, oluşturulmuş bir UV doku görüntüsüyle birlikte döndürür. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | Evet | GLB
OBJ
FBX | Girdi 3B model (GLB, OBJ veya FBX). Modelin 30000'den az yüzü olmalıdır. | +| `seed` | INT | Hayır | 0 ile 2147483647 arası | Bir tohum değeri (varsayılan: 1). Bu, düğümün yeniden çalıştırılıp çalıştırılmayacağını kontrol eder, ancak sonuçlar tohum değerinden bağımsız olarak deterministik değildir. | + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | İşlenmiş 3B model dosyası, OBJ formatında. | +| `FBX` | FILE3D | İşlenmiş 3B model dosyası, FBX formatında. | +| `Image` | IMAGE | Oluşturulan UV doku görüntüsü. | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh-TW.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh-TW.md new file mode 100644 index 000000000..3058a6707 --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh-TW.md) + +此節點使用騰訊混元3D API 對 3D 模型進行 UV 展開。它接收一個 3D 模型檔案作為輸入,將其發送至 API 進行處理,並以 OBJ 和 FBX 格式返回處理後的模型以及生成的 UV 紋理圖像。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | GLB
OBJ
FBX | 輸入的 3D 模型 (GLB、OBJ 或 FBX)。模型的面數必須少於 30000。 | +| `seed` | INT | 否 | 0 至 2147483647 | 種子值 (預設值:1)。此值控制節點是否應重新執行,但無論種子值為何,結果都是非確定性的。 | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | 處理後的 3D 模型檔案,格式為 OBJ。 | +| `FBX` | FILE3D | 處理後的 3D 模型檔案,格式為 FBX。 | +| `Image` | IMAGE | 生成的 UV 紋理圖像。 | diff --git a/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh.md b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh.md new file mode 100644 index 000000000..d05324e7f --- /dev/null +++ b/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TencentModelTo3DUVNode/zh.md) + +此节点使用腾讯混元3D API对3D模型进行UV展开。它接收一个3D模型文件作为输入,将其发送至API进行处理,并返回处理后的OBJ和FBX格式模型文件以及生成的UV纹理图像。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model_3d` | FILE3D | 是 | GLB
OBJ
FBX | 输入的3D模型文件(GLB、OBJ或FBX格式)。模型面数必须少于30000个。 | +| `seed` | INT | 否 | 0 至 2147483647 | 随机种子值(默认值:1)。此值控制节点是否应重新运行,但无论种子值如何,结果均非确定性。 | + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `OBJ` | FILE3D | 处理后的3D模型文件,OBJ格式。 | +| `FBX` | FILE3D | 处理后的3D模型文件,FBX格式。 | +| `Image` | IMAGE | 生成的UV纹理图像。 | diff --git a/comfyui_embedded_docs/docs/TerminalLog/ar.md b/comfyui_embedded_docs/docs/TerminalLog/ar.md index 9b019310e..36a37d404 100644 --- a/comfyui_embedded_docs/docs/TerminalLog/ar.md +++ b/comfyui_embedded_docs/docs/TerminalLog/ar.md @@ -2,4 +2,4 @@ عُقدة سجل الطرفية (المدير) تُستخدم بشكل أساسي لعرض معلومات تشغيل ComfyUI في الطرفية داخل واجهة ComfyUI. لاستخدامها، تحتاج إلى ضبط `mode` إلى وضع **التسجيل**. هذا سيسمح لها بتسجيل معلومات السجل المقابلة أثناء مهمة إنشاء الصور. إذا تم ضبط `mode` على وضع **الإيقاف**، فلن تقوم بتسجيل معلومات السجل. -عندما تصل إلى ComfyUI وتستخدمها عبر اتصالات بعيدة أو اتصالات شبكة محلية، تصبح عُقدة سجل الطرفية (المدير) مفيدة بشكل خاص. تتيح لك عرض رسائل الخطأ من CMD مباشرة داخل واجهة ComfyUI، مما يجعل من السهل فهم الحالة الحالية لتشغيل ComfyUI. \ No newline at end of file +عندما تصل إلى ComfyUI وتستخدمها عبر اتصالات بعيدة أو اتصالات شبكة محلية، تصبح عُقدة سجل الطرفية (المدير) مفيدة بشكل خاص. تتيح لك عرض رسائل الخطأ من CMD مباشرة داخل واجهة ComfyUI، مما يجعل من السهل فهم الحالة الحالية لتشغيل ComfyUI. diff --git a/comfyui_embedded_docs/docs/TerminalLog/pt-BR.md b/comfyui_embedded_docs/docs/TerminalLog/pt-BR.md index 65553baaf..84d541ef7 100644 --- a/comfyui_embedded_docs/docs/TerminalLog/pt-BR.md +++ b/comfyui_embedded_docs/docs/TerminalLog/pt-BR.md @@ -1,4 +1,4 @@ > Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TerminalLog/pt-BR.md) O nó Terminal Log (Manager) é usado principalmente para exibir as informações de execução do ComfyUI no terminal dentro da interface do ComfyUI. Para usá-lo, você precisa configurar o `mode` para o modo **logging**. Isso permitirá que ele registre as informações de log correspondentes durante a tarefa de geração de imagem. Se o `mode` for configurado para o modo **stop**, ele não registrará informações de log. -Quando você acessa e usa o ComfyUI via conexões remotas ou conexões de rede local, o nó Terminal Log (Manager) se torna particularmente útil. Ele permite que você visualize diretamente as mensagens de erro do CMD dentro da interface do ComfyUI, facilitando a compreensão do status atual da operação do ComfyUI. \ No newline at end of file +Quando você acessa e usa o ComfyUI via conexões remotas ou conexões de rede local, o nó Terminal Log (Manager) se torna particularmente útil. Ele permite que você visualize diretamente as mensagens de erro do CMD dentro da interface do ComfyUI, facilitando a compreensão do status atual da operação do ComfyUI. diff --git a/comfyui_embedded_docs/docs/TerminalLog/tr.md b/comfyui_embedded_docs/docs/TerminalLog/tr.md index 41d3a7a3c..255cb5b63 100644 --- a/comfyui_embedded_docs/docs/TerminalLog/tr.md +++ b/comfyui_embedded_docs/docs/TerminalLog/tr.md @@ -1,4 +1,4 @@ > Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TerminalLog/tr.md) Terminal Log (Manager) düğümü, öncelikle ComfyUI arayüzü içindeki terminalde ComfyUI'nin çalışma bilgilerini görüntülemek için kullanılır. Kullanmak için `mode` parametresini **logging** moduna ayarlamanız gerekir. Bu, görüntü oluşturma görevi sırasında ilgili log bilgilerini kaydetmesini sağlayacaktır. Eğer `mode` parametresi **stop** moduna ayarlanırsa, log bilgilerini kaydetmeyecektir. -ComfyUI'ya uzak bağlantılar veya yerel ağ bağlantıları üzerinden eriştiğinizde ve kullandığınızda, Terminal Log (Manager) düğümü özellikle kullanışlı hale gelir. Bu düğüm, CMD'den gelen hata mesajlarını doğrudan ComfyUI arayüzü içinden görüntülemenize olanak tanıyarak, ComfyUI'nin mevcut çalışma durumunu anlamayı kolaylaştırır. \ No newline at end of file +ComfyUI'ya uzak bağlantılar veya yerel ağ bağlantıları üzerinden eriştiğinizde ve kullandığınızda, Terminal Log (Manager) düğümü özellikle kullanışlı hale gelir. Bu düğüm, CMD'den gelen hata mesajlarını doğrudan ComfyUI arayüzü içinden görüntülemenize olanak tanıyarak, ComfyUI'nin mevcut çalışma durumunu anlamayı kolaylaştırır. diff --git a/comfyui_embedded_docs/docs/TerminalLog/zh-TW.md b/comfyui_embedded_docs/docs/TerminalLog/zh-TW.md index e11a793de..f32ea25bb 100644 --- a/comfyui_embedded_docs/docs/TerminalLog/zh-TW.md +++ b/comfyui_embedded_docs/docs/TerminalLog/zh-TW.md @@ -1,4 +1,4 @@ > 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TerminalLog/zh-TW.md) Terminal Log (Manager) 節點主要用於在 ComfyUI 介面內的終端機中顯示 ComfyUI 的執行資訊。使用時需要將 `mode` 設定為 **logging** 模式,這樣它就能在圖片生成任務中記錄相應的日誌資訊。如果將 `mode` 設定為 **stop** 模式,則不會記錄日誌資訊。 -當您透過遠端連線或區域網路連線存取和使用 ComfyUI 時,Terminal Log (Manager) 節點就顯得特別有用。它讓您能夠直接在 ComfyUI 介面中查看來自 CMD 的錯誤訊息,更方便地了解 ComfyUI 目前的執行狀態。 \ No newline at end of file +當您透過遠端連線或區域網路連線存取和使用 ComfyUI 時,Terminal Log (Manager) 節點就顯得特別有用。它讓您能夠直接在 ComfyUI 介面中查看來自 CMD 的錯誤訊息,更方便地了解 ComfyUI 目前的執行狀態。 diff --git a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/ar.md b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/ar.md index 6e65956bb..fd62005fd 100644 --- a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/ar.md +++ b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | بيانات التكييف المشفرة التي تحتوي على الرموز النصية المعالجة مع تطبيق قوة كلمات الأغاني | \ No newline at end of file +| `conditioning` | CONDITIONING | بيانات التكييف المشفرة التي تحتوي على الرموز النصية المعالجة مع تطبيق قوة كلمات الأغاني | diff --git a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/pt-BR.md b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/pt-BR.md index cd0353148..44bbdffdb 100644 --- a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/pt-BR.md @@ -15,4 +15,4 @@ O nó TextEncodeAceStepAudio processa entradas de texto para condicionamento de | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Os dados de condicionamento codificados contendo tokens de texto processados com a força da letra aplicada | \ No newline at end of file +| `conditioning` | CONDITIONING | Os dados de condicionamento codificados contendo tokens de texto processados com a força da letra aplicada | diff --git a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/tr.md b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/tr.md index 1dd279c9e..5b33e5e27 100644 --- a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/tr.md +++ b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/tr.md @@ -15,4 +15,4 @@ TextEncodeAceStepAudio düğümü, etiketleri ve şarkı sözlerini token'lara b | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | Uygulanmış şarkı sözü gücü ile işlenmiş metin token'larını içeren kodlanmış koşullandırma verisi | \ No newline at end of file +| `conditioning` | CONDITIONING | Uygulanmış şarkı sözü gücü ile işlenmiş metin token'larını içeren kodlanmış koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/zh-TW.md b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/zh-TW.md index cbbb9dfc5..3ccd892ba 100644 --- a/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextEncodeAceStepAudio/zh-TW.md @@ -15,4 +15,4 @@ TextEncodeAceStepAudio 節點透過將標籤和歌詞合併為 token,並以可 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `conditioning` | CONDITIONING | 包含已處理文字 token 並套用了歌詞強度的編碼條件化資料 | \ No newline at end of file +| `conditioning` | CONDITIONING | 包含已處理文字 token 並套用了歌詞強度的編碼條件化資料 | diff --git a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/ar.md b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/ar.md index f68e835be..e04fff2bb 100644 --- a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/ar.md @@ -15,4 +15,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف التي تجمع بين المعلومات النصية والبصرية لتوليد الفيديو | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف التي تجمع بين المعلومات النصية والبصرية لتوليد الفيديو | diff --git a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/pt-BR.md index 78b4f37e8..6a307f707 100644 --- a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/pt-BR.md @@ -15,4 +15,4 @@ O nó TextEncodeHunyuanVideo_ImageToVideo cria dados de condicionamento para ger | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Os dados de condicionamento que combinam informações de texto e imagem para a geração de vídeo | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Os dados de condicionamento que combinam informações de texto e imagem para a geração de vídeo | diff --git a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/tr.md b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/tr.md index 39240d78f..f5dce4e1c 100644 --- a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/tr.md @@ -15,4 +15,4 @@ TextEncodeHunyuanVideo_ImageToVideo düğümü, metin istemlerini görsel yerle | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Video üretimi için metin ve görüntü bilgisini birleştiren koşullandırma verileri | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Video üretimi için metin ve görüntü bilgisini birleştiren koşullandırma verileri | diff --git a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/zh-TW.md index c8ccb83cd..dd7f48fd9 100644 --- a/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextEncodeHunyuanVideo_ImageToVideo/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 結合文字和圖像資訊的條件化資料,用於影片生成 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 結合文字和圖像資訊的條件化資料,用於影片生成 | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/ar.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/ar.md index 0a1d58b0f..b37521ffb 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/ar.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/ar.md @@ -17,4 +17,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات التكييف التي تحتوي على وحدات النص (tokens) والمتجهات الكامنة المرجعية الاختيارية من أجل توليد الصور | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات التكييف التي تحتوي على وحدات النص (tokens) والمتجهات الكامنة المرجعية الاختيارية من أجل توليد الصور | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/pt-BR.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/pt-BR.md index 6b18c8b3f..3420cf339 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/pt-BR.md @@ -17,4 +17,4 @@ O nó TextEncodeQwenImageEdit processa *prompts* de texto e imagens opcionais pa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Dados de condicionamento contendo *tokens* de texto e *latents* de referência opcionais para geração de imagem | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Dados de condicionamento contendo *tokens* de texto e *latents* de referência opcionais para geração de imagem | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/tr.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/tr.md index d8cb014e1..63329469c 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/tr.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/tr.md @@ -17,4 +17,4 @@ TextEncodeQwenImageEdit düğümü, metin istemlerini ve isteğe bağlı görsel | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Metin token'larını ve isteğe bağlı referans latents'leri içeren, görsel üretimi için koşullandırma verisi | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Metin token'larını ve isteğe bağlı referans latents'leri içeren, görsel üretimi için koşullandırma verisi | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/zh-TW.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/zh-TW.md index 06d1392ab..58315126d 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEdit/zh-TW.md @@ -17,4 +17,4 @@ TextEncodeQwenImageEdit 節點處理文字提示和可選的圖像,以生成 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 包含文字標記和可選參考潛在變數的調節資料,用於圖像生成 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 包含文字標記和可選參考潛在變數的調節資料,用於圖像生成 | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/ar.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/ar.md index 43a700fd6..77fc1d624 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/ar.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | بيانات توجيهية مشفرة تحتوي على وحدات النص ومتجهات مرجعية اختيارية لتوليد الصور | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | بيانات توجيهية مشفرة تحتوي على وحدات النص ومتجهات مرجعية اختيارية لتوليد الصور | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/pt-BR.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/pt-BR.md index 898edd129..bafce4c47 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/pt-BR.md @@ -19,4 +19,4 @@ O nó TextEncodeQwenImageEditPlus processa prompts de texto e imagens opcionais | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Dados de condicionamento codificados contendo tokens de texto e latentes de referência opcionais para geração de imagem | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Dados de condicionamento codificados contendo tokens de texto e latentes de referência opcionais para geração de imagem | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/tr.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/tr.md index 4fe932c15..7d155c667 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/tr.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/tr.md @@ -19,4 +19,4 @@ TextEncodeQwenImageEditPlus düğümü, metin istemlerini ve isteğe bağlı gö | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | Metin token'larını ve isteğe bağlı referans latents'leri içeren, görüntü oluşturma için kodlanmış koşullandırma verileri | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | Metin token'larını ve isteğe bağlı referans latents'leri içeren, görüntü oluşturma için kodlanmış koşullandırma verileri | diff --git a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/zh-TW.md b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/zh-TW.md index 93365170e..d7930f960 100644 --- a/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextEncodeQwenImageEditPlus/zh-TW.md @@ -19,4 +19,4 @@ TextEncodeQwenImageEditPlus 節點處理文字提示和可選的圖像,以生 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `CONDITIONING` | CONDITIONING | 編碼後的條件化資料,包含文字標記和用於圖像生成的可選參考潛在特徵 | \ No newline at end of file +| `CONDITIONING` | CONDITIONING | 編碼後的條件化資料,包含文字標記和用於圖像生成的可選參考潛在特徵 | diff --git a/comfyui_embedded_docs/docs/TextGenerate/ar.md b/comfyui_embedded_docs/docs/TextGenerate/ar.md new file mode 100644 index 000000000..ee79dac97 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/ar.md @@ -0,0 +1,27 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/ar.md) + +يستخدم عقد TextGenerate نموذج CLIP لإنشاء نص استنادًا إلى مطالبة المستخدم. يمكنه اختياريًا استخدام صورة كمرجع بصري لتوجيه توليد النص. يمكنك التحكم في طول المخرجات واختيار ما إذا كنت تريد استخدام أخذ العينات العشوائية بإعدادات متنوعة أو توليد نص بدون أخذ عينات. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | نعم | N/A | نموذج CLIP المستخدم لتجزئة المطالبة وتوليد النص. | +| `prompt` | STRING | نعم | N/A | المطالبة النصية التي توجه عملية التوليد. يدعم هذا الحقل أسطرًا متعددة ومطالبات ديناميكية. القيمة الافتراضية هي سلسلة نصية فارغة. | +| `image` | IMAGE | لا | N/A | صورة اختيارية يمكن استخدامها جنبًا إلى جنب مع المطالبة النصية للتأثير على النص المُولَّد. | +| `max_length` | INT | نعم | 1 إلى 2048 | الحد الأقصى لعدد الرموز (tokens) التي سينشئها النموذج. القيمة الافتراضية هي 256. | +| `sampling_mode` | COMBO | نعم | `"on"`
`"off"` | يتحكم في ما إذا كان سيتم استخدام أخذ العينات العشوائية أثناء توليد النص. عند تعيينه إلى "on"، تصبح المعاملات الإضافية للتحكم في أخذ العينات متاحة. القيمة الافتراضية هي "on". | +| `temperature` | FLOAT | لا | 0.01 إلى 2.0 | يتحكم في درجة العشوائية في المخرجات. القيم المنخفضة تجعل المخرجات أكثر قابلية للتنبؤ، والقيم الأعلى تجعلها أكثر إبداعًا. هذا المعامل متاح فقط عندما يكون `sampling_mode` معينًا على "on". القيمة الافتراضية هي 0.7. | +| `top_k` | INT | لا | 0 إلى 1000 | يحد من مجموعة أخذ العينات إلى أفضل رموز K التالية الأكثر احتمالاً. القيمة 0 تعطل هذا الفلتر. هذا المعامل متاح فقط عندما يكون `sampling_mode` معينًا على "on". القيمة الافتراضية هي 64. | +| `top_p` | FLOAT | لا | 0.0 إلى 1.0 | يستخدم أخذ العينات النووي (nucleus sampling)، مما يحدد الخيارات للرموز التي يكون مجموع احتمالاتها التراكمية أقل من هذه القيمة. هذا المعامل متاح فقط عندما يكون `sampling_mode` معينًا على "on". القيمة الافتراضية هي 0.95. | +| `min_p` | FLOAT | لا | 0.0 إلى 1.0 | يحدد حدًا أدنى للاحتمال للرموز التي يجب أخذها في الاعتبار. هذا المعامل متاح فقط عندما يكون `sampling_mode` معينًا على "on". القيمة الافتراضية هي 0.05. | +| `repetition_penalty` | FLOAT | لا | 0.0 إلى 5.0 | يفرض عقوبة على الرموز التي تم توليدها بالفعل لتقليل التكرار. القيمة 1.0 لا تفرض أي عقوبة. هذا المعامل متاح فقط عندما يكون `sampling_mode` معينًا على "on". القيمة الافتراضية هي 1.05. | +| `seed` | INT | لا | 0 إلى 18446744073709551615 | رقم يستخدم لتهيئة مولد الأرقام العشوائية للحصول على نتائج قابلة للتكرار عندما يكون أخذ العينات "on". القيمة الافتراضية هي 0. | + +**ملاحظة:** المعاملات `temperature`، `top_k`، `top_p`، `min_p`، `repetition_penalty`، و `seed` تكون نشطة ومرئية في واجهة العقد فقط عندما يكون `sampling_mode` معينًا على "on". + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `generated_text` | STRING | النص الذي تم توليده بواسطة النموذج استنادًا إلى المطالبة المدخلة والصورة الاختيارية. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/en.md b/comfyui_embedded_docs/docs/TextGenerate/en.md new file mode 100644 index 000000000..6e8f2a6eb --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/en.md @@ -0,0 +1,27 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/en.md) + +The TextGenerate node uses a CLIP model to create text based on a user's prompt. It can optionally use an image as a visual reference to guide the text generation. You can control the length of the output and choose whether to use random sampling with various settings or to generate text without sampling. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Yes | N/A | The CLIP model used for tokenizing the prompt and generating text. | +| `prompt` | STRING | Yes | N/A | The text prompt that guides the generation. This field supports multiple lines and dynamic prompts. The default value is an empty string. | +| `image` | IMAGE | No | N/A | An optional image that can be used alongside the text prompt to influence the generated text. | +| `max_length` | INT | Yes | 1 to 2048 | The maximum number of tokens the model will generate. The default value is 256. | +| `sampling_mode` | COMBO | Yes | `"on"`
`"off"` | Controls whether random sampling is used during text generation. When set to "on", additional parameters for controlling the sampling become available. The default is "on". | +| `temperature` | FLOAT | No | 0.01 to 2.0 | Controls the randomness of the output. Lower values make the output more predictable, higher values make it more creative. This parameter is only available when `sampling_mode` is "on". The default value is 0.7. | +| `top_k` | INT | No | 0 to 1000 | Limits the sampling pool to the top K most likely next tokens. A value of 0 disables this filter. This parameter is only available when `sampling_mode` is "on". The default value is 64. | +| `top_p` | FLOAT | No | 0.0 to 1.0 | Uses nucleus sampling, limiting choices to tokens whose cumulative probability is less than this value. This parameter is only available when `sampling_mode` is "on". The default value is 0.95. | +| `min_p` | FLOAT | No | 0.0 to 1.0 | Sets a minimum probability threshold for tokens to be considered. This parameter is only available when `sampling_mode` is "on". The default value is 0.05. | +| `repetition_penalty` | FLOAT | No | 0.0 to 5.0 | Penalizes tokens that have already been generated to reduce repetition. A value of 1.0 applies no penalty. This parameter is only available when `sampling_mode` is "on". The default value is 1.05. | +| `seed` | INT | No | 0 to 18446744073709551615 | A number used to initialize the random number generator for reproducible results when sampling is "on". The default value is 0. | + +**Note:** The parameters `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty`, and `seed` are only active and visible in the node interface when the `sampling_mode` is set to "on". + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `generated_text` | STRING | The text generated by the model based on the input prompt and optional image. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/es.md b/comfyui_embedded_docs/docs/TextGenerate/es.md new file mode 100644 index 000000000..0eacba40a --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/es.md @@ -0,0 +1,27 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/es.md) + +El nodo TextGenerate utiliza un modelo CLIP para crear texto basado en un *prompt* del usuario. Opcionalmente, puede usar una imagen como referencia visual para guiar la generación de texto. Puedes controlar la longitud de la salida y elegir si usar muestreo aleatorio con varios ajustes o generar texto sin muestreo. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Sí | N/A | El modelo CLIP utilizado para tokenizar el *prompt* y generar texto. | +| `prompt` | STRING | Sí | N/A | El *prompt* de texto que guía la generación. Este campo admite múltiples líneas y *prompts* dinámicos. El valor por defecto es una cadena vacía. | +| `image` | IMAGE | No | N/A | Una imagen opcional que puede usarse junto con el *prompt* de texto para influir en el texto generado. | +| `max_length` | INT | Sí | 1 a 2048 | El número máximo de *tokens* que generará el modelo. El valor por defecto es 256. | +| `sampling_mode` | COMBO | Sí | `"on"`
`"off"` | Controla si se utiliza muestreo aleatorio durante la generación de texto. Cuando se establece en "on", se habilitan parámetros adicionales para controlar el muestreo. El valor por defecto es "on". | +| `temperature` | FLOAT | No | 0.01 a 2.0 | Controla la aleatoriedad de la salida. Valores más bajos hacen la salida más predecible, valores más altos la hacen más creativa. Este parámetro solo está disponible cuando `sampling_mode` es "on". El valor por defecto es 0.7. | +| `top_k` | INT | No | 0 a 1000 | Limita el grupo de muestreo a los K *tokens* siguientes más probables. Un valor de 0 desactiva este filtro. Este parámetro solo está disponible cuando `sampling_mode` es "on". El valor por defecto es 64. | +| `top_p` | FLOAT | No | 0.0 a 1.0 | Utiliza muestreo de núcleo (*nucleus sampling*), limitando las opciones a *tokens* cuya probabilidad acumulada es menor que este valor. Este parámetro solo está disponible cuando `sampling_mode` es "on". El valor por defecto es 0.95. | +| `min_p` | FLOAT | No | 0.0 a 1.0 | Establece un umbral de probabilidad mínimo para que los *tokens* sean considerados. Este parámetro solo está disponible cuando `sampling_mode` es "on". El valor por defecto es 0.05. | +| `repetition_penalty` | FLOAT | No | 0.0 a 5.0 | Penaliza los *tokens* que ya se han generado para reducir la repetición. Un valor de 1.0 no aplica penalización. Este parámetro solo está disponible cuando `sampling_mode` es "on". El valor por defecto es 1.05. | +| `seed` | INT | No | 0 a 18446744073709551615 | Un número utilizado para inicializar el generador de números aleatorios para obtener resultados reproducibles cuando el muestreo está en "on". El valor por defecto es 0. | + +**Nota:** Los parámetros `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty` y `seed` solo están activos y visibles en la interfaz del nodo cuando el `sampling_mode` está establecido en "on". + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `generated_text` | STRING | El texto generado por el modelo basado en el *prompt* de entrada y la imagen opcional. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/fr.md b/comfyui_embedded_docs/docs/TextGenerate/fr.md new file mode 100644 index 000000000..5c85a300e --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/fr.md @@ -0,0 +1,27 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/fr.md) + +Le nœud TextGenerate utilise un modèle CLIP pour créer du texte à partir d'une instruction utilisateur. Il peut éventuellement utiliser une image comme référence visuelle pour guider la génération de texte. Vous pouvez contrôler la longueur de la sortie et choisir d'utiliser ou non un échantillonnage aléatoire avec divers paramètres. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Oui | N/A | Le modèle CLIP utilisé pour tokeniser l'instruction et générer le texte. | +| `prompt` | STRING | Oui | N/A | L'instruction textuelle qui guide la génération. Ce champ prend en charge plusieurs lignes et les prompts dynamiques. La valeur par défaut est une chaîne vide. | +| `image` | IMAGE | Non | N/A | Une image optionnelle qui peut être utilisée conjointement avec l'instruction textuelle pour influencer le texte généré. | +| `max_length` | INT | Oui | 1 à 2048 | Le nombre maximum de tokens que le modèle générera. La valeur par défaut est 256. | +| `sampling_mode` | COMBO | Oui | `"on"`
`"off"` | Contrôle si un échantillonnage aléatoire est utilisé pendant la génération de texte. Lorsqu'il est défini sur "on", des paramètres supplémentaires pour contrôler l'échantillonnage deviennent disponibles. La valeur par défaut est "on". | +| `temperature` | FLOAT | Non | 0.01 à 2.0 | Contrôle le caractère aléatoire de la sortie. Des valeurs plus basses rendent la sortie plus prévisible, des valeurs plus élevées la rendent plus créative. Ce paramètre n'est disponible que lorsque `sampling_mode` est sur "on". La valeur par défaut est 0.7. | +| `top_k` | INT | Non | 0 à 1000 | Limite le pool d'échantillonnage aux K tokens suivants les plus probables. Une valeur de 0 désactive ce filtre. Ce paramètre n'est disponible que lorsque `sampling_mode` est sur "on". La valeur par défaut est 64. | +| `top_p` | FLOAT | Non | 0.0 à 1.0 | Utilise l'échantillonnage par noyau (nucleus sampling), limitant les choix aux tokens dont la probabilité cumulative est inférieure à cette valeur. Ce paramètre n'est disponible que lorsque `sampling_mode` est sur "on". La valeur par défaut est 0.95. | +| `min_p` | FLOAT | Non | 0.0 à 1.0 | Définit un seuil de probabilité minimum pour qu'un token soit pris en compte. Ce paramètre n'est disponible que lorsque `sampling_mode` est sur "on". La valeur par défaut est 0.05. | +| `repetition_penalty` | FLOAT | Non | 0.0 à 5.0 | Pénalise les tokens qui ont déjà été générés pour réduire les répétitions. Une valeur de 1.0 n'applique aucune pénalité. Ce paramètre n'est disponible que lorsque `sampling_mode` est sur "on". La valeur par défaut est 1.05. | +| `seed` | INT | Non | 0 à 18446744073709551615 | Un nombre utilisé pour initialiser le générateur de nombres aléatoires afin d'obtenir des résultats reproductibles lorsque l'échantillonnage est sur "on". La valeur par défaut est 0. | + +**Note :** Les paramètres `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty` et `seed` ne sont actifs et visibles dans l'interface du nœud que lorsque le `sampling_mode` est défini sur "on". + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `generated_text` | STRING | Le texte généré par le modèle en fonction de l'instruction d'entrée et de l'image optionnelle. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/ja.md b/comfyui_embedded_docs/docs/TextGenerate/ja.md new file mode 100644 index 000000000..796bda4e4 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/ja.md @@ -0,0 +1,27 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/ja.md) + +TextGenerateノードは、CLIPモデルを使用してユーザーのプロンプトに基づいてテキストを生成します。オプションで画像を視覚的な参照として使用し、テキスト生成をガイドすることもできます。出力の長さを制御し、様々な設定でランダムサンプリングを使用するか、サンプリングなしでテキストを生成するかを選択できます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | はい | N/A | プロンプトのトークン化とテキスト生成に使用されるCLIPモデルです。 | +| `prompt` | STRING | はい | N/A | 生成をガイドするテキストプロンプトです。このフィールドは複数行と動的プロンプトをサポートしています。デフォルト値は空の文字列です。 | +| `image` | IMAGE | いいえ | N/A | テキストプロンプトと共に使用して、生成されるテキストに影響を与えることができるオプションの画像です。 | +| `max_length` | INT | はい | 1 から 2048 | モデルが生成するトークンの最大数です。デフォルト値は256です。 | +| `sampling_mode` | COMBO | はい | `"on"`
`"off"` | テキスト生成中にランダムサンプリングを使用するかどうかを制御します。"on"に設定すると、サンプリングを制御する追加パラメータが利用可能になります。デフォルトは"on"です。 | +| `temperature` | FLOAT | いいえ | 0.01 から 2.0 | 出力のランダム性を制御します。値が低いほど出力は予測可能になり、値が高いほど創造的になります。このパラメータは`sampling_mode`が"on"の場合にのみ利用可能です。デフォルト値は0.7です。 | +| `top_k` | INT | いいえ | 0 から 1000 | サンプリングプールを、次に来る可能性が最も高い上位K個のトークンに制限します。値0はこのフィルターを無効にします。このパラメータは`sampling_mode`が"on"の場合にのみ利用可能です。デフォルト値は64です。 | +| `top_p` | FLOAT | いいえ | 0.0 から 1.0 | 核サンプリングを使用し、累積確率がこの値未満のトークンに選択肢を制限します。このパラメータは`sampling_mode`が"on"の場合にのみ利用可能です。デフォルト値は0.95です。 | +| `min_p` | FLOAT | いいえ | 0.0 から 1.0 | 考慮されるトークンの最小確率しきい値を設定します。このパラメータは`sampling_mode`が"on"の場合にのみ利用可能です。デフォルト値は0.05です。 | +| `repetition_penalty` | FLOAT | いいえ | 0.0 から 5.0 | 既に生成されたトークンにペナルティを課し、繰り返しを減らします。値1.0はペナルティを適用しません。このパラメータは`sampling_mode`が"on"の場合にのみ利用可能です。デフォルト値は1.05です。 | +| `seed` | INT | いいえ | 0 から 18446744073709551615 | サンプリングが"on"の場合に再現可能な結果を得るために、乱数生成器を初期化するために使用される数値です。デフォルト値は0です。 | + +**注意:** パラメータ`temperature`、`top_k`、`top_p`、`min_p`、`repetition_penalty`、`seed`は、`sampling_mode`が"on"に設定されている場合にのみ、ノードインターフェースでアクティブかつ表示されます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `generated_text` | STRING | 入力プロンプトとオプションの画像に基づいてモデルによって生成されたテキストです。 | diff --git a/comfyui_embedded_docs/docs/TextGenerate/ko.md b/comfyui_embedded_docs/docs/TextGenerate/ko.md new file mode 100644 index 000000000..370eafc22 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/ko.md @@ -0,0 +1,27 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/ko.md) + +TextGenerate 노드는 CLIP 모델을 사용하여 사용자의 프롬프트를 기반으로 텍스트를 생성합니다. 선택적으로 이미지를 시각적 참조로 사용하여 텍스트 생성을 유도할 수 있습니다. 출력 길이를 제어하고 다양한 설정으로 무작위 샘플링을 사용할지 또는 샘플링 없이 텍스트를 생성할지 선택할 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 예 | 해당 없음 | 프롬프트 토큰화 및 텍스트 생성에 사용되는 CLIP 모델입니다. | +| `prompt` | STRING | 예 | 해당 없음 | 생성을 유도하는 텍스트 프롬프트입니다. 이 필드는 여러 줄과 동적 프롬프트를 지원합니다. 기본값은 빈 문자열입니다. | +| `image` | IMAGE | 아니요 | 해당 없음 | 생성된 텍스트에 영향을 주기 위해 텍스트 프롬프트와 함께 사용할 수 있는 선택적 이미지입니다. | +| `max_length` | INT | 예 | 1 ~ 2048 | 모델이 생성할 최대 토큰 수입니다. 기본값은 256입니다. | +| `sampling_mode` | COMBO | 예 | `"on"`
`"off"` | 텍스트 생성 중 무작위 샘플링 사용 여부를 제어합니다. "on"으로 설정하면 샘플링 제어를 위한 추가 매개변수가 활성화됩니다. 기본값은 "on"입니다. | +| `temperature` | FLOAT | 아니요 | 0.01 ~ 2.0 | 출력의 무작위성을 제어합니다. 값이 낮을수록 출력이 더 예측 가능해지고, 값이 높을수록 더 창의적이 됩니다. 이 매개변수는 `sampling_mode`가 "on"일 때만 사용할 수 있습니다. 기본값은 0.7입니다. | +| `top_k` | INT | 아니요 | 0 ~ 1000 | 샘플링 풀을 가장 가능성 높은 상위 K개의 다음 토큰으로 제한합니다. 값이 0이면 이 필터가 비활성화됩니다. 이 매개변수는 `sampling_mode`가 "on"일 때만 사용할 수 있습니다. 기본값은 64입니다. | +| `top_p` | FLOAT | 아니요 | 0.0 ~ 1.0 | 누적 확률이 이 값보다 작은 토큰으로 선택지를 제한하는 핵 샘플링을 사용합니다. 이 매개변수는 `sampling_mode`가 "on"일 때만 사용할 수 있습니다. 기본값은 0.95입니다. | +| `min_p` | FLOAT | 아니요 | 0.0 ~ 1.0 | 고려될 토큰에 대한 최소 확률 임계값을 설정합니다. 이 매개변수는 `sampling_mode`가 "on"일 때만 사용할 수 있습니다. 기본값은 0.05입니다. | +| `repetition_penalty` | FLOAT | 아니요 | 0.0 ~ 5.0 | 이미 생성된 토큰에 패널티를 적용하여 반복을 줄입니다. 값이 1.0이면 패널티가 적용되지 않습니다. 이 매개변수는 `sampling_mode`가 "on"일 때만 사용할 수 있습니다. 기본값은 1.05입니다. | +| `seed` | INT | 아니요 | 0 ~ 18446744073709551615 | 샘플링이 "on"일 때 재현 가능한 결과를 위해 난수 생성기를 초기화하는 데 사용되는 숫자입니다. 기본값은 0입니다. | + +**참고:** `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty`, `seed` 매개변수는 `sampling_mode`가 "on"으로 설정된 경우에만 노드 인터페이스에서 활성화되고 표시됩니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `generated_text` | STRING | 입력 프롬프트와 선택적 이미지를 기반으로 모델이 생성한 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/pt-BR.md b/comfyui_embedded_docs/docs/TextGenerate/pt-BR.md new file mode 100644 index 000000000..37623a0ca --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/pt-BR.md @@ -0,0 +1,27 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/pt-BR.md) + +O nó TextGenerate utiliza um modelo CLIP para criar texto com base em um prompt do usuário. Opcionalmente, pode usar uma imagem como referência visual para orientar a geração de texto. Você pode controlar o comprimento da saída e escolher se deseja usar amostragem aleatória com várias configurações ou gerar texto sem amostragem. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Sim | N/A | O modelo CLIP usado para tokenizar o prompt e gerar texto. | +| `prompt` | STRING | Sim | N/A | O prompt de texto que orienta a geração. Este campo suporta múltiplas linhas e prompts dinâmicos. O valor padrão é uma string vazia. | +| `image` | IMAGE | Não | N/A | Uma imagem opcional que pode ser usada junto com o prompt de texto para influenciar o texto gerado. | +| `max_length` | INT | Sim | 1 a 2048 | O número máximo de tokens que o modelo irá gerar. O valor padrão é 256. | +| `sampling_mode` | COMBO | Sim | `"on"`
`"off"` | Controla se a amostragem aleatória é usada durante a geração de texto. Quando definido como "on", parâmetros adicionais para controlar a amostragem ficam disponíveis. O padrão é "on". | +| `temperature` | FLOAT | Não | 0.01 a 2.0 | Controla a aleatoriedade da saída. Valores mais baixos tornam a saída mais previsível, valores mais altos a tornam mais criativa. Este parâmetro só está disponível quando `sampling_mode` está "on". O valor padrão é 0.7. | +| `top_k` | INT | Não | 0 a 1000 | Limita o conjunto de amostragem aos K tokens mais prováveis a seguir. Um valor de 0 desativa este filtro. Este parâmetro só está disponível quando `sampling_mode` está "on". O valor padrão é 64. | +| `top_p` | FLOAT | Não | 0.0 a 1.0 | Usa amostragem por núcleo (nucleus sampling), limitando as escolhas a tokens cuja probabilidade cumulativa seja menor que este valor. Este parâmetro só está disponível quando `sampling_mode` está "on". O valor padrão é 0.95. | +| `min_p` | FLOAT | Não | 0.0 a 1.0 | Define um limite mínimo de probabilidade para que os tokens sejam considerados. Este parâmetro só está disponível quando `sampling_mode` está "on". O valor padrão é 0.05. | +| `repetition_penalty` | FLOAT | Não | 0.0 a 5.0 | Penaliza tokens que já foram gerados para reduzir repetições. Um valor de 1.0 não aplica penalidade. Este parâmetro só está disponível quando `sampling_mode` está "on". O valor padrão é 1.05. | +| `seed` | INT | Não | 0 a 18446744073709551615 | Um número usado para inicializar o gerador de números aleatórios para resultados reproduzíveis quando a amostragem está "on". O valor padrão é 0. | + +**Observação:** Os parâmetros `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty` e `seed` só estão ativos e visíveis na interface do nó quando o `sampling_mode` está definido como "on". + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `generated_text` | STRING | O texto gerado pelo modelo com base no prompt de entrada e na imagem opcional. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/ru.md b/comfyui_embedded_docs/docs/TextGenerate/ru.md new file mode 100644 index 000000000..c1eefbd71 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/ru.md @@ -0,0 +1,27 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/ru.md) + +Узел TextGenerate использует модель CLIP для создания текста на основе пользовательского промпта. При необходимости он может использовать изображение в качестве визуальной ссылки для направления генерации текста. Вы можете контролировать длину выходного текста и выбирать, использовать ли случайную выборку с различными настройками или генерировать текст без выборки. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Да | N/A | Модель CLIP, используемая для токенизации промпта и генерации текста. | +| `prompt` | STRING | Да | N/A | Текстовый промпт, направляющий генерацию. Это поле поддерживает несколько строк и динамические промпты. Значение по умолчанию — пустая строка. | +| `image` | IMAGE | Нет | N/A | Необязательное изображение, которое может использоваться вместе с текстовым промптом для влияния на генерируемый текст. | +| `max_length` | INT | Да | 1 до 2048 | Максимальное количество токенов, которое сгенерирует модель. Значение по умолчанию — 256. | +| `sampling_mode` | COMBO | Да | `"on"`
`"off"` | Управляет использованием случайной выборки во время генерации текста. При установке "on" становятся доступны дополнительные параметры для управления выборкой. Значение по умолчанию — "on". | +| `temperature` | FLOAT | Нет | 0.01 до 2.0 | Управляет случайностью вывода. Более низкие значения делают вывод более предсказуемым, более высокие — более креативным. Этот параметр доступен только когда `sampling_mode` установлен в "on". Значение по умолчанию — 0.7. | +| `top_k` | INT | Нет | 0 до 1000 | Ограничивает пул выборки K наиболее вероятными следующими токенами. Значение 0 отключает этот фильтр. Этот параметр доступен только когда `sampling_mode` установлен в "on". Значение по умолчанию — 64. | +| `top_p` | FLOAT | Нет | 0.0 до 1.0 | Использует ядерную выборку (nucleus sampling), ограничивая выбор токенами, чья совокупная вероятность меньше этого значения. Этот параметр доступен только когда `sampling_mode` установлен в "on". Значение по умолчанию — 0.95. | +| `min_p` | FLOAT | Нет | 0.0 до 1.0 | Устанавливает минимальный порог вероятности для рассмотрения токенов. Этот параметр доступен только когда `sampling_mode` установлен в "on". Значение по умолчанию — 0.05. | +| `repetition_penalty` | FLOAT | Нет | 0.0 до 5.0 | Штрафует токены, которые уже были сгенерированы, чтобы уменьшить повторения. Значение 1.0 не применяет штраф. Этот параметр доступен только когда `sampling_mode` установлен в "on". Значение по умолчанию — 1.05. | +| `seed` | INT | Нет | 0 до 18446744073709551615 | Число, используемое для инициализации генератора случайных чисел для воспроизводимых результатов, когда выборка включена ("on"). Значение по умолчанию — 0. | + +**Примечание:** Параметры `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty` и `seed` активны и видны в интерфейсе узла только когда `sampling_mode` установлен в "on". + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `generated_text` | STRING | Текст, сгенерированный моделью на основе входного промпта и необязательного изображения. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/tr.md b/comfyui_embedded_docs/docs/TextGenerate/tr.md new file mode 100644 index 000000000..59a8ec0f7 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/tr.md @@ -0,0 +1,27 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/tr.md) + +TextGenerate düğümü, kullanıcının istemine dayalı metin oluşturmak için bir CLIP modeli kullanır. İsteğe bağlı olarak, metin oluşturmayı yönlendirmek için görsel bir referans olarak bir görüntü kullanabilir. Çıktının uzunluğunu kontrol edebilir ve çeşitli ayarlarla rastgele örnekleme kullanıp kullanmayacağınızı veya örnekleme olmadan metin oluşturmayı seçebilirsiniz. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Evet | Yok | İstemi tokenize etmek ve metin oluşturmak için kullanılan CLIP modeli. | +| `prompt` | STRING | Evet | Yok | Oluşturmayı yönlendiren metin istemi. Bu alan çoklu satırları ve dinamik istemleri destekler. Varsayılan değer boş bir dizidir. | +| `image` | IMAGE | Hayır | Yok | Oluşturulan metni etkilemek için metin istemiyle birlikte kullanılabilecek isteğe bağlı bir görüntü. | +| `max_length` | INT | Evet | 1 - 2048 | Modelin oluşturacağı maksimum token sayısı. Varsayılan değer 256'dır. | +| `sampling_mode` | COMBO | Evet | `"on"`
`"off"` | Metin oluşturma sırasında rastgele örnekleme kullanılıp kullanılmayacağını kontrol eder. "on" olarak ayarlandığında, örneklemeyi kontrol etmek için ek parametreler kullanılabilir hale gelir. Varsayılan değer "on"dur. | +| `temperature` | FLOAT | Hayır | 0.01 - 2.0 | Çıktının rastgeleliğini kontrol eder. Düşük değerler çıktıyı daha tahmin edilebilir, yüksek değerler daha yaratıcı yapar. Bu parametre yalnızca `sampling_mode` "on" olduğunda kullanılabilir. Varsayılan değer 0.7'dir. | +| `top_k` | INT | Hayır | 0 - 1000 | Örnekleme havuzunu, bir sonraki en olası K token ile sınırlar. 0 değeri bu filtreyi devre dışı bırakır. Bu parametre yalnızca `sampling_mode` "on" olduğunda kullanılabilir. Varsayılan değer 64'tür. | +| `top_p` | FLOAT | Hayır | 0.0 - 1.0 | Çekirdek örneklemesi kullanır, seçenekleri birikimli olasılığı bu değerden küçük olan token'larla sınırlar. Bu parametre yalnızca `sampling_mode` "on" olduğunda kullanılabilir. Varsayılan değer 0.95'tir. | +| `min_p` | FLOAT | Hayır | 0.0 - 1.0 | Token'ların değerlendirilmesi için minimum bir olasılık eşiği belirler. Bu parametre yalnızca `sampling_mode` "on" olduğunda kullanılabilir. Varsayılan değer 0.05'tir. | +| `repetition_penalty` | FLOAT | Hayır | 0.0 - 5.0 | Tekrarı azaltmak için daha önce oluşturulmuş token'ları cezalandırır. 1.0 değeri ceza uygulamaz. Bu parametre yalnızca `sampling_mode` "on" olduğunda kullanılabilir. Varsayılan değer 1.05'tir. | +| `seed` | INT | Hayır | 0 - 18446744073709551615 | Örnekleme "on" olduğunda tekrarlanabilir sonuçlar için rastgele sayı üretecini başlatmakta kullanılan bir sayı. Varsayılan değer 0'dır. | + +**Not:** `temperature`, `top_k`, `top_p`, `min_p`, `repetition_penalty` ve `seed` parametreleri yalnızca `sampling_mode` "on" olarak ayarlandığında düğüm arayüzünde aktif ve görünür durumdadır. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `generated_text` | STRING | Model tarafından girdi istemine ve isteğe bağlı görüntüye dayalı olarak oluşturulan metin. | diff --git a/comfyui_embedded_docs/docs/TextGenerate/zh-TW.md b/comfyui_embedded_docs/docs/TextGenerate/zh-TW.md new file mode 100644 index 000000000..da46f0c05 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/zh-TW.md @@ -0,0 +1,27 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/zh-TW.md) + +TextGenerate 節點使用 CLIP 模型,根據使用者的提示詞來生成文字。它可以選擇性地使用一張圖片作為視覺參考來引導文字生成。您可以控制輸出的長度,並選擇是否要使用帶有各種設定的隨機採樣,或是在不採樣的情況下生成文字。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 是 | N/A | 用於將提示詞標記化及生成文字的 CLIP 模型。 | +| `prompt` | STRING | 是 | N/A | 引導生成的文字提示詞。此欄位支援多行文字和動態提示詞。預設值為空字串。 | +| `image` | IMAGE | 否 | N/A | 可選的圖片,可與文字提示詞一起使用,以影響生成的文字。 | +| `max_length` | INT | 是 | 1 至 2048 | 模型將生成的最大標記數量。預設值為 256。 | +| `sampling_mode` | COMBO | 是 | `"on"`
`"off"` | 控制文字生成期間是否使用隨機採樣。設定為 "on" 時,用於控制採樣的額外參數將變為可用。預設為 "on"。 | +| `temperature` | FLOAT | 否 | 0.01 至 2.0 | 控制輸出的隨機性。較低的值使輸出更可預測,較高的值使其更具創造性。此參數僅在 `sampling_mode` 為 "on" 時可用。預設值為 0.7。 | +| `top_k` | INT | 否 | 0 至 1000 | 將採樣池限制為最可能的下 K 個標記。值為 0 表示停用此篩選器。此參數僅在 `sampling_mode` 為 "on" 時可用。預設值為 64。 | +| `top_p` | FLOAT | 否 | 0.0 至 1.0 | 使用核心採樣,將選擇限制在累積機率小於此值的標記。此參數僅在 `sampling_mode` 為 "on" 時可用。預設值為 0.95。 | +| `min_p` | FLOAT | 否 | 0.0 至 1.0 | 設定標記被考慮的最低機率閾值。此參數僅在 `sampling_mode` 為 "on" 時可用。預設值為 0.05。 | +| `repetition_penalty` | FLOAT | 否 | 0.0 至 5.0 | 對已生成的標記施加懲罰以減少重複。值為 1.0 表示不施加懲罰。此參數僅在 `sampling_mode` 為 "on" 時可用。預設值為 1.05。 | +| `seed` | INT | 否 | 0 至 18446744073709551615 | 用於初始化隨機數生成器的數字,以便在採樣為 "on" 時獲得可重現的結果。預設值為 0。 | + +**注意:** 參數 `temperature`、`top_k`、`top_p`、`min_p`、`repetition_penalty` 和 `seed` 僅在 `sampling_mode` 設定為 "on" 時,才會在節點介面中啟用並顯示。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `generated_text` | STRING | 模型根據輸入提示詞和可選圖片所生成的文字。 | diff --git a/comfyui_embedded_docs/docs/TextGenerate/zh.md b/comfyui_embedded_docs/docs/TextGenerate/zh.md new file mode 100644 index 000000000..732da787d --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerate/zh.md @@ -0,0 +1,27 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerate/zh.md) + +TextGenerate 节点使用 CLIP 模型根据用户的提示词生成文本。它可以选择性地使用图像作为视觉参考来引导文本生成。您可以控制输出的长度,并选择是否使用带有各种设置的随机采样,或是在不采样的情况下生成文本。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 是 | 不适用 | 用于对提示词进行分词和生成文本的 CLIP 模型。 | +| `prompt` | STRING | 是 | 不适用 | 用于引导生成的文本提示词。此字段支持多行和动态提示词。默认值为空字符串。 | +| `image` | IMAGE | 否 | 不适用 | 可选的图像,可与文本提示词一起使用,以影响生成的文本。 | +| `max_length` | INT | 是 | 1 到 2048 | 模型将生成的最大令牌数。默认值为 256。 | +| `sampling_mode` | COMBO | 是 | `"on"`
`"off"` | 控制文本生成期间是否使用随机采样。设置为 "on" 时,用于控制采样的附加参数将变为可用。默认为 "on"。 | +| `temperature` | FLOAT | 否 | 0.01 到 2.0 | 控制输出的随机性。较低的值使输出更可预测,较高的值使其更具创造性。此参数仅在 `sampling_mode` 为 "on" 时可用。默认值为 0.7。 | +| `top_k` | INT | 否 | 0 到 1000 | 将采样池限制为最可能的前 K 个下一个令牌。值为 0 则禁用此过滤器。此参数仅在 `sampling_mode` 为 "on" 时可用。默认值为 64。 | +| `top_p` | FLOAT | 否 | 0.0 到 1.0 | 使用核心采样,将选择限制在累积概率小于此值的令牌上。此参数仅在 `sampling_mode` 为 "on" 时可用。默认值为 0.95。 | +| `min_p` | FLOAT | 否 | 0.0 到 1.0 | 设置令牌被考虑的最低概率阈值。此参数仅在 `sampling_mode` 为 "on" 时可用。默认值为 0.05。 | +| `repetition_penalty` | FLOAT | 否 | 0.0 到 5.0 | 对已生成的令牌施加惩罚以减少重复。值为 1.0 时不施加惩罚。此参数仅在 `sampling_mode` 为 "on" 时可用。默认值为 1.05。 | +| `seed` | INT | 否 | 0 到 18446744073709551615 | 当采样为 "on" 时,用于初始化随机数生成器以获得可重现结果的数字。默认值为 0。 | + +**注意:** 参数 `temperature`、`top_k`、`top_p`、`min_p`、`repetition_penalty` 和 `seed` 仅在 `sampling_mode` 设置为 "on" 时在节点界面中处于活动状态并可见。 + +## 输出 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `generated_text` | STRING | 模型根据输入提示词和可选图像生成的文本。 | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ar.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ar.md new file mode 100644 index 000000000..f9b4e6d23 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ar.md @@ -0,0 +1,21 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ar.md) + +عُقدة TextGenerateLTX2Prompt هي نسخة متخصصة من عُقد توليد النصوص. تأخذ نصًا مُدخلًا من المستخدم وتُنسقه تلقائيًا باستخدام تعليمات نظامية محددة قبل إرساله إلى نموذج لغوي لتحسينه أو إكماله. يمكن للعُقدة العمل في وضعين: نصي فقط أو مع إشارة إلى صورة، باستخدام نصوص نظامية مختلفة لكل حالة. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | نعم | | نموذج CLIP المستخدم في تشفير النص. | +| `prompt` | STRING | نعم | | النص الخام المُدخل من المستخدم والذي سيتم تحسينه أو إكماله. | +| `max_length` | INT | نعم | | الحد الأقصى لعدد الرموز المسموح للنموذج اللغوي بتوليدها. | +| `sampling_mode` | COMBO | نعم | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | استراتيجية أخذ العينات المستخدمة لاختيار الرمز التالي أثناء توليد النص. | +| `image` | IMAGE | لا | | صورة اختيارية. عند توفيرها، تستخدم العُقدة نصًا نظاميًا مختلفًا يتضمن مكانًا محجوزًا لسياق الصورة. | + +**ملاحظة:** يتغير سلوك العُقدة بناءً على وجود مدخل `image`. إذا تم توفير صورة، سيتم تنسيق النص المُولد لمهمة تحويل صورة إلى فيديو. إذا لم يتم توفير صورة، فسيكون التنسيق لمهمة تحويل نص إلى فيديو. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `output` | STRING | سلسلة النص المُحسّنة أو المُكتملة التي أنشأها النموذج اللغوي. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/en.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/en.md new file mode 100644 index 000000000..d0d1bd2d8 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/en.md @@ -0,0 +1,21 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/en.md) + +The TextGenerateLTX2Prompt node is a specialized version of a text generation node. It takes a user's text prompt and automatically formats it with specific system instructions before sending it to a language model for enhancement or completion. The node can operate in two modes: text-only or with an image reference, using different system prompts for each case. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Yes | | The CLIP model used for text encoding. | +| `prompt` | STRING | Yes | | The raw text input from the user that will be enhanced or completed. | +| `max_length` | INT | Yes | | The maximum number of tokens the language model is allowed to generate. | +| `sampling_mode` | COMBO | Yes | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | The sampling strategy used to select the next token during text generation. | +| `image` | IMAGE | No | | An optional input image. When provided, the node uses a different system prompt that includes a placeholder for image context. | + +**Note:** The behavior of the node changes based on the presence of the `image` input. If an image is provided, the generated prompt will be formatted for an image-to-video task. If no image is provided, the formatting will be for a text-to-video task. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `output` | STRING | The enhanced or completed text string generated by the language model. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/es.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/es.md new file mode 100644 index 000000000..6b18e7ced --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/es.md @@ -0,0 +1,21 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/es.md) + +El nodo TextGenerateLTX2Prompt es una versión especializada de un nodo de generación de texto. Toma el texto de entrada del usuario y lo formatea automáticamente con instrucciones específicas del sistema antes de enviarlo a un modelo de lenguaje para su mejora o finalización. El nodo puede operar en dos modos: solo texto o con una referencia de imagen, utilizando diferentes instrucciones del sistema para cada caso. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Sí | | El modelo CLIP utilizado para la codificación de texto. | +| `prompt` | STRING | Sí | | La entrada de texto sin procesar del usuario que será mejorada o completada. | +| `max_length` | INT | Sí | | El número máximo de tokens que el modelo de lenguaje puede generar. | +| `sampling_mode` | COMBO | Sí | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | La estrategia de muestreo utilizada para seleccionar el siguiente token durante la generación de texto. | +| `image` | IMAGE | No | | Una imagen de entrada opcional. Cuando se proporciona, el nodo utiliza una instrucción del sistema diferente que incluye un marcador de posición para el contexto de la imagen. | + +**Nota:** El comportamiento del nodo cambia según la presencia de la entrada `image`. Si se proporciona una imagen, el texto generado se formateará para una tarea de imagen a video. Si no se proporciona una imagen, el formato será para una tarea de texto a video. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `output` | STRING | La cadena de texto mejorada o completada generada por el modelo de lenguaje. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/fr.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/fr.md new file mode 100644 index 000000000..4bd420b10 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/fr.md @@ -0,0 +1,21 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/fr.md) + +Le nœud TextGenerateLTX2Prompt est une version spécialisée d'un nœud de génération de texte. Il prend un prompt texte de l'utilisateur et le formate automatiquement avec des instructions système spécifiques avant de l'envoyer à un modèle de langage pour amélioration ou complétion. Le nœud peut fonctionner dans deux modes : texte uniquement ou avec une référence d'image, en utilisant des prompts système différents pour chaque cas. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Oui | | Le modèle CLIP utilisé pour l'encodage du texte. | +| `prompt` | STRING | Oui | | Le texte brut fourni par l'utilisateur qui sera amélioré ou complété. | +| `max_length` | INT | Oui | | Le nombre maximum de jetons que le modèle de langage est autorisé à générer. | +| `sampling_mode` | COMBO | Oui | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | La stratégie d'échantillonnage utilisée pour sélectionner le jeton suivant lors de la génération de texte. | +| `image` | IMAGE | Non | | Une image d'entrée optionnelle. Lorsqu'elle est fournie, le nœud utilise un prompt système différent qui inclut un espace réservé pour le contexte de l'image. | + +**Note :** Le comportement du nœud change en fonction de la présence de l'entrée `image`. Si une image est fournie, le prompt généré sera formaté pour une tâche image-à-vidéo. Si aucune image n'est fournie, le formatage sera pour une tâche texte-à-vidéo. + +## Sorties + +| Nom de la sortie | Type de données | Description | +|-------------|-----------|-------------| +| `output` | STRING | La chaîne de texte améliorée ou complétée générée par le modèle de langage. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ja.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ja.md new file mode 100644 index 000000000..f7dd2cebe --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ja.md @@ -0,0 +1,21 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ja.md) + +TextGenerateLTX2Promptノードは、テキスト生成ノードの特殊なバージョンです。ユーザーのテキストプロンプトを受け取り、言語モデルに送信して拡張または完成させる前に、特定のシステム指示で自動的にフォーマットします。このノードは、テキストのみ、または画像参照付きの2つのモードで動作し、それぞれの場合で異なるシステムプロンプトを使用します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | はい | | テキストエンコーディングに使用されるCLIPモデル。 | +| `prompt` | STRING | はい | | 拡張または完成されるユーザーからの生のテキスト入力。 | +| `max_length` | INT | はい | | 言語モデルが生成を許可される最大トークン数。 | +| `sampling_mode` | COMBO | はい | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | テキスト生成中に次のトークンを選択するために使用されるサンプリング戦略。 | +| `image` | IMAGE | いいえ | | オプションの入力画像。提供されると、ノードは画像コンテキストのプレースホルダーを含む異なるシステムプロンプトを使用します。 | + +**注意:** ノードの動作は、`image`入力の有無によって変化します。画像が提供された場合、生成されるプロンプトは画像から動画へのタスク用にフォーマットされます。画像が提供されない場合、フォーマットはテキストから動画へのタスク用になります。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `output` | STRING | 言語モデルによって生成された、拡張または完成されたテキスト文字列。 | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ko.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ko.md new file mode 100644 index 000000000..7f38a66c7 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ko.md @@ -0,0 +1,21 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ko.md) + +TextGenerateLTX2Prompt 노드는 텍스트 생성 노드의 특수화된 버전입니다. 사용자의 텍스트 프롬프트를 받아 특정 시스템 지시문으로 자동 포맷한 후, 언어 모델로 전송하여 개선하거나 완성합니다. 이 노드는 텍스트 전용 모드와 이미지 참조 모드 두 가지 방식으로 작동하며, 각 경우에 대해 서로 다른 시스템 프롬프트를 사용합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 예 | | 텍스트 인코딩에 사용되는 CLIP 모델입니다. | +| `prompt` | STRING | 예 | | 개선되거나 완성될 사용자의 원본 텍스트 입력입니다. | +| `max_length` | INT | 예 | | 언어 모델이 생성할 수 있는 최대 토큰 수입니다. | +| `sampling_mode` | COMBO | 예 | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | 텍스트 생성 중 다음 토큰을 선택하는 데 사용되는 샘플링 전략입니다. | +| `image` | IMAGE | 아니요 | | 선택적 입력 이미지입니다. 제공되면 노드는 이미지 컨텍스트를 위한 자리 표시자가 포함된 다른 시스템 프롬프트를 사용합니다. | + +**참고:** 노드의 동작은 `image` 입력의 존재 여부에 따라 변경됩니다. 이미지가 제공되면 생성된 프롬프트는 이미지-대-비디오 작업을 위해 포맷됩니다. 이미지가 제공되지 않으면 텍스트-대-비디오 작업을 위해 포맷됩니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `output` | STRING | 언어 모델에 의해 생성된 개선되거나 완성된 텍스트 문자열입니다. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/pt-BR.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/pt-BR.md new file mode 100644 index 000000000..fa5c03fbc --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/pt-BR.md @@ -0,0 +1,21 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/pt-BR.md) + +O nó TextGenerateLTX2Prompt é uma versão especializada de um nó de geração de texto. Ele recebe um prompt de texto do usuário e o formata automaticamente com instruções específicas do sistema antes de enviá-lo a um modelo de linguagem para aprimoramento ou conclusão. O nó pode operar em dois modos: apenas texto ou com referência de imagem, usando diferentes prompts do sistema para cada caso. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Sim | | O modelo CLIP usado para a codificação do texto. | +| `prompt` | STRING | Sim | | A entrada de texto bruta do usuário que será aprimorada ou completada. | +| `max_length` | INT | Sim | | O número máximo de tokens que o modelo de linguagem tem permissão para gerar. | +| `sampling_mode` | COMBO | Sim | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | A estratégia de amostragem usada para selecionar o próximo token durante a geração de texto. | +| `image` | IMAGE | Não | | Uma imagem de entrada opcional. Quando fornecida, o nó usa um prompt do sistema diferente que inclui um espaço reservado para contexto de imagem. | + +**Observação:** O comportamento do nó muda com base na presença da entrada `image`. Se uma imagem for fornecida, o prompt gerado será formatado para uma tarefa de imagem-para-vídeo. Se nenhuma imagem for fornecida, a formatação será para uma tarefa de texto-para-vídeo. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `output` | STRING | A string de texto aprimorada ou completada gerada pelo modelo de linguagem. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ru.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ru.md new file mode 100644 index 000000000..e1a284ee6 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ru.md @@ -0,0 +1,21 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/ru.md) + +Узел TextGenerateLTX2Prompt является специализированной версией узла генерации текста. Он принимает текстовый промпт пользователя, автоматически форматирует его с помощью определённых системных инструкций, а затем отправляет языковой модели для улучшения или завершения. Узел может работать в двух режимах: только с текстом или с опорным изображением, используя для каждого случая разные системные промпты. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Да | | Модель CLIP, используемая для кодирования текста. | +| `prompt` | STRING | Да | | Исходный текстовый ввод от пользователя, который будет улучшен или завершён. | +| `max_length` | INT | Да | | Максимальное количество токенов, которое языковой модели разрешено сгенерировать. | +| `sampling_mode` | COMBO | Да | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | Стратегия выборки, используемая для выбора следующего токена во время генерации текста. | +| `image` | IMAGE | Нет | | Необязательное входное изображение. При его наличии узел использует другой системный промпт, который включает заполнитель для контекста изображения. | + +**Примечание:** Поведение узла меняется в зависимости от наличия входного параметра `image`. Если изображение предоставлено, сгенерированный промпт будет отформатирован для задачи "изображение-в-видео". Если изображение не предоставлено, форматирование будет выполнено для задачи "текст-в-видео". + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `output` | STRING | Улучшенная или завершённая текстовая строка, сгенерированная языковой моделью. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/tr.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/tr.md new file mode 100644 index 000000000..3f71a80b0 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/tr.md @@ -0,0 +1,21 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/tr.md) + +TextGenerateLTX2Prompt düğümü, bir metin oluşturma düğümünün özelleştirilmiş bir versiyonudur. Kullanıcının metin istemini alır ve onu bir dil modeline geliştirme veya tamamlama için göndermeden önce belirli sistem talimatlarıyla otomatik olarak biçimlendirir. Düğüm, her bir durum için farklı sistem istemleri kullanarak iki modda çalışabilir: yalnızca metin veya bir görsel referansı ile. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | Evet | | Metin kodlaması için kullanılan CLIP modeli. | +| `prompt` | STRING | Evet | | Kullanıcıdan gelen, geliştirilecek veya tamamlanacak ham metin girişi. | +| `max_length` | INT | Evet | | Dil modelinin oluşturmasına izin verilen maksimum token sayısı. | +| `sampling_mode` | COMBO | Evet | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | Metin oluşturma sırasında bir sonraki token'ı seçmek için kullanılan örnekleme stratejisi. | +| `image` | IMAGE | Hayır | | İsteğe bağlı bir giriş görseli. Sağlandığında, düğüm görsel bağlamı için bir yer tutucu içeren farklı bir sistem istemi kullanır. | + +**Not:** Düğümün davranışı, `image` girişinin varlığına göre değişir. Bir görsel sağlanırsa, oluşturulan istem bir görselden-videoya görevi için biçimlendirilir. Görsel sağlanmazsa, biçimlendirme metinden-videoya görevi için yapılır. + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `output` | STRING | Dil modeli tarafından oluşturulan, geliştirilmiş veya tamamlanmış metin dizisi. | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh-TW.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh-TW.md new file mode 100644 index 000000000..4af2748bc --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh-TW.md @@ -0,0 +1,21 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh-TW.md) + +TextGenerateLTX2Prompt 節點是一個專門的文字生成節點。它接收使用者的文字提示,在將其發送到語言模型進行增強或補全之前,會自動使用特定的系統指令對其進行格式化。該節點可以在兩種模式下運行:純文字模式或帶有圖像參考的模式,每種情況使用不同的系統提示。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 是 | | 用於文字編碼的 CLIP 模型。 | +| `prompt` | STRING | 是 | | 來自使用者的原始文字輸入,將被增強或補全。 | +| `max_length` | INT | 是 | | 語言模型允許生成的最大 token 數量。 | +| `sampling_mode` | COMBO | 是 | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | 在文字生成過程中用於選擇下一個 token 的取樣策略。 | +| `image` | IMAGE | 否 | | 可選的輸入圖像。當提供時,節點會使用一個包含圖像上下文佔位符的不同系統提示。 | + +**注意:** 節點的行為會根據 `image` 輸入是否存在而改變。如果提供了圖像,生成的提示將被格式化為圖像轉視訊任務。如果沒有提供圖像,則格式化將用於文字轉視訊任務。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `output` | STRING | 由語言模型生成的增強或補全後的字串。 | diff --git a/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh.md b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh.md new file mode 100644 index 000000000..d467c2dd2 --- /dev/null +++ b/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh.md @@ -0,0 +1,21 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/TextGenerateLTX2Prompt/zh.md) + +TextGenerateLTX2Prompt 节点是一个专门化的文本生成节点。它接收用户的文本提示,在发送给语言模型进行增强或补全之前,会自动使用特定的系统指令对其进行格式化。该节点可在两种模式下运行:纯文本模式或带图像参考模式,每种情况使用不同的系统提示。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `clip` | CLIP | 是 | | 用于文本编码的 CLIP 模型。 | +| `prompt` | STRING | 是 | | 来自用户的原始文本输入,将被增强或补全。 | +| `max_length` | INT | 是 | | 允许语言模型生成的最大令牌数量。 | +| `sampling_mode` | COMBO | 是 | `"greedy"`
`"top_k"`
`"top_p"`
`"temperature"` | 在文本生成过程中用于选择下一个令牌的采样策略。 | +| `image` | IMAGE | 否 | | 可选的输入图像。当提供时,节点会使用一个包含图像上下文占位符的不同系统提示。 | + +**注意:** 节点的行为会根据 `image` 输入是否存在而改变。如果提供了图像,生成的提示将被格式化为图像到视频任务。如果未提供图像,则格式化为文本到视频任务。 + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `output` | STRING | 由语言模型生成的增强或补全后的文本字符串。 | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/ar.md b/comfyui_embedded_docs/docs/TextToLowercase/ar.md index 31b298c86..dfb68cf86 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/ar.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص المدخل بعد تحويل جميع أحرفه إلى أحرف صغيرة. | \ No newline at end of file +| `text` | STRING | النص المدخل بعد تحويل جميع أحرفه إلى أحرف صغيرة. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/en.md b/comfyui_embedded_docs/docs/TextToLowercase/en.md index 1d840fa70..d4b602c45 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/en.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/en.md @@ -12,4 +12,4 @@ The Text to Lowercase node takes a text string as input and converts all of its | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The input text with all characters converted to lowercase. | \ No newline at end of file +| `text` | STRING | The input text with all characters converted to lowercase. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/es.md b/comfyui_embedded_docs/docs/TextToLowercase/es.md index 5ad834f79..e4acb2145 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/es.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/es.md @@ -12,4 +12,4 @@ El nodo Texto a Minúsculas toma una cadena de texto como entrada y convierte to | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto de entrada con todos los caracteres convertidos a minúsculas. | \ No newline at end of file +| `text` | STRING | El texto de entrada con todos los caracteres convertidos a minúsculas. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/fr.md b/comfyui_embedded_docs/docs/TextToLowercase/fr.md index 8ca23dca8..f18c47df4 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/fr.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/fr.md @@ -12,4 +12,4 @@ Le nœud Text to Lowercase prend une chaîne de texte en entrée et convertit to | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte d'entrée avec tous les caractères convertis en minuscules. | \ No newline at end of file +| `text` | STRING | Le texte d'entrée avec tous les caractères convertis en minuscules. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/ja.md b/comfyui_embedded_docs/docs/TextToLowercase/ja.md index 232834252..9de71564e 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/ja.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/ja.md @@ -12,4 +12,4 @@ Text to Lowercase ノードは、入力されたテキスト文字列を受け | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | すべての文字が小文字に変換された入力テキストです。 | \ No newline at end of file +| `text` | STRING | すべての文字が小文字に変換された入力テキストです。 | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/ko.md b/comfyui_embedded_docs/docs/TextToLowercase/ko.md index fa2ded3fb..ad87f0e5e 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/ko.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/ko.md @@ -12,4 +12,4 @@ Text to Lowercase 노드는 텍스트 문자열을 입력받아 모든 문자를 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | 모든 문자가 소문자로 변환된 입력 텍스트입니다. | \ No newline at end of file +| `text` | STRING | 모든 문자가 소문자로 변환된 입력 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/pt-BR.md b/comfyui_embedded_docs/docs/TextToLowercase/pt-BR.md index c8c14c618..ccdb4d987 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/pt-BR.md @@ -12,4 +12,4 @@ O nó Text to Lowercase recebe uma string de texto como entrada e converte todos | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto de entrada com todos os caracteres convertidos para minúsculas. | \ No newline at end of file +| `text` | STRING | O texto de entrada com todos os caracteres convertidos para minúsculas. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/ru.md b/comfyui_embedded_docs/docs/TextToLowercase/ru.md index 580c0532e..dcc98fba7 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/ru.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Входной текст со всеми символами, преобразованными в нижний регистр. | \ No newline at end of file +| `text` | STRING | Входной текст со всеми символами, преобразованными в нижний регистр. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/tr.md b/comfyui_embedded_docs/docs/TextToLowercase/tr.md index 4fe3b019a..b9c0cb115 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/tr.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/tr.md @@ -12,4 +12,4 @@ Text to Lowercase düğümü, bir metin dizesini girdi olarak alır ve tüm kara | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | Tüm karakterleri küçük harfe dönüştürülmüş girdi metni. | \ No newline at end of file +| `text` | STRING | Tüm karakterleri küçük harfe dönüştürülmüş girdi metni. | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/zh-TW.md b/comfyui_embedded_docs/docs/TextToLowercase/zh-TW.md index 8c369bed6..4bdc5bbb4 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/zh-TW.md @@ -12,4 +12,4 @@ Text to Lowercase 節點接收一個文字字串作為輸入,並將其所有 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 所有字元已轉換為小寫的輸入文字。 | \ No newline at end of file +| `text` | STRING | 所有字元已轉換為小寫的輸入文字。 | diff --git a/comfyui_embedded_docs/docs/TextToLowercase/zh.md b/comfyui_embedded_docs/docs/TextToLowercase/zh.md index d857dcf76..407455b3b 100644 --- a/comfyui_embedded_docs/docs/TextToLowercase/zh.md +++ b/comfyui_embedded_docs/docs/TextToLowercase/zh.md @@ -12,4 +12,4 @@ Text to Lowercase 节点接收一个文本字符串作为输入,并将其所 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 所有字符已转换为小写的输入文本。 | \ No newline at end of file +| `text` | STRING | 所有字符已转换为小写的输入文本。 | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/ar.md b/comfyui_embedded_docs/docs/TextToUppercase/ar.md index 8af949e7c..e04f9fc65 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/ar.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `text` | STRING | النص الناتج بعد تحويل جميع أحرفه إلى أحرف كبيرة. | \ No newline at end of file +| `text` | STRING | النص الناتج بعد تحويل جميع أحرفه إلى أحرف كبيرة. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/en.md b/comfyui_embedded_docs/docs/TextToUppercase/en.md index c49eba7c0..7f6d28e82 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/en.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/en.md @@ -12,4 +12,4 @@ The Text to Uppercase node takes a text input and converts all of its characters | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `text` | STRING | The resulting text with all characters converted to uppercase. | \ No newline at end of file +| `text` | STRING | The resulting text with all characters converted to uppercase. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/es.md b/comfyui_embedded_docs/docs/TextToUppercase/es.md index 0c6d01ead..9f7dd0871 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/es.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/es.md @@ -12,4 +12,4 @@ El nodo Text to Uppercase toma una entrada de texto y convierte todos sus caract | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `text` | STRING | El texto resultante con todos los caracteres convertidos a mayúsculas. | \ No newline at end of file +| `text` | STRING | El texto resultante con todos los caracteres convertidos a mayúsculas. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/fr.md b/comfyui_embedded_docs/docs/TextToUppercase/fr.md index 5f6e1a061..ba5c4a874 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/fr.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/fr.md @@ -12,4 +12,4 @@ Le nœud Text to Uppercase prend un texte en entrée et convertit tous ses carac | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `text` | STRING | Le texte résultant avec tous les caractères convertis en majuscules. | \ No newline at end of file +| `text` | STRING | Le texte résultant avec tous les caractères convertis en majuscules. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/ja.md b/comfyui_embedded_docs/docs/TextToUppercase/ja.md index f3733555c..e710e1497 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/ja.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/ja.md @@ -12,4 +12,4 @@ Text to Uppercase ノードは、入力されたテキストを受け取り、 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `text` | STRING | すべての文字が大文字に変換された結果のテキストです。 | \ No newline at end of file +| `text` | STRING | すべての文字が大文字に変換された結果のテキストです。 | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/ko.md b/comfyui_embedded_docs/docs/TextToUppercase/ko.md index 950b5f393..b6a849030 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/ko.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/ko.md @@ -12,4 +12,4 @@ Text to Uppercase 노드는 텍스트 입력을 받아 모든 문자를 대문 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `text` | STRING | 모든 문자가 대문자로 변환된 결과 텍스트입니다. | \ No newline at end of file +| `text` | STRING | 모든 문자가 대문자로 변환된 결과 텍스트입니다. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/pt-BR.md b/comfyui_embedded_docs/docs/TextToUppercase/pt-BR.md index 61635aa59..2c8d879f7 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/pt-BR.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/pt-BR.md @@ -12,4 +12,4 @@ O nó Text to Uppercase recebe um texto de entrada e converte todos os seus cara | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `text` | STRING | O texto resultante, com todos os caracteres convertidos para letras maiúsculas. | \ No newline at end of file +| `text` | STRING | O texto resultante, com todos os caracteres convertidos para letras maiúsculas. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/ru.md b/comfyui_embedded_docs/docs/TextToUppercase/ru.md index bfb259d1e..c4e7bd4ff 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/ru.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `text` | STRING | Результирующий текст со всеми символами, преобразованными в верхний регистр. | \ No newline at end of file +| `text` | STRING | Результирующий текст со всеми символами, преобразованными в верхний регистр. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/tr.md b/comfyui_embedded_docs/docs/TextToUppercase/tr.md index c4a09866e..ff29a7aea 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/tr.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/tr.md @@ -12,4 +12,4 @@ | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `text` | STRING | Tüm karakterleri büyük harfe dönüştürülmüş sonuç metni. | \ No newline at end of file +| `text` | STRING | Tüm karakterleri büyük harfe dönüştürülmüş sonuç metni. | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/zh-TW.md b/comfyui_embedded_docs/docs/TextToUppercase/zh-TW.md index ff26cd38c..d9ea56a4a 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/zh-TW.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/zh-TW.md @@ -12,4 +12,4 @@ Text to Uppercase 節點接收一個文字輸入,並將其所有字元轉換 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 所有字元均轉換為大寫後產生的文字。 | \ No newline at end of file +| `text` | STRING | 所有字元均轉換為大寫後產生的文字。 | diff --git a/comfyui_embedded_docs/docs/TextToUppercase/zh.md b/comfyui_embedded_docs/docs/TextToUppercase/zh.md index a45d1c974..35ebf0a8b 100644 --- a/comfyui_embedded_docs/docs/TextToUppercase/zh.md +++ b/comfyui_embedded_docs/docs/TextToUppercase/zh.md @@ -12,4 +12,4 @@ Text to Uppercase 节点接收一个文本输入,并将其所有字符转换 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `text` | STRING | 所有字符已转换为大写的结果文本。 | \ No newline at end of file +| `text` | STRING | 所有字符已转换为大写的结果文本。 | diff --git a/comfyui_embedded_docs/docs/ThresholdMask/ar.md b/comfyui_embedded_docs/docs/ThresholdMask/ar.md index afa867d93..67ab20436 100644 --- a/comfyui_embedded_docs/docs/ThresholdMask/ar.md +++ b/comfyui_embedded_docs/docs/ThresholdMask/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `القناع` | MASK | القناع الثنائي الناتج بعد تطبيق العتبة | \ No newline at end of file +| `القناع` | MASK | القناع الثنائي الناتج بعد تطبيق العتبة | diff --git a/comfyui_embedded_docs/docs/ThresholdMask/pt-BR.md b/comfyui_embedded_docs/docs/ThresholdMask/pt-BR.md index f0854351c..a2531f9a4 100644 --- a/comfyui_embedded_docs/docs/ThresholdMask/pt-BR.md +++ b/comfyui_embedded_docs/docs/ThresholdMask/pt-BR.md @@ -13,4 +13,4 @@ O nó ThresholdMask converte uma máscara em uma máscara binária aplicando um | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `mask` | MASK | A máscara binária resultante após a aplicação do limiar | \ No newline at end of file +| `mask` | MASK | A máscara binária resultante após a aplicação do limiar | diff --git a/comfyui_embedded_docs/docs/ThresholdMask/tr.md b/comfyui_embedded_docs/docs/ThresholdMask/tr.md index 0174ba6e7..e5aee0581 100644 --- a/comfyui_embedded_docs/docs/ThresholdMask/tr.md +++ b/comfyui_embedded_docs/docs/ThresholdMask/tr.md @@ -13,4 +13,4 @@ ThresholdMask düğümü, bir maskeyi bir eşik değeri uygulayarak ikili maskey | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `maske` | MASK | Eşikleme işlemi sonrasında elde edilen ikili maske | \ No newline at end of file +| `maske` | MASK | Eşikleme işlemi sonrasında elde edilen ikili maske | diff --git a/comfyui_embedded_docs/docs/ThresholdMask/zh-TW.md b/comfyui_embedded_docs/docs/ThresholdMask/zh-TW.md index 902b8e235..392ed5f76 100644 --- a/comfyui_embedded_docs/docs/ThresholdMask/zh-TW.md +++ b/comfyui_embedded_docs/docs/ThresholdMask/zh-TW.md @@ -13,4 +13,4 @@ ThresholdMask 節點透過應用閾值將遮罩轉換為二值遮罩。它將輸 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `遮罩` | MASK | 經過閾值處理後產生的二值遮罩 | \ No newline at end of file +| `遮罩` | MASK | 經過閾值處理後產生的二值遮罩 | diff --git a/comfyui_embedded_docs/docs/TomePatchModel/ar.md b/comfyui_embedded_docs/docs/TomePatchModel/ar.md index b19bf8d75..b6ed09c39 100644 --- a/comfyui_embedded_docs/docs/TomePatchModel/ar.md +++ b/comfyui_embedded_docs/docs/TomePatchModel/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق دمج الرموز عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق دمج الرموز عليه | diff --git a/comfyui_embedded_docs/docs/TomePatchModel/pt-BR.md b/comfyui_embedded_docs/docs/TomePatchModel/pt-BR.md index 0c99279fb..f8bc359e1 100644 --- a/comfyui_embedded_docs/docs/TomePatchModel/pt-BR.md +++ b/comfyui_embedded_docs/docs/TomePatchModel/pt-BR.md @@ -13,4 +13,4 @@ O nó TomePatchModel aplica Token Merging (ToMe) a um modelo de difusão para re | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a mesclagem de *tokens* aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a mesclagem de *tokens* aplicada | diff --git a/comfyui_embedded_docs/docs/TomePatchModel/tr.md b/comfyui_embedded_docs/docs/TomePatchModel/tr.md index 0a7b75b2e..76336b909 100644 --- a/comfyui_embedded_docs/docs/TomePatchModel/tr.md +++ b/comfyui_embedded_docs/docs/TomePatchModel/tr.md @@ -13,4 +13,4 @@ TomePatchModel düğümü, çıkarım sırasında hesaplama gereksinimlerini aza | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Token birleştirme uygulanmış değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Token birleştirme uygulanmış değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/TomePatchModel/zh-TW.md b/comfyui_embedded_docs/docs/TomePatchModel/zh-TW.md index 9d4c2a6f7..339d636c3 100644 --- a/comfyui_embedded_docs/docs/TomePatchModel/zh-TW.md +++ b/comfyui_embedded_docs/docs/TomePatchModel/zh-TW.md @@ -13,4 +13,4 @@ TomePatchModel 節點將 Token Merging (ToMe) 技術應用於擴散模型,以 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 token 合併技術的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用 token 合併技術的修改後模型 | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/ar.md b/comfyui_embedded_docs/docs/TopazImageEnhance/ar.md index 617b05a3e..718d96bc9 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/ar.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `image` | IMAGE | الصورة الناتجة المحسنة. | \ No newline at end of file +| `image` | IMAGE | الصورة الناتجة المحسنة. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/en.md b/comfyui_embedded_docs/docs/TopazImageEnhance/en.md index 6c84b8eb2..1236bf913 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/en.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/en.md @@ -26,4 +26,4 @@ The Topaz Image Enhance node provides industry-standard upscaling and image enha | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `image` | IMAGE | The enhanced output image. | \ No newline at end of file +| `image` | IMAGE | The enhanced output image. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/es.md b/comfyui_embedded_docs/docs/TopazImageEnhance/es.md index 68a9451f2..9cb1b4d3c 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/es.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/es.md @@ -26,4 +26,4 @@ El nodo Topaz Image Enhance proporciona escalado y mejora de imagen de calidad i | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `image` | IMAGE | La imagen de salida mejorada. | \ No newline at end of file +| `image` | IMAGE | La imagen de salida mejorada. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/fr.md b/comfyui_embedded_docs/docs/TopazImageEnhance/fr.md index 3847e1d62..0936cb13e 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/fr.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/fr.md @@ -26,4 +26,4 @@ Le nœud Topaz Image Enhance offre un suréchantillonnage et une amélioration d | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `image` | IMAGE | L'image de sortie améliorée. | \ No newline at end of file +| `image` | IMAGE | L'image de sortie améliorée. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/ja.md b/comfyui_embedded_docs/docs/TopazImageEnhance/ja.md index cae87c8f6..d26e82487 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/ja.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/ja.md @@ -26,4 +26,4 @@ Topaz Image Enhanceノードは、業界標準のアップスケーリングと | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `image` | IMAGE | エンハンスされた出力画像。 | \ No newline at end of file +| `image` | IMAGE | エンハンスされた出力画像。 | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/ko.md b/comfyui_embedded_docs/docs/TopazImageEnhance/ko.md index 07fc205d2..55c2ddced 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/ko.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/ko.md @@ -26,4 +26,4 @@ Topaz Image Enhance 노드는 업계 표준 업스케일링 및 이미지 향상 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `image` | IMAGE | 향상된 출력 이미지입니다. | \ No newline at end of file +| `image` | IMAGE | 향상된 출력 이미지입니다. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/pt-BR.md b/comfyui_embedded_docs/docs/TopazImageEnhance/pt-BR.md index bb19a6b51..130863dc8 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/pt-BR.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/pt-BR.md @@ -26,4 +26,4 @@ O nó Topaz Image Enhance oferece upscaling e aprimoramento de imagem de padrão | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem de saída aprimorada. | \ No newline at end of file +| `image` | IMAGE | A imagem de saída aprimorada. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/ru.md b/comfyui_embedded_docs/docs/TopazImageEnhance/ru.md index 43d8d901a..33bd37918 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/ru.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/ru.md @@ -26,4 +26,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `image` | IMAGE | Улучшенное выходное изображение. | \ No newline at end of file +| `image` | IMAGE | Улучшенное выходное изображение. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/tr.md b/comfyui_embedded_docs/docs/TopazImageEnhance/tr.md index e93f7d8ba..615a81877 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/tr.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/tr.md @@ -26,4 +26,4 @@ Topaz Image Enhance düğümü, sektör standardında yükseltme ve görüntü i | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | İyileştirilmiş çıktı görüntüsü. | \ No newline at end of file +| `image` | IMAGE | İyileştirilmiş çıktı görüntüsü. | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/zh-TW.md b/comfyui_embedded_docs/docs/TopazImageEnhance/zh-TW.md index 08d6fc6cf..bf184523f 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/zh-TW.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/zh-TW.md @@ -26,4 +26,4 @@ Topaz Image Enhance 節點提供業界標準的影像放大與增強功能。它 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 增強後的輸出影像。 | \ No newline at end of file +| `image` | IMAGE | 增強後的輸出影像。 | diff --git a/comfyui_embedded_docs/docs/TopazImageEnhance/zh.md b/comfyui_embedded_docs/docs/TopazImageEnhance/zh.md index 8f67cfabb..235ba647f 100644 --- a/comfyui_embedded_docs/docs/TopazImageEnhance/zh.md +++ b/comfyui_embedded_docs/docs/TopazImageEnhance/zh.md @@ -26,4 +26,4 @@ Topaz Image Enhance 节点提供行业标准的图像放大和增强功能。它 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `image` | IMAGE | 增强后的输出图像。 | \ No newline at end of file +| `image` | IMAGE | 增强后的输出图像。 | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/ar.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/ar.md index e5d9716ff..9c07f152d 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/ar.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/ar.md @@ -25,4 +25,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `video` | VIDEO | ملف الفيديو المحسَّن الناتج. | \ No newline at end of file +| `video` | VIDEO | ملف الفيديو المحسَّن الناتج. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/en.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/en.md index aa25ad17d..c19c1ed03 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/en.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/en.md @@ -25,4 +25,4 @@ The Topaz Video Enhance node uses an external API to improve video quality. It c | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `video` | VIDEO | The enhanced output video file. | \ No newline at end of file +| `video` | VIDEO | The enhanced output video file. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/es.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/es.md index 00924b74c..90ab3e68c 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/es.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/es.md @@ -25,4 +25,4 @@ El nodo Topaz Video Enhance utiliza una API externa para mejorar la calidad del | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `video` | VIDEO | El archivo de video mejorado de salida. | \ No newline at end of file +| `video` | VIDEO | El archivo de video mejorado de salida. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/fr.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/fr.md index 7a4d6fbec..d60f5430c 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/fr.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/fr.md @@ -25,4 +25,4 @@ Le nœud Topaz Video Enhance utilise une API externe pour améliorer la qualité | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `video` | VIDEO | Le fichier vidéo de sortie amélioré. | \ No newline at end of file +| `video` | VIDEO | Le fichier vidéo de sortie amélioré. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/ja.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/ja.md index bc5931aec..c5fa60b7e 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/ja.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/ja.md @@ -25,4 +25,4 @@ Topaz Video Enhanceノードは、外部APIを使用して動画の品質を向 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `video` | VIDEO | 強化された出力動画ファイル。 | \ No newline at end of file +| `video` | VIDEO | 強化された出力動画ファイル。 | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/ko.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/ko.md index 89f8e1bb6..e40a188aa 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/ko.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/ko.md @@ -25,4 +25,4 @@ Topaz Video Enhance 노드는 외부 API를 사용하여 비디오 품질을 향 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `video` | VIDEO | 향상된 출력 비디오 파일입니다. | \ No newline at end of file +| `video` | VIDEO | 향상된 출력 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/pt-BR.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/pt-BR.md index 9ab89a7f7..9c85fdd22 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/pt-BR.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/pt-BR.md @@ -25,4 +25,4 @@ O nó Topaz Video Enhance utiliza uma API externa para melhorar a qualidade de v | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `video` | VIDEO | O arquivo de vídeo de saída aprimorado. | \ No newline at end of file +| `video` | VIDEO | O arquivo de vídeo de saída aprimorado. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/ru.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/ru.md index dcab52e91..383000aa0 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/ru.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/ru.md @@ -25,4 +25,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `video` | VIDEO | Улучшенный выходной видеофайл. | \ No newline at end of file +| `video` | VIDEO | Улучшенный выходной видеофайл. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/tr.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/tr.md index 6d941be4c..9130ab36a 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/tr.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/tr.md @@ -25,4 +25,4 @@ Topaz Video Enhance düğümü, video kalitesini iyileştirmek için harici bir | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `video` | VIDEO | Geliştirilmiş çıkış video dosyası. | \ No newline at end of file +| `video` | VIDEO | Geliştirilmiş çıkış video dosyası. | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/zh-TW.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/zh-TW.md index 39a33ef8c..763f7d28d 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/zh-TW.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/zh-TW.md @@ -25,4 +25,4 @@ Topaz Video Enhance 節點使用外部 API 來提升影片品質。它可以放 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 增強後的輸出影片檔案。 | \ No newline at end of file +| `video` | VIDEO | 增強後的輸出影片檔案。 | diff --git a/comfyui_embedded_docs/docs/TopazVideoEnhance/zh.md b/comfyui_embedded_docs/docs/TopazVideoEnhance/zh.md index 412c72422..dc1247c8b 100644 --- a/comfyui_embedded_docs/docs/TopazVideoEnhance/zh.md +++ b/comfyui_embedded_docs/docs/TopazVideoEnhance/zh.md @@ -25,4 +25,4 @@ Topaz Video Enhance 节点使用外部 API 来提升视频质量。它可以放 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `video` | VIDEO | 增强后的输出视频文件。 | \ No newline at end of file +| `video` | VIDEO | 增强后的输出视频文件。 | diff --git a/comfyui_embedded_docs/docs/TorchCompileModel/ar.md b/comfyui_embedded_docs/docs/TorchCompileModel/ar.md index 9e310df98..c8d149422 100644 --- a/comfyui_embedded_docs/docs/TorchCompileModel/ar.md +++ b/comfyui_embedded_docs/docs/TorchCompileModel/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المُجمّع بعد تطبيق تجميع PyTorch عليه | \ No newline at end of file +| `النموذج` | MODEL | النموذج المُجمّع بعد تطبيق تجميع PyTorch عليه | diff --git a/comfyui_embedded_docs/docs/TorchCompileModel/pt-BR.md b/comfyui_embedded_docs/docs/TorchCompileModel/pt-BR.md index 14ed60fa9..107080446 100644 --- a/comfyui_embedded_docs/docs/TorchCompileModel/pt-BR.md +++ b/comfyui_embedded_docs/docs/TorchCompileModel/pt-BR.md @@ -13,4 +13,4 @@ O nó TorchCompileModel aplica a compilação PyTorch a um modelo para otimizar | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo compilado com a compilação PyTorch aplicada | \ No newline at end of file +| `model` | MODEL | O modelo compilado com a compilação PyTorch aplicada | diff --git a/comfyui_embedded_docs/docs/TorchCompileModel/tr.md b/comfyui_embedded_docs/docs/TorchCompileModel/tr.md index 104c7106d..78e480310 100644 --- a/comfyui_embedded_docs/docs/TorchCompileModel/tr.md +++ b/comfyui_embedded_docs/docs/TorchCompileModel/tr.md @@ -13,4 +13,4 @@ TorchCompileModel düğümü, bir modelin performansını optimize etmek için P | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | PyTorch derlemesi uygulanmış derlenmiş model | \ No newline at end of file +| `model` | MODEL | PyTorch derlemesi uygulanmış derlenmiş model | diff --git a/comfyui_embedded_docs/docs/TorchCompileModel/zh-TW.md b/comfyui_embedded_docs/docs/TorchCompileModel/zh-TW.md index 1871fbcec..bdc677614 100644 --- a/comfyui_embedded_docs/docs/TorchCompileModel/zh-TW.md +++ b/comfyui_embedded_docs/docs/TorchCompileModel/zh-TW.md @@ -13,4 +13,4 @@ TorchCompileModel 節點會對模型應用 PyTorch 編譯功能以優化其效 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用 PyTorch 編譯的已編譯模型 | \ No newline at end of file +| `model` | MODEL | 已應用 PyTorch 編譯的已編譯模型 | diff --git a/comfyui_embedded_docs/docs/TrainLoraNode/ar.md b/comfyui_embedded_docs/docs/TrainLoraNode/ar.md index 4ad8c18ca..57622fd5e 100644 --- a/comfyui_embedded_docs/docs/TrainLoraNode/ar.md +++ b/comfyui_embedded_docs/docs/TrainLoraNode/ar.md @@ -32,4 +32,4 @@ | `model_with_lora` | MODEL | النموذج الأصلي مع تطبيق LoRA المدرب. | | `lora` | LORA_MODEL | أوزان LoRA المدربة التي يمكن حفظها أو تطبيقها على نماذج أخرى. | | `loss` | LOSS_MAP | قاموس يحتوي على قيم خسارة التدريب عبر الزمن. | -| `steps` | INT | العدد الإجمالي لخطوات التدريب المكتملة (بما في ذلك أي خطوات سابقة من LoRA موجود). | \ No newline at end of file +| `steps` | INT | العدد الإجمالي لخطوات التدريب المكتملة (بما في ذلك أي خطوات سابقة من LoRA موجود). | diff --git a/comfyui_embedded_docs/docs/TrainLoraNode/pt-BR.md b/comfyui_embedded_docs/docs/TrainLoraNode/pt-BR.md index 4eaf7af26..609426d9f 100644 --- a/comfyui_embedded_docs/docs/TrainLoraNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TrainLoraNode/pt-BR.md @@ -32,4 +32,4 @@ O TrainLoraNode cria e treina um modelo LoRA (Low-Rank Adaptation) em um modelo | `model_with_lora` | MODEL | O modelo original com o LoRA treinado aplicado. | | `lora` | LORA_MODEL | Os pesos do LoRA treinado que podem ser salvos ou aplicados a outros modelos. | | `loss` | LOSS_MAP | Um dicionário contendo os valores de perda de treinamento ao longo do tempo. | -| `steps` | INT | O número total de etapas de treinamento concluídas (incluindo quaisquer etapas anteriores de um LoRA existente). | \ No newline at end of file +| `steps` | INT | O número total de etapas de treinamento concluídas (incluindo quaisquer etapas anteriores de um LoRA existente). | diff --git a/comfyui_embedded_docs/docs/TrainLoraNode/tr.md b/comfyui_embedded_docs/docs/TrainLoraNode/tr.md index 7c5ba3b9d..5887328f0 100644 --- a/comfyui_embedded_docs/docs/TrainLoraNode/tr.md +++ b/comfyui_embedded_docs/docs/TrainLoraNode/tr.md @@ -32,4 +32,4 @@ TrainLoraNode, sağlanan latents ve conditioning verilerini kullanarak bir diffu | `model_with_lora` | MODEL | Eğitilmiş LoRA'nın uygulandığı orijinal model. | | `lora` | LORA_MODEL | Kaydedilebilen veya diğer modellere uygulanabilen eğitilmiş LoRA ağırlıkları. | | `loss` | LOSS_MAP | Zaman içindeki eğitim kaybı değerlerini içeren bir sözlük. | -| `steps` | INT | Tamamlanan toplam eğitim adım sayısı (mevcut LoRA'dan önceki adımlar dahil). | \ No newline at end of file +| `steps` | INT | Tamamlanan toplam eğitim adım sayısı (mevcut LoRA'dan önceki adımlar dahil). | diff --git a/comfyui_embedded_docs/docs/TrainLoraNode/zh-TW.md b/comfyui_embedded_docs/docs/TrainLoraNode/zh-TW.md index 774d055d4..a0bb02d4f 100644 --- a/comfyui_embedded_docs/docs/TrainLoraNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TrainLoraNode/zh-TW.md @@ -32,4 +32,4 @@ TrainLoraNode 使用提供的潛空間資料和條件化資料,在擴散模型 | `model_with_lora` | MODEL | 應用已訓練 LoRA 後的原始模型。 | | `lora` | LORA_MODEL | 已訓練的 LoRA 權重,可儲存或應用於其他模型。 | | `loss` | LOSS_MAP | 包含隨時間變化的訓練損失值的字典。 | -| `steps` | INT | 完成的總訓練步數(包括現有 LoRA 的任何先前步數)。 | \ No newline at end of file +| `steps` | INT | 完成的總訓練步數(包括現有 LoRA 的任何先前步數)。 | diff --git a/comfyui_embedded_docs/docs/TrimAudioDuration/ar.md b/comfyui_embedded_docs/docs/TrimAudioDuration/ar.md index 51f6ca01d..667c3f7fa 100644 --- a/comfyui_embedded_docs/docs/TrimAudioDuration/ar.md +++ b/comfyui_embedded_docs/docs/TrimAudioDuration/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `audio` | AUDIO | المقطع الصوتي المقصوص بوقت البدء والمدة المحددين | \ No newline at end of file +| `audio` | AUDIO | المقطع الصوتي المقصوص بوقت البدء والمدة المحددين | diff --git a/comfyui_embedded_docs/docs/TrimAudioDuration/pt-BR.md b/comfyui_embedded_docs/docs/TrimAudioDuration/pt-BR.md index 7d622e3c8..62fc6e9cc 100644 --- a/comfyui_embedded_docs/docs/TrimAudioDuration/pt-BR.md +++ b/comfyui_embedded_docs/docs/TrimAudioDuration/pt-BR.md @@ -16,4 +16,4 @@ O nó TrimAudioDuration permite que você corte um segmento de tempo específico | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `audio` | AUDIO | O segmento de áudio cortado com o tempo de início e a duração especificados | \ No newline at end of file +| `audio` | AUDIO | O segmento de áudio cortado com o tempo de início e a duração especificados | diff --git a/comfyui_embedded_docs/docs/TrimAudioDuration/tr.md b/comfyui_embedded_docs/docs/TrimAudioDuration/tr.md index d370970d9..7ed67658c 100644 --- a/comfyui_embedded_docs/docs/TrimAudioDuration/tr.md +++ b/comfyui_embedded_docs/docs/TrimAudioDuration/tr.md @@ -16,4 +16,4 @@ TrimAudioDuration düğümü, bir ses dosyasından belirli bir zaman dilimini ke | Çıkış Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `audio` | AUDIO | Belirtilen başlangıç zamanı ve süreye sahip kırpılmış ses parçası | \ No newline at end of file +| `audio` | AUDIO | Belirtilen başlangıç zamanı ve süreye sahip kırpılmış ses parçası | diff --git a/comfyui_embedded_docs/docs/TrimAudioDuration/zh-TW.md b/comfyui_embedded_docs/docs/TrimAudioDuration/zh-TW.md index 7fe0278e9..dbcc3d0eb 100644 --- a/comfyui_embedded_docs/docs/TrimAudioDuration/zh-TW.md +++ b/comfyui_embedded_docs/docs/TrimAudioDuration/zh-TW.md @@ -16,4 +16,4 @@ TrimAudioDuration 節點允許您從音訊檔案中剪裁特定時間區段。 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `audio` | AUDIO | 經過剪裁的音訊片段,具有指定的開始時間和持續時長 | \ No newline at end of file +| `audio` | AUDIO | 經過剪裁的音訊片段,具有指定的開始時間和持續時長 | diff --git a/comfyui_embedded_docs/docs/TrimVideoLatent/ar.md b/comfyui_embedded_docs/docs/TrimVideoLatent/ar.md index 805a8f0e1..1be44266e 100644 --- a/comfyui_embedded_docs/docs/TrimVideoLatent/ar.md +++ b/comfyui_embedded_docs/docs/TrimVideoLatent/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------| -| `output` | LATENT | التمثيل الكامن للفيديو المُقلم بعد إزالة العدد المحدد من الإطارات من البداية | \ No newline at end of file +| `output` | LATENT | التمثيل الكامن للفيديو المُقلم بعد إزالة العدد المحدد من الإطارات من البداية | diff --git a/comfyui_embedded_docs/docs/TrimVideoLatent/pt-BR.md b/comfyui_embedded_docs/docs/TrimVideoLatent/pt-BR.md index bef5b1295..eacf1b41b 100644 --- a/comfyui_embedded_docs/docs/TrimVideoLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/TrimVideoLatent/pt-BR.md @@ -13,4 +13,4 @@ O nó TrimVideoLatent remove quadros do início de uma representação latente d | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `output` | LATENT | A representação latente de vídeo cortada, com o número especificado de quadros removidos do início | \ No newline at end of file +| `output` | LATENT | A representação latente de vídeo cortada, com o número especificado de quadros removidos do início | diff --git a/comfyui_embedded_docs/docs/TrimVideoLatent/tr.md b/comfyui_embedded_docs/docs/TrimVideoLatent/tr.md index 8ef667682..4421a8918 100644 --- a/comfyui_embedded_docs/docs/TrimVideoLatent/tr.md +++ b/comfyui_embedded_docs/docs/TrimVideoLatent/tr.md @@ -13,4 +13,4 @@ TrimVideoLatent düğümü, video latent temsilinin başından kareleri kaldır | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | LATENT | Başından belirtilen sayıda kare kaldırılmış, kırpılmış latent video temsili | \ No newline at end of file +| `output` | LATENT | Başından belirtilen sayıda kare kaldırılmış, kırpılmış latent video temsili | diff --git a/comfyui_embedded_docs/docs/TrimVideoLatent/zh-TW.md b/comfyui_embedded_docs/docs/TrimVideoLatent/zh-TW.md index dac75f2b0..f8a9e1aec 100644 --- a/comfyui_embedded_docs/docs/TrimVideoLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/TrimVideoLatent/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | LATENT | 裁切後的潛在影片表示,已從開頭移除指定數量的影格 | \ No newline at end of file +| `output` | LATENT | 裁切後的潛在影片表示,已從開頭移除指定數量的影格 | diff --git a/comfyui_embedded_docs/docs/TripleCLIPLoader/ar.md b/comfyui_embedded_docs/docs/TripleCLIPLoader/ar.md index a6e01733b..9f8cdc38f 100644 --- a/comfyui_embedded_docs/docs/TripleCLIPLoader/ar.md +++ b/comfyui_embedded_docs/docs/TripleCLIPLoader/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|--------------|--------| | `CLIP` | CLIP | نموذج CLIP مدمج يحتوي على مشفرات النص الثلاثة التي تم تحميلها | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/TripleCLIPLoader/pt-BR.md b/comfyui_embedded_docs/docs/TripleCLIPLoader/pt-BR.md index 47a7f52d6..b017ee3d8 100644 --- a/comfyui_embedded_docs/docs/TripleCLIPLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripleCLIPLoader/pt-BR.md @@ -16,4 +16,4 @@ O nó TripleCLIPLoader carrega três modelos diferentes de codificador de texto | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `CLIP` | CLIP | Um modelo CLIP combinado contendo todos os três codificadores de texto carregados | \ No newline at end of file +| `CLIP` | CLIP | Um modelo CLIP combinado contendo todos os três codificadores de texto carregados | diff --git a/comfyui_embedded_docs/docs/TripleCLIPLoader/tr.md b/comfyui_embedded_docs/docs/TripleCLIPLoader/tr.md index 56a5a843f..b2c5a2838 100644 --- a/comfyui_embedded_docs/docs/TripleCLIPLoader/tr.md +++ b/comfyui_embedded_docs/docs/TripleCLIPLoader/tr.md @@ -16,4 +16,4 @@ TripleCLIPLoader düğümü, üç farklı metin kodlayıcı modelini aynı anda | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `CLIP` | CLIP | Yüklenen her üç metin kodlayıcıyı da içeren birleşik bir CLIP modeli | \ No newline at end of file +| `CLIP` | CLIP | Yüklenen her üç metin kodlayıcıyı da içeren birleşik bir CLIP modeli | diff --git a/comfyui_embedded_docs/docs/TripleCLIPLoader/zh-TW.md b/comfyui_embedded_docs/docs/TripleCLIPLoader/zh-TW.md index 5889034e6..17e177f3f 100644 --- a/comfyui_embedded_docs/docs/TripleCLIPLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripleCLIPLoader/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `CLIP` | CLIP | 包含所有三個已載入文字編碼器的組合 CLIP 模型 | \ No newline at end of file +| `CLIP` | CLIP | 包含所有三個已載入文字編碼器的組合 CLIP 模型 | diff --git a/comfyui_embedded_docs/docs/TripoConversionNode/ar.md b/comfyui_embedded_docs/docs/TripoConversionNode/ar.md index 38fc3c157..6f5fb8999 100644 --- a/comfyui_embedded_docs/docs/TripoConversionNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoConversionNode/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| *لا توجد مخرجات مسماة* | - | تعالج هذه العقدة عملية التحويل بشكل غير متزامن وتُرجع النتيجة من خلال نظام Tripo API | \ No newline at end of file +| *لا توجد مخرجات مسماة* | - | تعالج هذه العقدة عملية التحويل بشكل غير متزامن وتُرجع النتيجة من خلال نظام Tripo API | diff --git a/comfyui_embedded_docs/docs/TripoConversionNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoConversionNode/pt-BR.md index e9109b2d6..8c90ca633 100644 --- a/comfyui_embedded_docs/docs/TripoConversionNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoConversionNode/pt-BR.md @@ -19,4 +19,4 @@ O TripoConversionNode converte modelos 3D entre diferentes formatos de arquivo u | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| *Nenhuma saída nomeada* | - | Este nó processa a conversão de forma assíncrona e retorna o resultado através do sistema da API Tripo | \ No newline at end of file +| *Nenhuma saída nomeada* | - | Este nó processa a conversão de forma assíncrona e retorna o resultado através do sistema da API Tripo | diff --git a/comfyui_embedded_docs/docs/TripoConversionNode/tr.md b/comfyui_embedded_docs/docs/TripoConversionNode/tr.md index 18056f26f..2144536e2 100644 --- a/comfyui_embedded_docs/docs/TripoConversionNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoConversionNode/tr.md @@ -19,4 +19,4 @@ TripoConversionNode, Tripo API'sini kullanarak 3B modelleri farklı dosya format | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| *İsimlendirilmiş çıktı yok* | - | Bu düğüm, dönüşümü eşzamansız olarak işler ve sonucu Tripo API sistemi aracılığıyla döndürür | \ No newline at end of file +| *İsimlendirilmiş çıktı yok* | - | Bu düğüm, dönüşümü eşzamansız olarak işler ve sonucu Tripo API sistemi aracılığıyla döndürür | diff --git a/comfyui_embedded_docs/docs/TripoConversionNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoConversionNode/zh-TW.md index 8b14e8b44..84118b1b1 100644 --- a/comfyui_embedded_docs/docs/TripoConversionNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoConversionNode/zh-TW.md @@ -19,4 +19,4 @@ TripoConversionNode 使用 Tripo API 在不同檔案格式之間轉換 3D 模型 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| *無命名輸出* | - | 此節點以非同步方式處理轉換,並透過 Tripo API 系統返回結果 | \ No newline at end of file +| *無命名輸出* | - | 此節點以非同步方式處理轉換,並透過 Tripo API 系統返回結果 | diff --git a/comfyui_embedded_docs/docs/TripoImageToModelNode/ar.md b/comfyui_embedded_docs/docs/TripoImageToModelNode/ar.md index a62f3a8db..e0deac7ea 100644 --- a/comfyui_embedded_docs/docs/TripoImageToModelNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoImageToModelNode/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `model_file` | STRING | ملف النموذج ثلاثي الأبعاد المُولد | -| `model task_id` | MODEL_TASK_ID | معرف المهمة لتتبع عملية توليد النموذج | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | معرف المهمة لتتبع عملية توليد النموذج | diff --git a/comfyui_embedded_docs/docs/TripoImageToModelNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoImageToModelNode/pt-BR.md index 7057b4bf4..e0dc2e8b0 100644 --- a/comfyui_embedded_docs/docs/TripoImageToModelNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoImageToModelNode/pt-BR.md @@ -26,4 +26,4 @@ Gera modelos 3D de forma síncrona com base em uma única imagem usando a API do | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O arquivo do modelo 3D gerado | -| `model task_id` | MODEL_TASK_ID | O ID da tarefa para rastrear o processo de geração do modelo | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | O ID da tarefa para rastrear o processo de geração do modelo | diff --git a/comfyui_embedded_docs/docs/TripoImageToModelNode/tr.md b/comfyui_embedded_docs/docs/TripoImageToModelNode/tr.md index fb134162a..ab9d84fd9 100644 --- a/comfyui_embedded_docs/docs/TripoImageToModelNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoImageToModelNode/tr.md @@ -26,4 +26,4 @@ Tek bir görüntüye dayalı olarak Tripo'nun API'sini kullanarak 3B modelleri e | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Oluşturulan 3B model dosyası | -| `model task_id` | MODEL_TASK_ID | Model oluşturma sürecini takip etmek için görev kimliği | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | Model oluşturma sürecini takip etmek için görev kimliği | diff --git a/comfyui_embedded_docs/docs/TripoImageToModelNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoImageToModelNode/zh-TW.md index 969001ed6..552fd7e74 100644 --- a/comfyui_embedded_docs/docs/TripoImageToModelNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoImageToModelNode/zh-TW.md @@ -26,4 +26,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `model_file` | STRING | 生成的 3D 模型檔案 | -| `model task_id` | MODEL_TASK_ID | 用於追蹤模型生成過程的任務 ID | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | 用於追蹤模型生成過程的任務 ID | diff --git a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/ar.md b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/ar.md index f252c6164..886c7d77f 100644 --- a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/ar.md @@ -28,4 +28,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|--------------|--------| | `model_file` | STRING | مسار الملف أو المُعرّف للنموذج ثلاثي الأبعاد المُولد | -| `model task_id` | MODEL_TASK_ID | مُعرّف المهمة لتتبع عملية توليد النموذج | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | مُعرّف المهمة لتتبع عملية توليد النموذج | diff --git a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/pt-BR.md index a2fa0b205..025f0df0b 100644 --- a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/pt-BR.md @@ -28,4 +28,4 @@ Este nó gera modelos 3D de forma síncrona usando a API da Tripo, processando a | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | Caminho do arquivo ou identificador para o modelo 3D gerado | -| `model task_id` | MODEL_TASK_ID | Identificador da tarefa para rastrear o processo de geração do modelo | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | Identificador da tarefa para rastrear o processo de geração do modelo | diff --git a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/tr.md b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/tr.md index 3f2c3c57d..af2ab05b3 100644 --- a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/tr.md @@ -28,4 +28,4 @@ Bu düğüm, bir nesnenin farklı görünümlerini gösteren en fazla dört gör | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Oluşturulan 3B model için dosya yolu veya tanımlayıcı | -| `model task_id` | MODEL_TASK_ID | Model oluşturma sürecini takip etmek için görev tanımlayıcısı | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | Model oluşturma sürecini takip etmek için görev tanımlayıcısı | diff --git a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/zh-TW.md index 7a784678a..fa071647d 100644 --- a/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoMultiviewToModelNode/zh-TW.md @@ -28,4 +28,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `model_file` | STRING | 生成的 3D 模型的檔案路徑或識別碼 | -| `model task_id` | MODEL_TASK_ID | 用於追蹤模型生成過程的任務識別碼 | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | 用於追蹤模型生成過程的任務識別碼 | diff --git a/comfyui_embedded_docs/docs/TripoRefineNode/ar.md b/comfyui_embedded_docs/docs/TripoRefineNode/ar.md index 70f7eb47c..8cb84bf3e 100644 --- a/comfyui_embedded_docs/docs/TripoRefineNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoRefineNode/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |--------------|--------------|--------| | `model_file` | STRING | مسار الملف أو المرجع للنموذج المُحسّن | -| `model_task_id` | MODEL_TASK_ID | مُعرف المهمة لعملية النموذج المُحسّن | \ No newline at end of file +| `model_task_id` | MODEL_TASK_ID | مُعرف المهمة لعملية النموذج المُحسّن | diff --git a/comfyui_embedded_docs/docs/TripoRefineNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoRefineNode/pt-BR.md index 614de55b1..3ba85b9d4 100644 --- a/comfyui_embedded_docs/docs/TripoRefineNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoRefineNode/pt-BR.md @@ -18,4 +18,4 @@ O TripoRefineNode refina modelos 3D preliminares criados especificamente pelos m | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O caminho do arquivo ou referência para o modelo refinado | -| `model task_id` | MODEL_TASK_ID | O identificador da tarefa para a operação de refinamento do modelo | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | O identificador da tarefa para a operação de refinamento do modelo | diff --git a/comfyui_embedded_docs/docs/TripoRefineNode/tr.md b/comfyui_embedded_docs/docs/TripoRefineNode/tr.md index e1fbfe89a..f575ae528 100644 --- a/comfyui_embedded_docs/docs/TripoRefineNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoRefineNode/tr.md @@ -18,4 +18,4 @@ TripoRefineNode, özellikle v1.4 Tripo modelleri tarafından oluşturulan taslak | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | İyileştirilmiş modelin dosya yolu veya referansı | -| `model task_id` | MODEL_TASK_ID | İyileştirilmiş model işlemi için görev tanımlayıcısı | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | İyileştirilmiş model işlemi için görev tanımlayıcısı | diff --git a/comfyui_embedded_docs/docs/TripoRefineNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoRefineNode/zh-TW.md index e1470a8f2..9a8420d56 100644 --- a/comfyui_embedded_docs/docs/TripoRefineNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoRefineNode/zh-TW.md @@ -18,4 +18,4 @@ TripoRefineNode 專門用於精煉由 v1.4 Tripo 模型創建的 3D 草稿模型 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `model_file` | STRING | 精煉後模型的檔案路徑或參考 | -| `model task_id` | MODEL_TASK_ID | 精煉模型操作的任務識別碼 | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | 精煉模型操作的任務識別碼 | diff --git a/comfyui_embedded_docs/docs/TripoRetargetNode/ar.md b/comfyui_embedded_docs/docs/TripoRetargetNode/ar.md index 3cb5998f1..927b35e2e 100644 --- a/comfyui_embedded_docs/docs/TripoRetargetNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoRetargetNode/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `model_file` | STRING | ملف النموذج الثلاثي الأبعاد المتحرك المُنشأ | -| `retarget task_id` | RETARGET_TASK_ID | معرف المهمة لتتبع عملية إعادة التوجيه | \ No newline at end of file +| `retarget task_id` | RETARGET_TASK_ID | معرف المهمة لتتبع عملية إعادة التوجيه | diff --git a/comfyui_embedded_docs/docs/TripoRetargetNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoRetargetNode/pt-BR.md index 551c51a1e..ef07bba1c 100644 --- a/comfyui_embedded_docs/docs/TripoRetargetNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoRetargetNode/pt-BR.md @@ -17,4 +17,4 @@ O TripoRetargetNode aplica animações predefinidas a modelos de personagens 3D | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O arquivo do modelo 3D animado gerado | -| `retarget task_id` | RETARGET_TASK_ID | O ID da tarefa para rastrear a operação de redirecionamento | \ No newline at end of file +| `retarget task_id` | RETARGET_TASK_ID | O ID da tarefa para rastrear a operação de redirecionamento | diff --git a/comfyui_embedded_docs/docs/TripoRetargetNode/tr.md b/comfyui_embedded_docs/docs/TripoRetargetNode/tr.md index 7b06db5f2..7707acbb2 100644 --- a/comfyui_embedded_docs/docs/TripoRetargetNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoRetargetNode/tr.md @@ -17,4 +17,4 @@ TripoRetargetNode, önceden tanımlanmış animasyonları 3B karakter modellerin | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Oluşturulan animasyonlu 3B model dosyası | -| `retarget task_id` | RETARGET_TASK_ID | Yeniden hedefleme işlemini takip etmek için görev kimliği | \ No newline at end of file +| `retarget task_id` | RETARGET_TASK_ID | Yeniden hedefleme işlemini takip etmek için görev kimliği | diff --git a/comfyui_embedded_docs/docs/TripoRetargetNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoRetargetNode/zh-TW.md index 9793e13d1..4434e014e 100644 --- a/comfyui_embedded_docs/docs/TripoRetargetNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoRetargetNode/zh-TW.md @@ -17,4 +17,4 @@ TripoRetargetNode 透過重新定向動作資料,將預先定義的動畫套 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `model_file` | STRING | 已生成的帶動畫 3D 模型檔案 | -| `retarget task_id` | RETARGET_TASK_ID | 用於追蹤重新定向操作的任務 ID | \ No newline at end of file +| `retarget task_id` | RETARGET_TASK_ID | 用於追蹤重新定向操作的任務 ID | diff --git a/comfyui_embedded_docs/docs/TripoRigNode/ar.md b/comfyui_embedded_docs/docs/TripoRigNode/ar.md index 27b6305ea..29fc4f33a 100644 --- a/comfyui_embedded_docs/docs/TripoRigNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoRigNode/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `model_file` | STRING | ملف النموذج ثلاثي الأبعاد المُجهز بالهيكلة العظمية الذي تم إنشاؤه | -| `rig task_id` | RIG_TASK_ID | معرف المهمة المستخدم لتتبع عملية إنشاء الهيكلة العظمية | \ No newline at end of file +| `rig task_id` | RIG_TASK_ID | معرف المهمة المستخدم لتتبع عملية إنشاء الهيكلة العظمية | diff --git a/comfyui_embedded_docs/docs/TripoRigNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoRigNode/pt-BR.md index 8c355ca4d..8f4625429 100644 --- a/comfyui_embedded_docs/docs/TripoRigNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoRigNode/pt-BR.md @@ -16,4 +16,4 @@ O TripoRigNode gera um modelo 3D com rig a partir de um ID de tarefa de modelo o | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O arquivo do modelo 3D rigado gerado | -| `rig task_id` | RIG_TASK_ID | O ID da tarefa para rastrear o processo de geração do rig | \ No newline at end of file +| `rig task_id` | RIG_TASK_ID | O ID da tarefa para rastrear o processo de geração do rig | diff --git a/comfyui_embedded_docs/docs/TripoRigNode/tr.md b/comfyui_embedded_docs/docs/TripoRigNode/tr.md index 70e2a8de4..e44633367 100644 --- a/comfyui_embedded_docs/docs/TripoRigNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoRigNode/tr.md @@ -16,4 +16,4 @@ TripoRigNode, orijinal model görev kimliğinden riglenmiş bir 3B model oluştu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Oluşturulan riglenmiş 3B model dosyası | -| `rig task_id` | RIG_TASK_ID | Rig oluşturma sürecini takip etmek için görev kimliği | \ No newline at end of file +| `rig task_id` | RIG_TASK_ID | Rig oluşturma sürecini takip etmek için görev kimliği | diff --git a/comfyui_embedded_docs/docs/TripoRigNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoRigNode/zh-TW.md index 99fc03c69..6cc5d2345 100644 --- a/comfyui_embedded_docs/docs/TripoRigNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoRigNode/zh-TW.md @@ -16,4 +16,4 @@ TripoRigNode 可根據原始模型任務 ID 生成帶有骨架綁定的 3D 模 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `model_file` | STRING | 生成的帶有骨架綁定的 3D 模型檔案 | -| `rig task_id` | RIG_TASK_ID | 用於追蹤骨架生成過程的任務 ID | \ No newline at end of file +| `rig task_id` | RIG_TASK_ID | 用於追蹤骨架生成過程的任務 ID | diff --git a/comfyui_embedded_docs/docs/TripoTextToModelNode/ar.md b/comfyui_embedded_docs/docs/TripoTextToModelNode/ar.md index 35ad86b7b..4802ecc78 100644 --- a/comfyui_embedded_docs/docs/TripoTextToModelNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoTextToModelNode/ar.md @@ -26,4 +26,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `model_file` | STRING | ملف النموذج ثلاثي الأبعاد المُنشأ | -| `model task_id` | MODEL_TASK_ID | المعرف الفريد للمهمة لعملية إنشاء النموذج | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | المعرف الفريد للمهمة لعملية إنشاء النموذج | diff --git a/comfyui_embedded_docs/docs/TripoTextToModelNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoTextToModelNode/pt-BR.md index 63c1b95c4..e5cfde1b1 100644 --- a/comfyui_embedded_docs/docs/TripoTextToModelNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoTextToModelNode/pt-BR.md @@ -26,4 +26,4 @@ Gera modelos 3D de forma síncrona com base em um prompt de texto usando a API d | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O arquivo do modelo 3D gerado | -| `model task_id` | MODEL_TASK_ID | O identificador único da tarefa para o processo de geração do modelo | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | O identificador único da tarefa para o processo de geração do modelo | diff --git a/comfyui_embedded_docs/docs/TripoTextToModelNode/tr.md b/comfyui_embedded_docs/docs/TripoTextToModelNode/tr.md index 66d6cb3da..4e621a134 100644 --- a/comfyui_embedded_docs/docs/TripoTextToModelNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoTextToModelNode/tr.md @@ -26,4 +26,4 @@ Metin açıklamasına dayanarak Tripo'nun API'sini kullanarak 3B modelleri eşza | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Oluşturulan 3B model dosyası | -| `model task_id` | MODEL_TASK_ID | Model oluşturma süreci için benzersiz görev tanımlayıcısı | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | Model oluşturma süreci için benzersiz görev tanımlayıcısı | diff --git a/comfyui_embedded_docs/docs/TripoTextToModelNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoTextToModelNode/zh-TW.md index 37451dd35..e0188b549 100644 --- a/comfyui_embedded_docs/docs/TripoTextToModelNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoTextToModelNode/zh-TW.md @@ -26,4 +26,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `model_file` | STRING | 生成的 3D 模型檔案 | -| `model task_id` | MODEL_TASK_ID | 模型生成過程的唯一任務識別碼 | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | 模型生成過程的唯一任務識別碼 | diff --git a/comfyui_embedded_docs/docs/TripoTextureNode/ar.md b/comfyui_embedded_docs/docs/TripoTextureNode/ar.md index 5f4970f43..e4ad5ed25 100644 --- a/comfyui_embedded_docs/docs/TripoTextureNode/ar.md +++ b/comfyui_embedded_docs/docs/TripoTextureNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `model_file` | STRING | ملف النموذج المُولد مع القوام المُطبق | -| `model task_id` | MODEL_TASK_ID | معرف المهمة لتتبع عملية توليد القوام | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | معرف المهمة لتتبع عملية توليد القوام | diff --git a/comfyui_embedded_docs/docs/TripoTextureNode/pt-BR.md b/comfyui_embedded_docs/docs/TripoTextureNode/pt-BR.md index e1259d550..cf9730f8f 100644 --- a/comfyui_embedded_docs/docs/TripoTextureNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/TripoTextureNode/pt-BR.md @@ -20,4 +20,4 @@ O TripoTextureNode gera modelos 3D texturizados usando a API Tripo. Ele recebe u | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `model_file` | STRING | O arquivo de modelo gerado com as texturas aplicadas | -| `model task_id` | MODEL_TASK_ID | O ID da tarefa para rastrear o processo de geração de textura | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | O ID da tarefa para rastrear o processo de geração de textura | diff --git a/comfyui_embedded_docs/docs/TripoTextureNode/tr.md b/comfyui_embedded_docs/docs/TripoTextureNode/tr.md index e53000364..3dff46a7f 100644 --- a/comfyui_embedded_docs/docs/TripoTextureNode/tr.md +++ b/comfyui_embedded_docs/docs/TripoTextureNode/tr.md @@ -20,4 +20,4 @@ TripoTextureNode, Tripo API'sini kullanarak dokulu 3B modeller oluşturur. Bir m | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `model_file` | STRING | Uygulanan dokulara sahip oluşturulan model dosyası | -| `model task_id` | MODEL_TASK_ID | Doku oluşturma sürecini takip etmek için görev kimliği | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | Doku oluşturma sürecini takip etmek için görev kimliği | diff --git a/comfyui_embedded_docs/docs/TripoTextureNode/zh-TW.md b/comfyui_embedded_docs/docs/TripoTextureNode/zh-TW.md index e48987168..d4aa0c350 100644 --- a/comfyui_embedded_docs/docs/TripoTextureNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/TripoTextureNode/zh-TW.md @@ -20,4 +20,4 @@ TripoTextureNode 使用 Tripo API 生成帶有紋理的 3D 模型。它接收一 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `model_file` | STRING | 已應用紋理的生成模型檔案 | -| `model task_id` | MODEL_TASK_ID | 用於追蹤紋理生成過程的任務 ID | \ No newline at end of file +| `model task_id` | MODEL_TASK_ID | 用於追蹤紋理生成過程的任務 ID | diff --git a/comfyui_embedded_docs/docs/TruncateText/ar.md b/comfyui_embedded_docs/docs/TruncateText/ar.md index 0f3072caa..17f8d1a79 100644 --- a/comfyui_embedded_docs/docs/TruncateText/ar.md +++ b/comfyui_embedded_docs/docs/TruncateText/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `string` | STRING | النص المقصوص، الذي يحتوي فقط على أول `max_length` حرفًا من المدخل. | \ No newline at end of file +| `string` | STRING | النص المقصوص، الذي يحتوي فقط على أول `max_length` حرفًا من المدخل. | diff --git a/comfyui_embedded_docs/docs/TruncateText/en.md b/comfyui_embedded_docs/docs/TruncateText/en.md index f90ae9ea6..af0e5bdbf 100644 --- a/comfyui_embedded_docs/docs/TruncateText/en.md +++ b/comfyui_embedded_docs/docs/TruncateText/en.md @@ -13,4 +13,4 @@ This node shortens text by cutting it off at a specified maximum length. It take | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `string` | STRING | The truncated text, containing only the first `max_length` characters from the input. | \ No newline at end of file +| `string` | STRING | The truncated text, containing only the first `max_length` characters from the input. | diff --git a/comfyui_embedded_docs/docs/TruncateText/es.md b/comfyui_embedded_docs/docs/TruncateText/es.md index 2dc2e4c1c..5c91c5442 100644 --- a/comfyui_embedded_docs/docs/TruncateText/es.md +++ b/comfyui_embedded_docs/docs/TruncateText/es.md @@ -13,4 +13,4 @@ Este nodo acorta texto recortándolo a una longitud máxima especificada. Toma c | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `string` | STRING | El texto truncado, que contiene solo los primeros `max_length` caracteres de la entrada. | \ No newline at end of file +| `string` | STRING | El texto truncado, que contiene solo los primeros `max_length` caracteres de la entrada. | diff --git a/comfyui_embedded_docs/docs/TruncateText/fr.md b/comfyui_embedded_docs/docs/TruncateText/fr.md index 9b6e8a5c8..d85f9c2dc 100644 --- a/comfyui_embedded_docs/docs/TruncateText/fr.md +++ b/comfyui_embedded_docs/docs/TruncateText/fr.md @@ -13,4 +13,4 @@ Ce nœud raccourcit un texte en le tronquant à une longueur maximale spécifié | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `string` | STRING | Le texte tronqué, contenant uniquement les premiers `max_length` caractères de l'entrée. | \ No newline at end of file +| `string` | STRING | Le texte tronqué, contenant uniquement les premiers `max_length` caractères de l'entrée. | diff --git a/comfyui_embedded_docs/docs/TruncateText/ja.md b/comfyui_embedded_docs/docs/TruncateText/ja.md index eba584f9c..840a2e6fc 100644 --- a/comfyui_embedded_docs/docs/TruncateText/ja.md +++ b/comfyui_embedded_docs/docs/TruncateText/ja.md @@ -13,4 +13,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `string` | STRING | 切り詰められたテキストです。入力の最初の `max_length` 文字のみを含みます。 | \ No newline at end of file +| `string` | STRING | 切り詰められたテキストです。入力の最初の `max_length` 文字のみを含みます。 | diff --git a/comfyui_embedded_docs/docs/TruncateText/ko.md b/comfyui_embedded_docs/docs/TruncateText/ko.md index 3026625a1..d8588924c 100644 --- a/comfyui_embedded_docs/docs/TruncateText/ko.md +++ b/comfyui_embedded_docs/docs/TruncateText/ko.md @@ -13,4 +13,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `string` | STRING | 잘린 텍스트로, 입력에서 처음 `max_length`개의 문자만 포함합니다. | \ No newline at end of file +| `string` | STRING | 잘린 텍스트로, 입력에서 처음 `max_length`개의 문자만 포함합니다. | diff --git a/comfyui_embedded_docs/docs/TruncateText/pt-BR.md b/comfyui_embedded_docs/docs/TruncateText/pt-BR.md index 7fd9bc308..2b7f11c7b 100644 --- a/comfyui_embedded_docs/docs/TruncateText/pt-BR.md +++ b/comfyui_embedded_docs/docs/TruncateText/pt-BR.md @@ -13,4 +13,4 @@ Este nó encurta textos cortando-os em um comprimento máximo especificado. Ele | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `string` | STRING | O texto truncado, contendo apenas os primeiros `max_length` caracteres da entrada. | \ No newline at end of file +| `string` | STRING | O texto truncado, contendo apenas os primeiros `max_length` caracteres da entrada. | diff --git a/comfyui_embedded_docs/docs/TruncateText/ru.md b/comfyui_embedded_docs/docs/TruncateText/ru.md index 57365f1ac..488af226c 100644 --- a/comfyui_embedded_docs/docs/TruncateText/ru.md +++ b/comfyui_embedded_docs/docs/TruncateText/ru.md @@ -13,4 +13,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `string` | STRING | Усечённый текст, содержащий только первые `max_length` символов из входных данных. | \ No newline at end of file +| `string` | STRING | Усечённый текст, содержащий только первые `max_length` символов из входных данных. | diff --git a/comfyui_embedded_docs/docs/TruncateText/tr.md b/comfyui_embedded_docs/docs/TruncateText/tr.md index e21c51af5..2f9c0f391 100644 --- a/comfyui_embedded_docs/docs/TruncateText/tr.md +++ b/comfyui_embedded_docs/docs/TruncateText/tr.md @@ -13,4 +13,4 @@ Bu düğüm, metni belirtilen maksimum uzunlukta keserek kısaltır. Herhangi bi | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `string` | STRING | Kısaltılmış metin, girişten yalnızca ilk `max_length` karakterini içerir. | \ No newline at end of file +| `string` | STRING | Kısaltılmış metin, girişten yalnızca ilk `max_length` karakterini içerir. | diff --git a/comfyui_embedded_docs/docs/TruncateText/zh-TW.md b/comfyui_embedded_docs/docs/TruncateText/zh-TW.md index 8d0f96f98..e543be5d4 100644 --- a/comfyui_embedded_docs/docs/TruncateText/zh-TW.md +++ b/comfyui_embedded_docs/docs/TruncateText/zh-TW.md @@ -13,4 +13,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `string` | STRING | 截斷後的文字,僅包含輸入中前 `max_length` 個字元。 | \ No newline at end of file +| `string` | STRING | 截斷後的文字,僅包含輸入中前 `max_length` 個字元。 | diff --git a/comfyui_embedded_docs/docs/TruncateText/zh.md b/comfyui_embedded_docs/docs/TruncateText/zh.md index cc9631395..70ef36c1f 100644 --- a/comfyui_embedded_docs/docs/TruncateText/zh.md +++ b/comfyui_embedded_docs/docs/TruncateText/zh.md @@ -13,4 +13,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `string` | STRING | 截断后的文本,仅包含输入文本的前 `max_length` 个字符。 | \ No newline at end of file +| `string` | STRING | 截断后的文本,仅包含输入文本的前 `max_length` 个字符。 | diff --git a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/ar.md b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/ar.md index 0c20342d8..fc2e99452 100644 --- a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/ar.md +++ b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | نموذج UNet المعدل مع مكونات انتباه مُتقاطع مُقاسة | \ No newline at end of file +| `النموذج` | MODEL | نموذج UNet المعدل مع مكونات انتباه مُتقاطع مُقاسة | diff --git a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/pt-BR.md b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/pt-BR.md index 507962699..2271ffd0b 100644 --- a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/pt-BR.md +++ b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/pt-BR.md @@ -16,4 +16,4 @@ O nó UNetCrossAttentionMultiply aplica fatores de multiplicação ao mecanismo | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo UNet modificado com os componentes de atenção cruzada escalados | \ No newline at end of file +| `model` | MODEL | O modelo UNet modificado com os componentes de atenção cruzada escalados | diff --git a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/tr.md b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/tr.md index faf080d6d..880b58609 100644 --- a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/tr.md +++ b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/tr.md @@ -16,4 +16,4 @@ UNetCrossAttentionMultiply düğümü, bir UNet modelindeki çapraz dikkat mekan | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Ölçeklendirilmiş çapraz dikkat bileşenlerine sahip değiştirilmiş UNet modeli | \ No newline at end of file +| `model` | MODEL | Ölçeklendirilmiş çapraz dikkat bileşenlerine sahip değiştirilmiş UNet modeli | diff --git a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/zh-TW.md b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/zh-TW.md index 4cbb907ea..bd0008002 100644 --- a/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/zh-TW.md +++ b/comfyui_embedded_docs/docs/UNetCrossAttentionMultiply/zh-TW.md @@ -16,4 +16,4 @@ UNetCrossAttentionMultiply 節點對 UNet 模型中的交叉注意力機制應 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 具有縮放後交叉注意力組件的修改後 UNet 模型 | \ No newline at end of file +| `model` | MODEL | 具有縮放後交叉注意力組件的修改後 UNet 模型 | diff --git a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/ar.md b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/ar.md index ae232a36a..827dd233a 100644 --- a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/ar.md +++ b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/ar.md @@ -16,4 +16,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `MODEL` | MODEL | نموذج UNet المعدل مع مكونات انتباه مُحجّمة | \ No newline at end of file +| `MODEL` | MODEL | نموذج UNet المعدل مع مكونات انتباه مُحجّمة | diff --git a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/pt-BR.md b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/pt-BR.md index 3ceaf52b5..5a7434209 100644 --- a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/pt-BR.md +++ b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/pt-BR.md @@ -16,4 +16,4 @@ O nó UNetSelfAttentionMultiply aplica fatores de multiplicação aos componente | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `MODEL` | MODEL | O modelo UNet modificado com os componentes de atenção escalados | \ No newline at end of file +| `MODEL` | MODEL | O modelo UNet modificado com os componentes de atenção escalados | diff --git a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/tr.md b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/tr.md index 1ab90f519..17427b396 100644 --- a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/tr.md +++ b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/tr.md @@ -16,4 +16,4 @@ UNetSelfAttentionMultiply düğümü, bir UNet modelindeki öz-dikkat mekanizmas | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `MODEL` | MODEL | Ölçeklendirilmiş dikkat bileşenlerine sahip değiştirilmiş UNet modeli | \ No newline at end of file +| `MODEL` | MODEL | Ölçeklendirilmiş dikkat bileşenlerine sahip değiştirilmiş UNet modeli | diff --git a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/zh-TW.md b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/zh-TW.md index e8a2f042d..140961630 100644 --- a/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/zh-TW.md +++ b/comfyui_embedded_docs/docs/UNetSelfAttentionMultiply/zh-TW.md @@ -16,4 +16,4 @@ UNetSelfAttentionMultiply 節點對 UNet 模型中的自注意力機制的查詢 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `MODEL` | MODEL | 帶有縮放注意力組件的修改後 UNet 模型 | \ No newline at end of file +| `MODEL` | MODEL | 帶有縮放注意力組件的修改後 UNet 模型 | diff --git a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/ar.md b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/ar.md index e3115d144..09f1da7c7 100644 --- a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/ar.md +++ b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/ar.md @@ -16,4 +16,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع أوزان انتباه مضبوطة | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع أوزان انتباه مضبوطة | diff --git a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/pt-BR.md b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/pt-BR.md index 04409fef9..6187a5fca 100644 --- a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/pt-BR.md +++ b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/pt-BR.md @@ -16,4 +16,4 @@ O nó UNetTemporalAttentionMultiply aplica fatores de multiplicação a diferent | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com os pesos de atenção ajustados | \ No newline at end of file +| `model` | MODEL | O modelo modificado com os pesos de atenção ajustados | diff --git a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/tr.md b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/tr.md index 5fbb778dc..30c5b4cb4 100644 --- a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/tr.md +++ b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/tr.md @@ -16,4 +16,4 @@ UNetTemporalAttentionMultiply düğümü, zamansal bir UNet modelindeki farklı | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Ayarlanmış dikkat ağırlıklarına sahip değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Ayarlanmış dikkat ağırlıklarına sahip değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/zh-TW.md b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/zh-TW.md index 98c35a795..a11c7d98c 100644 --- a/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/zh-TW.md +++ b/comfyui_embedded_docs/docs/UNetTemporalAttentionMultiply/zh-TW.md @@ -16,4 +16,4 @@ UNetTemporalAttentionMultiply 節點用於對時序 UNet 模型中的不同類 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 經過調整注意力權重後的修改模型 | \ No newline at end of file +| `model` | MODEL | 經過調整注意力權重後的修改模型 | diff --git a/comfyui_embedded_docs/docs/USOStyleReference/ar.md b/comfyui_embedded_docs/docs/USOStyleReference/ar.md index fa1d1e8e0..86adccaf0 100644 --- a/comfyui_embedded_docs/docs/USOStyleReference/ar.md +++ b/comfyui_embedded_docs/docs/USOStyleReference/ar.md @@ -14,4 +14,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج المعدل مع تطبيق بَقع الأسلوب المرجعي | \ No newline at end of file +| `model` | MODEL | النموذج المعدل مع تطبيق بَقع الأسلوب المرجعي | diff --git a/comfyui_embedded_docs/docs/USOStyleReference/pt-BR.md b/comfyui_embedded_docs/docs/USOStyleReference/pt-BR.md index 29e96841d..a6f085561 100644 --- a/comfyui_embedded_docs/docs/USOStyleReference/pt-BR.md +++ b/comfyui_embedded_docs/docs/USOStyleReference/pt-BR.md @@ -14,4 +14,4 @@ O nó USOStyleReference aplica patches de referência de estilo a modelos usando | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com os patches de referência de estilo aplicados | \ No newline at end of file +| `model` | MODEL | O modelo modificado com os patches de referência de estilo aplicados | diff --git a/comfyui_embedded_docs/docs/USOStyleReference/tr.md b/comfyui_embedded_docs/docs/USOStyleReference/tr.md index b726b3c41..987ae6a81 100644 --- a/comfyui_embedded_docs/docs/USOStyleReference/tr.md +++ b/comfyui_embedded_docs/docs/USOStyleReference/tr.md @@ -14,4 +14,4 @@ USOStyleReference düğümü, CLIP görüntü çıktısından elde edilen kodlan | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Uygulanmış stil referans yamalarına sahip değiştirilmiş model | \ No newline at end of file +| `model` | MODEL | Uygulanmış stil referans yamalarına sahip değiştirilmiş model | diff --git a/comfyui_embedded_docs/docs/USOStyleReference/zh-TW.md b/comfyui_embedded_docs/docs/USOStyleReference/zh-TW.md index 9c2a3750c..cab8c034f 100644 --- a/comfyui_embedded_docs/docs/USOStyleReference/zh-TW.md +++ b/comfyui_embedded_docs/docs/USOStyleReference/zh-TW.md @@ -14,4 +14,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用風格參考修補程式的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用風格參考修補程式的修改後模型 | diff --git a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/ar.md b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/ar.md index 753cad3db..8d6f5a41e 100644 --- a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/ar.md +++ b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/ar.md @@ -17,4 +17,4 @@ | `model` | `MODEL` | يمثل النموذج الرئيسي الذي تم تحميله من نقطة التفتيش. | `torch.nn.Module` | | `clip` | `CLIP` | يمثل وحدة CLIP التي تم تحميلها من نقطة التفتيش، إذا كانت متوفرة. | `torch.nn.Module` | | `vae` | `VAE` | يمثل وحدة VAE التي تم تحميلها من نقطة التفتيش، إذا كانت متوفرة. | `torch.nn.Module` | -| `clip_vision` | `CLIP_VISION` | يمثل وحدة CLIP للرؤية التي تم تحميلها من نقطة التفتيش، إذا كانت متوفرة. | `torch.nn.Module` | \ No newline at end of file +| `clip_vision` | `CLIP_VISION` | يمثل وحدة CLIP للرؤية التي تم تحميلها من نقطة التفتيش، إذا كانت متوفرة. | `torch.nn.Module` | diff --git a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/pt-BR.md b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/pt-BR.md index a0a8cb8bc..cd5695d1f 100644 --- a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/pt-BR.md @@ -17,4 +17,4 @@ O nó unCLIPCheckpointLoader é projetado para carregar checkpoints especificame | `model` | `MODEL` | Representa o modelo principal carregado a partir do checkpoint. | `torch.nn.Module` | | `clip` | `CLIP` | Representa o módulo CLIP carregado a partir do checkpoint, se disponível. | `torch.nn.Module` | | `vae` | `VAE` | Representa o módulo VAE carregado a partir do checkpoint, se disponível. | `torch.nn.Module` | -| `clip_vision`| `CLIP_VISION` | Representa o módulo CLIP vision carregado a partir do checkpoint, se disponível. | `torch.nn.Module` | \ No newline at end of file +| `clip_vision`| `CLIP_VISION` | Representa o módulo CLIP vision carregado a partir do checkpoint, se disponível. | `torch.nn.Module` | diff --git a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/tr.md b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/tr.md index 91297a0f6..c55c2a317 100644 --- a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/tr.md +++ b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/tr.md @@ -17,4 +17,4 @@ unCLIPCheckpointLoader düğümü, özellikle unCLIP modelleri için uyarlanmı | `model` | `MODEL` | Kontrol noktasından yüklenen birincil modeli temsil eder. | `torch.nn.Module` | | `clip` | `CLIP` | Kontrol noktasından yüklenen CLIP modülünü temsil eder (mevcutsa). | `torch.nn.Module` | | `vae` | `VAE` | Kontrol noktasından yüklenen VAE modülünü temsil eder (mevcutsa). | `torch.nn.Module` | -| `clip_vision`| `CLIP_VISION` | Kontrol noktasından yüklenen CLIP görü modülünü temsil eder (mevcutsa). | `torch.nn.Module` | \ No newline at end of file +| `clip_vision`| `CLIP_VISION` | Kontrol noktasından yüklenen CLIP görü modülünü temsil eder (mevcutsa). | `torch.nn.Module` | diff --git a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/zh-TW.md b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/zh-TW.md index 1c844f65f..979356146 100644 --- a/comfyui_embedded_docs/docs/UnclipCheckpointLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/UnclipCheckpointLoader/zh-TW.md @@ -19,4 +19,4 @@ unCLIPCheckpointLoader 節點專為載入特別針對 unCLIP 模型設計的檢 | `model` | `MODEL` | 代表從檢查點載入的主要模型。 | `torch.nn.Module` | | `clip` | `CLIP` | 代表從檢查點載入的 CLIP 模組(如果可用)。 | `torch.nn.Module` | | `vae` | `VAE` | 代表從檢查點載入的 VAE 模組(如果可用)。 | `torch.nn.Module` | -| `clip_vision`| `CLIP_VISION` | 代表從檢查點載入的 CLIP 視覺模組(如果可用)。| `torch.nn.Module` | \ No newline at end of file +| `clip_vision`| `CLIP_VISION` | 代表從檢查點載入的 CLIP 視覺模組(如果可用)。| `torch.nn.Module` | diff --git a/comfyui_embedded_docs/docs/UnclipConditioning/ar.md b/comfyui_embedded_docs/docs/UnclipConditioning/ar.md index 783929cec..cc5186f76 100644 --- a/comfyui_embedded_docs/docs/UnclipConditioning/ar.md +++ b/comfyui_embedded_docs/docs/UnclipConditioning/ar.md @@ -15,4 +15,4 @@ | المعامل | النوع في Comfy | الوصف | |-------------------------|------------------------|-------| -| `التكييف` | `CONDITIONING` | بيانات التكييف المُثراة، والتي تحتوي الآن على مخرجات رؤية CLIP مدمجة مع تطبيق معاملات القوة وزيادة الضوضاء. | \ No newline at end of file +| `التكييف` | `CONDITIONING` | بيانات التكييف المُثراة، والتي تحتوي الآن على مخرجات رؤية CLIP مدمجة مع تطبيق معاملات القوة وزيادة الضوضاء. | diff --git a/comfyui_embedded_docs/docs/UnclipConditioning/pt-BR.md b/comfyui_embedded_docs/docs/UnclipConditioning/pt-BR.md index caac99429..88ec7636b 100644 --- a/comfyui_embedded_docs/docs/UnclipConditioning/pt-BR.md +++ b/comfyui_embedded_docs/docs/UnclipConditioning/pt-BR.md @@ -15,4 +15,4 @@ Este nó foi projetado para integrar as saídas de visão do CLIP no processo de | Parâmetro | Tipo Comfy | Descrição | |-----------------------|------------------------|-------------| -| `conditioning` | `CONDITIONING` | Os dados de condicionamento enriquecidos, agora contendo as saídas de visão do CLIP integradas com a força e o aumento de ruído aplicados. | \ No newline at end of file +| `conditioning` | `CONDITIONING` | Os dados de condicionamento enriquecidos, agora contendo as saídas de visão do CLIP integradas com a força e o aumento de ruído aplicados. | diff --git a/comfyui_embedded_docs/docs/UnclipConditioning/tr.md b/comfyui_embedded_docs/docs/UnclipConditioning/tr.md index babe73c9b..d041c541e 100644 --- a/comfyui_embedded_docs/docs/UnclipConditioning/tr.md +++ b/comfyui_embedded_docs/docs/UnclipConditioning/tr.md @@ -15,4 +15,4 @@ Bu düğüm, CLIP görüntü işleme çıktılarını koşullandırma sürecine | Parametre | Comfy Veri Türü | Açıklama | |----------------------|-----------------------|-------------| -| `koşullandırma` | `CONDITIONING` | Uygulanmış güç ve gürültü artırımı ile entegre edilmiş CLIP görüntü işleme çıktılarını içeren, zenginleştirilmiş koşullandırma verisi. | \ No newline at end of file +| `koşullandırma` | `CONDITIONING` | Uygulanmış güç ve gürültü artırımı ile entegre edilmiş CLIP görüntü işleme çıktılarını içeren, zenginleştirilmiş koşullandırma verisi. | diff --git a/comfyui_embedded_docs/docs/UnclipConditioning/zh-TW.md b/comfyui_embedded_docs/docs/UnclipConditioning/zh-TW.md index 173fc57d0..39e0da3ef 100644 --- a/comfyui_embedded_docs/docs/UnclipConditioning/zh-TW.md +++ b/comfyui_embedded_docs/docs/UnclipConditioning/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | Comfy 資料類型 | 描述 | |-----------------------|------------------------|-------------| -| `條件設定` | `CONDITIONING` | 經過增強的條件化數據,現在包含已應用強度和噪聲增強的整合 CLIP 視覺輸出。 | \ No newline at end of file +| `條件設定` | `CONDITIONING` | 經過增強的條件化數據,現在包含已應用強度和噪聲增強的整合 CLIP 視覺輸出。 | diff --git a/comfyui_embedded_docs/docs/UnetLoader/ar.md b/comfyui_embedded_docs/docs/UnetLoader/ar.md index 313b5eeef..1bc677cf9 100644 --- a/comfyui_embedded_docs/docs/UnetLoader/ar.md +++ b/comfyui_embedded_docs/docs/UnetLoader/ar.md @@ -17,4 +17,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| | `model` | MODEL | يُرجع نموذج U-Net الذي تم تحميله، مما يسمح باستخدامه لمزيد من المعالجة أو الاستدلال داخل النظام. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/UnetLoader/pt-BR.md b/comfyui_embedded_docs/docs/UnetLoader/pt-BR.md index a670bcf93..ed9fc000b 100644 --- a/comfyui_embedded_docs/docs/UnetLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/UnetLoader/pt-BR.md @@ -15,4 +15,4 @@ Este nó detectará modelos localizados na pasta `ComfyUI/models/diffusion_model | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | Retorna o modelo U-Net carregado, permitindo que ele seja utilizado para processamento adicional ou inferência dentro do sistema. | \ No newline at end of file +| `model` | MODEL | Retorna o modelo U-Net carregado, permitindo que ele seja utilizado para processamento adicional ou inferência dentro do sistema. | diff --git a/comfyui_embedded_docs/docs/UnetLoader/tr.md b/comfyui_embedded_docs/docs/UnetLoader/tr.md index 1c169c3bb..dc512839a 100644 --- a/comfyui_embedded_docs/docs/UnetLoader/tr.md +++ b/comfyui_embedded_docs/docs/UnetLoader/tr.md @@ -15,4 +15,4 @@ Bu düğüm, `ComfyUI/models/diffusion_models` klasöründe bulunan modelleri te | Parametre | Veri Tipi | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | Yüklenen U-Net modelini döndürür ve bu modelin sistem içinde daha fazla işleme veya çıkarım için kullanılmasına olanak tanır. | \ No newline at end of file +| `model` | MODEL | Yüklenen U-Net modelini döndürür ve bu modelin sistem içinde daha fazla işleme veya çıkarım için kullanılmasına olanak tanır. | diff --git a/comfyui_embedded_docs/docs/UnetLoader/zh-TW.md b/comfyui_embedded_docs/docs/UnetLoader/zh-TW.md index 0f0226da8..cfa3eb874 100644 --- a/comfyui_embedded_docs/docs/UnetLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/UnetLoader/zh-TW.md @@ -15,4 +15,4 @@ UNETLoader 節點專為透過名稱載入 U-Net 模型而設計,便於在系 | 參數名稱 | 資料類型 | 描述 | |----------|-------------|-------------| -| `model` | MODEL | 返回已載入的 U-Net 模型,使其可在系統中用於進一步處理或推論。 | \ No newline at end of file +| `model` | MODEL | 返回已載入的 U-Net 模型,使其可在系統中用於進一步處理或推論。 | diff --git a/comfyui_embedded_docs/docs/UpscaleModelLoader/ar.md b/comfyui_embedded_docs/docs/UpscaleModelLoader/ar.md index 74fc2eb35..4a3cf3b4a 100644 --- a/comfyui_embedded_docs/docs/UpscaleModelLoader/ar.md +++ b/comfyui_embedded_docs/docs/UpscaleModelLoader/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع Comfy | الوصف | |-------------------|---------------------|--------------------------------------------------------------------------| -| `upscale_model` | `UPSCALE_MODEL` | يُرجع نموذج التكبير الذي تم تحميله وإعداده، وجاهزًا للاستخدام في مهام تكبير الصور. | \ No newline at end of file +| `upscale_model` | `UPSCALE_MODEL` | يُرجع نموذج التكبير الذي تم تحميله وإعداده، وجاهزًا للاستخدام في مهام تكبير الصور. | diff --git a/comfyui_embedded_docs/docs/UpscaleModelLoader/pt-BR.md b/comfyui_embedded_docs/docs/UpscaleModelLoader/pt-BR.md index 071f739ea..67e05db32 100644 --- a/comfyui_embedded_docs/docs/UpscaleModelLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/UpscaleModelLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó UpscaleModelLoader é projetado para carregar modelos de super-resolução | Campo | Tipo Comfy | Descrição | |-------------------|---------------------|--------------------------------------------------------------------------| -| `upscale_model` | `UPSCALE_MODEL` | Retorna o modelo de upscale carregado e preparado, pronto para uso em tarefas de aumento de resolução de imagem. | \ No newline at end of file +| `upscale_model` | `UPSCALE_MODEL` | Retorna o modelo de upscale carregado e preparado, pronto para uso em tarefas de aumento de resolução de imagem. | diff --git a/comfyui_embedded_docs/docs/UpscaleModelLoader/tr.md b/comfyui_embedded_docs/docs/UpscaleModelLoader/tr.md index 4fc4bfa06..0f80a4dda 100644 --- a/comfyui_embedded_docs/docs/UpscaleModelLoader/tr.md +++ b/comfyui_embedded_docs/docs/UpscaleModelLoader/tr.md @@ -14,4 +14,4 @@ UpscaleModelLoader düğümü, belirli bir dizinden yükseltme modellerini yükl | Alan | Comfy Veri Türü | Açıklama | |-------------------|---------------------|--------------------------------------------------------------------------| -| `upscale_model` | `UPSCALE_MODEL` | Görüntü yükseltme görevlerinde kullanıma hazır, yüklenmiş ve hazırlanmış yükseltme modelini döndürür. | \ No newline at end of file +| `upscale_model` | `UPSCALE_MODEL` | Görüntü yükseltme görevlerinde kullanıma hazır, yüklenmiş ve hazırlanmış yükseltme modelini döndürür. | diff --git a/comfyui_embedded_docs/docs/UpscaleModelLoader/zh-TW.md b/comfyui_embedded_docs/docs/UpscaleModelLoader/zh-TW.md index dca8f6f3c..83f3080cd 100644 --- a/comfyui_embedded_docs/docs/UpscaleModelLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/UpscaleModelLoader/zh-TW.md @@ -16,4 +16,4 @@ UpscaleModelLoader 節點專為從指定目錄載入超解析度模型而設計 | 欄位 | Comfy 資料類型 | 描述 | |-----------------|---------------------|-------------------------------------------------------------------| -| `upscale_model` | `UPSCALE_MODEL` | 傳回已載入並準備就緒的超解析度模型,可用於影像超解析度任務。 | \ No newline at end of file +| `upscale_model` | `UPSCALE_MODEL` | 傳回已載入並準備就緒的超解析度模型,可用於影像超解析度任務。 | diff --git a/comfyui_embedded_docs/docs/VAEDecodeAudio/ar.md b/comfyui_embedded_docs/docs/VAEDecodeAudio/ar.md index 3f4fe94ef..cbd540235 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeAudio/ar.md +++ b/comfyui_embedded_docs/docs/VAEDecodeAudio/ar.md @@ -13,4 +13,4 @@ | اسم المُخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `AUDIO` | AUDIO | الشكل الموجي للصوت المفكوك تشفيره مع حجم صوت مُنظم ومعدل عينة يبلغ 44100 هرتز | \ No newline at end of file +| `AUDIO` | AUDIO | الشكل الموجي للصوت المفكوك تشفيره مع حجم صوت مُنظم ومعدل عينة يبلغ 44100 هرتز | diff --git a/comfyui_embedded_docs/docs/VAEDecodeAudio/pt-BR.md b/comfyui_embedded_docs/docs/VAEDecodeAudio/pt-BR.md index 539b9f0d1..e1e2a4063 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/VAEDecodeAudio/pt-BR.md @@ -13,4 +13,4 @@ O nó VAEDecodeAudio converte representações latentes de volta em formas de on | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | A forma de onda de áudio decodificada com volume normalizado e taxa de amostragem de 44100 Hz | \ No newline at end of file +| `AUDIO` | AUDIO | A forma de onda de áudio decodificada com volume normalizado e taxa de amostragem de 44100 Hz | diff --git a/comfyui_embedded_docs/docs/VAEDecodeAudio/tr.md b/comfyui_embedded_docs/docs/VAEDecodeAudio/tr.md index f765db1ec..ad322b1a2 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeAudio/tr.md +++ b/comfyui_embedded_docs/docs/VAEDecodeAudio/tr.md @@ -13,4 +13,4 @@ VAEDecodeAudio düğümü, gizli temsilleri varyasyonel otokodlayıcı kullanara | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | Normalleştirilmiş ses seviyesine ve 44100 Hz örnekleme hızına sahip çözülmüş ses dalga formu | \ No newline at end of file +| `AUDIO` | AUDIO | Normalleştirilmiş ses seviyesine ve 44100 Hz örnekleme hızına sahip çözülmüş ses dalga formu | diff --git a/comfyui_embedded_docs/docs/VAEDecodeAudio/zh-TW.md b/comfyui_embedded_docs/docs/VAEDecodeAudio/zh-TW.md index 0be7fb313..eee0d7c0f 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/VAEDecodeAudio/zh-TW.md @@ -13,4 +13,4 @@ VAEDecodeAudio 節點使用變分自編碼器將潛在表示轉換回音訊波 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `AUDIO` | AUDIO | 經過音量標準化處理且取樣率為 44100 Hz 的解碼音訊波形 | \ No newline at end of file +| `AUDIO` | AUDIO | 經過音量標準化處理且取樣率為 44100 Hz 的解碼音訊波形 | diff --git a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/ar.md b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/ar.md index 4e80d1c39..d930d3302 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/ar.md +++ b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `voxels` | VOXEL | بيانات المكعبات ثلاثية الأبعاد المُنتَجة من التمثيل الكامن الذي تم فك تشفيره | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/pt-BR.md b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/pt-BR.md index 2245d36ff..3479663af 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/pt-BR.md +++ b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/pt-BR.md @@ -15,4 +15,4 @@ O nó VAEDecodeHunyuan3D converte representações latentes em dados de voxel 3D | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `voxels` | VOXEL | Os dados de voxel 3D gerados a partir da representação latente decodificada | \ No newline at end of file +| `voxels` | VOXEL | Os dados de voxel 3D gerados a partir da representação latente decodificada | diff --git a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/tr.md b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/tr.md index 132737757..5082ac8c3 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/tr.md +++ b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/tr.md @@ -15,4 +15,4 @@ VAEDecodeHunyuan3D düğümü, gizli temsilleri bir VAE kod çözücü kullanara | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `voxels` | VOXEL | Çözülen gizli temsilden üretilen 3B voksel verisi | \ No newline at end of file +| `voxels` | VOXEL | Çözülen gizli temsilden üretilen 3B voksel verisi | diff --git a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/zh-TW.md b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/zh-TW.md index 84b8d4f99..72bbd7ef7 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/zh-TW.md +++ b/comfyui_embedded_docs/docs/VAEDecodeHunyuan3D/zh-TW.md @@ -15,4 +15,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `voxels` | VOXEL | 從解碼後的潛在表示生成的 3D 體素資料 | \ No newline at end of file +| `voxels` | VOXEL | 從解碼後的潛在表示生成的 3D 體素資料 | diff --git a/comfyui_embedded_docs/docs/VAEDecodeTiled/ar.md b/comfyui_embedded_docs/docs/VAEDecodeTiled/ar.md index 3e7e41fef..d0387d2c7 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeTiled/ar.md +++ b/comfyui_embedded_docs/docs/VAEDecodeTiled/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| | `IMAGE` | IMAGE | الصورة أو الصور الناتجة بعد فك تشفير التمثيل الكامن | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/VAEDecodeTiled/pt-BR.md b/comfyui_embedded_docs/docs/VAEDecodeTiled/pt-BR.md index fdd59e85a..7ccb305ec 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeTiled/pt-BR.md +++ b/comfyui_embedded_docs/docs/VAEDecodeTiled/pt-BR.md @@ -19,4 +19,4 @@ O nó VAEDecodeTiled decodifica representações latentes em imagens usando uma | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A imagem ou imagens decodificadas geradas a partir da representação latente | \ No newline at end of file +| `IMAGE` | IMAGE | A imagem ou imagens decodificadas geradas a partir da representação latente | diff --git a/comfyui_embedded_docs/docs/VAEDecodeTiled/tr.md b/comfyui_embedded_docs/docs/VAEDecodeTiled/tr.md index 12e6c9531..ddd8a54ce 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeTiled/tr.md +++ b/comfyui_embedded_docs/docs/VAEDecodeTiled/tr.md @@ -19,4 +19,4 @@ VAEDecodeTiled düğümü, büyük görüntüleri verimli bir şekilde işlemek | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Gizli temsilden oluşturulan dönüştürülmüş görüntü veya görüntüler | \ No newline at end of file +| `IMAGE` | IMAGE | Gizli temsilden oluşturulan dönüştürülmüş görüntü veya görüntüler | diff --git a/comfyui_embedded_docs/docs/VAEDecodeTiled/zh-TW.md b/comfyui_embedded_docs/docs/VAEDecodeTiled/zh-TW.md index 64cec2e54..adc9fa110 100644 --- a/comfyui_embedded_docs/docs/VAEDecodeTiled/zh-TW.md +++ b/comfyui_embedded_docs/docs/VAEDecodeTiled/zh-TW.md @@ -19,4 +19,4 @@ VAEDecodeTiled 節點使用分塊方法將潛在表示解碼為圖像,能有 | 輸出名稱 | 資料類型 | 參數說明 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 從潛在表示生成的解碼圖像或圖像序列 | \ No newline at end of file +| `IMAGE` | IMAGE | 從潛在表示生成的解碼圖像或圖像序列 | diff --git a/comfyui_embedded_docs/docs/VAEEncodeAudio/ar.md b/comfyui_embedded_docs/docs/VAEEncodeAudio/ar.md index 416b9cccb..9c28278a8 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeAudio/ar.md +++ b/comfyui_embedded_docs/docs/VAEEncodeAudio/ar.md @@ -17,4 +17,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `LATENT` | LATENT | التمثيل الصوتي المشفر في الفضاء الكامن، والذي يحتوي على عينات مضغوطة | \ No newline at end of file +| `LATENT` | LATENT | التمثيل الصوتي المشفر في الفضاء الكامن، والذي يحتوي على عينات مضغوطة | diff --git a/comfyui_embedded_docs/docs/VAEEncodeAudio/pt-BR.md b/comfyui_embedded_docs/docs/VAEEncodeAudio/pt-BR.md index 7af88bb8f..5ac8a0e01 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeAudio/pt-BR.md +++ b/comfyui_embedded_docs/docs/VAEEncodeAudio/pt-BR.md @@ -15,4 +15,4 @@ O nó VAEEncodeAudio converte dados de áudio em uma representação latente usa | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | A representação codificada do áudio no espaço latente, contendo amostras comprimidas | \ No newline at end of file +| `LATENT` | LATENT | A representação codificada do áudio no espaço latente, contendo amostras comprimidas | diff --git a/comfyui_embedded_docs/docs/VAEEncodeAudio/tr.md b/comfyui_embedded_docs/docs/VAEEncodeAudio/tr.md index ccd55dba7..a30e74ce9 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeAudio/tr.md +++ b/comfyui_embedded_docs/docs/VAEEncodeAudio/tr.md @@ -15,4 +15,4 @@ VAEEncodeAudio düğümü, ses verilerini Varyasyonel Otokodlayıcı (VAE) kulla | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Gizli uzayda kodlanmış ses temsili; sıkıştırılmış örnekler içerir | \ No newline at end of file +| `LATENT` | LATENT | Gizli uzayda kodlanmış ses temsili; sıkıştırılmış örnekler içerir | diff --git a/comfyui_embedded_docs/docs/VAEEncodeAudio/zh-TW.md b/comfyui_embedded_docs/docs/VAEEncodeAudio/zh-TW.md index 3408cb2d5..59125bd59 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeAudio/zh-TW.md +++ b/comfyui_embedded_docs/docs/VAEEncodeAudio/zh-TW.md @@ -15,4 +15,4 @@ VAEEncodeAudio 節點使用變分自編碼器(VAE)將音訊資料轉換為 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 在潛在空間中的編碼音訊表示,包含壓縮樣本 | \ No newline at end of file +| `LATENT` | LATENT | 在潛在空間中的編碼音訊表示,包含壓縮樣本 | diff --git a/comfyui_embedded_docs/docs/VAEEncodeTiled/ar.md b/comfyui_embedded_docs/docs/VAEEncodeTiled/ar.md index a21980e64..bac135e4a 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeTiled/ar.md +++ b/comfyui_embedded_docs/docs/VAEEncodeTiled/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------------------------------------| -| `LATENT` | LATENT | التمثيل الكامن المشفر للصورة المدخلة | \ No newline at end of file +| `LATENT` | LATENT | التمثيل الكامن المشفر للصورة المدخلة | diff --git a/comfyui_embedded_docs/docs/VAEEncodeTiled/pt-BR.md b/comfyui_embedded_docs/docs/VAEEncodeTiled/pt-BR.md index b428275f9..e96b904f4 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeTiled/pt-BR.md +++ b/comfyui_embedded_docs/docs/VAEEncodeTiled/pt-BR.md @@ -19,4 +19,4 @@ O nó VAEEncodeTiled processa imagens dividindo-as em blocos menores (tiles) e c | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `LATENT` | LATENT | A representação latente codificada da imagem de entrada | \ No newline at end of file +| `LATENT` | LATENT | A representação latente codificada da imagem de entrada | diff --git a/comfyui_embedded_docs/docs/VAEEncodeTiled/tr.md b/comfyui_embedded_docs/docs/VAEEncodeTiled/tr.md index 80f5eebf5..286626633 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeTiled/tr.md +++ b/comfyui_embedded_docs/docs/VAEEncodeTiled/tr.md @@ -19,4 +19,4 @@ VAEEncodeTiled düğümü, görüntüleri daha küçük karolara bölerek ve bun | Çıktı Adı | Veri Türı | Açıklama | |-------------|-----------|-------------| -| `LATENT` | LATENT | Giriş görüntüsünün kodlanmış gizli temsili | \ No newline at end of file +| `LATENT` | LATENT | Giriş görüntüsünün kodlanmış gizli temsili | diff --git a/comfyui_embedded_docs/docs/VAEEncodeTiled/zh-TW.md b/comfyui_embedded_docs/docs/VAEEncodeTiled/zh-TW.md index 79c733a8a..5ca6ec61b 100644 --- a/comfyui_embedded_docs/docs/VAEEncodeTiled/zh-TW.md +++ b/comfyui_embedded_docs/docs/VAEEncodeTiled/zh-TW.md @@ -19,4 +19,4 @@ VAEEncodeTiled 節點透過將圖像分割成較小的圖塊,並使用變分 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `LATENT` | LATENT | 輸入圖像的編碼潛在表示 | \ No newline at end of file +| `LATENT` | LATENT | 輸入圖像的編碼潛在表示 | diff --git a/comfyui_embedded_docs/docs/VaeDecode/ar.md b/comfyui_embedded_docs/docs/VaeDecode/ar.md index 8e1fe83da..391b0cab5 100644 --- a/comfyui_embedded_docs/docs/VaeDecode/ar.md +++ b/comfyui_embedded_docs/docs/VaeDecode/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `image` | `IMAGE` | المخرج هو صورة معاد بناؤها من التمثيل الكامن المُقدم باستخدام نموذج VAE المحدد. | \ No newline at end of file +| `image` | `IMAGE` | المخرج هو صورة معاد بناؤها من التمثيل الكامن المُقدم باستخدام نموذج VAE المحدد. | diff --git a/comfyui_embedded_docs/docs/VaeDecode/pt-BR.md b/comfyui_embedded_docs/docs/VaeDecode/pt-BR.md index b8be54251..6a6af6f77 100644 --- a/comfyui_embedded_docs/docs/VaeDecode/pt-BR.md +++ b/comfyui_embedded_docs/docs/VaeDecode/pt-BR.md @@ -13,4 +13,4 @@ O nó VAEDecode é projetado para decodificar representações latentes em image | Parâmetro | Tipo de Dado | Descrição | |-----------|-------------|-------------| -| `image` | `IMAGE` | A saída é uma imagem reconstruída a partir da representação latente fornecida, usando o modelo VAE especificado. | \ No newline at end of file +| `image` | `IMAGE` | A saída é uma imagem reconstruída a partir da representação latente fornecida, usando o modelo VAE especificado. | diff --git a/comfyui_embedded_docs/docs/VaeDecode/tr.md b/comfyui_embedded_docs/docs/VaeDecode/tr.md index a4beddeb6..818fd796c 100644 --- a/comfyui_embedded_docs/docs/VaeDecode/tr.md +++ b/comfyui_embedded_docs/docs/VaeDecode/tr.md @@ -13,4 +13,4 @@ VAEDecode düğümü, belirli bir Varyasyonel Otokodlayıcı (VAE) kullanarak gi | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `image` | `IMAGE` | Çıktı, belirtilen VAE modeli kullanılarak sağlanan gizli temsilden yeniden oluşturulmuş bir görüntüdür. | \ No newline at end of file +| `image` | `IMAGE` | Çıktı, belirtilen VAE modeli kullanılarak sağlanan gizli temsilden yeniden oluşturulmuş bir görüntüdür. | diff --git a/comfyui_embedded_docs/docs/VaeDecode/zh-TW.md b/comfyui_embedded_docs/docs/VaeDecode/zh-TW.md index 5124c4e46..1ed55adfe 100644 --- a/comfyui_embedded_docs/docs/VaeDecode/zh-TW.md +++ b/comfyui_embedded_docs/docs/VaeDecode/zh-TW.md @@ -13,4 +13,4 @@ VAEDecode 節點專為使用指定的變分自編碼器(VAE)將潛在表示 | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `image` | `IMAGE` | 此輸出是透過指定的 VAE 模型,從提供的潛在表示重建而成的影像。 | \ No newline at end of file +| `image` | `IMAGE` | 此輸出是透過指定的 VAE 模型,從提供的潛在表示重建而成的影像。 | diff --git a/comfyui_embedded_docs/docs/VaeEncode/ar.md b/comfyui_embedded_docs/docs/VaeEncode/ar.md index b2ae1f934..34269a659 100644 --- a/comfyui_embedded_docs/docs/VaeEncode/ar.md +++ b/comfyui_embedded_docs/docs/VaeEncode/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | المخرج هو تمثيل في الفضاء الكامن للصورة المدخلة، يلخص خصائصها الأساسية في شكل مضغوط. | \ No newline at end of file +| `latent` | `LATENT` | المخرج هو تمثيل في الفضاء الكامن للصورة المدخلة، يلخص خصائصها الأساسية في شكل مضغوط. | diff --git a/comfyui_embedded_docs/docs/VaeEncode/pt-BR.md b/comfyui_embedded_docs/docs/VaeEncode/pt-BR.md index 911e9ad85..6ea019c36 100644 --- a/comfyui_embedded_docs/docs/VaeEncode/pt-BR.md +++ b/comfyui_embedded_docs/docs/VaeEncode/pt-BR.md @@ -13,4 +13,4 @@ Este nó é projetado para codificar imagens em uma representação de espaço l | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída é uma representação do espaço latente da imagem de entrada, encapsulando suas características essenciais em uma forma comprimida. | \ No newline at end of file +| `latent` | `LATENT` | A saída é uma representação do espaço latente da imagem de entrada, encapsulando suas características essenciais em uma forma comprimida. | diff --git a/comfyui_embedded_docs/docs/VaeEncode/tr.md b/comfyui_embedded_docs/docs/VaeEncode/tr.md index b8495e29c..f2bb525a2 100644 --- a/comfyui_embedded_docs/docs/VaeEncode/tr.md +++ b/comfyui_embedded_docs/docs/VaeEncode/tr.md @@ -13,4 +13,4 @@ Bu düğüm, belirli bir VAE modeli kullanarak görüntüleri gizli (latent) uza | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, girdi görüntüsünün temel özelliklerini sıkıştırılmış bir formda kapsayan gizli uzay temsilidir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, girdi görüntüsünün temel özelliklerini sıkıştırılmış bir formda kapsayan gizli uzay temsilidir. | diff --git a/comfyui_embedded_docs/docs/VaeEncode/zh-TW.md b/comfyui_embedded_docs/docs/VaeEncode/zh-TW.md index 4562b7912..6554d3b91 100644 --- a/comfyui_embedded_docs/docs/VaeEncode/zh-TW.md +++ b/comfyui_embedded_docs/docs/VaeEncode/zh-TW.md @@ -13,4 +13,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出是輸入圖像的潛在空間表示,以壓縮形式封裝了圖像的基本特徵。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出是輸入圖像的潛在空間表示,以壓縮形式封裝了圖像的基本特徵。 | diff --git a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/ar.md b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/ar.md index 0a7a3b9c5..a19f58487 100644 --- a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/ar.md +++ b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |-----------|-------------|-------------| -| `latent` | `LATENT` | يتضمن المخرج التمثيل الكامن المشفر للصورة وقناع الضوضاء، وكلاهما أساسي لمهام التصحيح اللاحقة. | \ No newline at end of file +| `latent` | `LATENT` | يتضمن المخرج التمثيل الكامن المشفر للصورة وقناع الضوضاء، وكلاهما أساسي لمهام التصحيح اللاحقة. | diff --git a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/pt-BR.md b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/pt-BR.md index ce293e342..884714613 100644 --- a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/pt-BR.md +++ b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/pt-BR.md @@ -15,4 +15,4 @@ Este nó foi projetado para codificar imagens em uma representação latente ade | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `latent` | `LATENT` | A saída inclui a representação latente codificada da imagem e uma máscara de ruído, ambas cruciais para tarefas subsequentes de inpainting. | \ No newline at end of file +| `latent` | `LATENT` | A saída inclui a representação latente codificada da imagem e uma máscara de ruído, ambas cruciais para tarefas subsequentes de inpainting. | diff --git a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/tr.md b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/tr.md index c92f9abdb..13004f5c0 100644 --- a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/tr.md +++ b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/tr.md @@ -15,4 +15,4 @@ Bu düğüm, görüntüleri, giriş görüntüsünü ve maskeyi VAE modeli taraf | Parametre | Veri Türu | Açıklama | |-----------|-------------|-------------| -| `latent` | `LATENT` | Çıktı, görüntünün kodlanmış latent temsilini ve sonraki inpaintleme görevleri için çok önemli olan bir gürültü maskesini içerir. | \ No newline at end of file +| `latent` | `LATENT` | Çıktı, görüntünün kodlanmış latent temsilini ve sonraki inpaintleme görevleri için çok önemli olan bir gürültü maskesini içerir. | diff --git a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/zh-TW.md b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/zh-TW.md index 5634b650a..410a35b17 100644 --- a/comfyui_embedded_docs/docs/VaeEncodeForInpaint/zh-TW.md +++ b/comfyui_embedded_docs/docs/VaeEncodeForInpaint/zh-TW.md @@ -15,4 +15,4 @@ | 參數名稱 | 資料類型 | 描述 | |-----------|-------------|-------------| -| `latent` | `LATENT` | 輸出包含影像的編碼潛在表徵和一個噪聲遮罩,這兩者對於後續的修補任務都至關重要。 | \ No newline at end of file +| `latent` | `LATENT` | 輸出包含影像的編碼潛在表徵和一個噪聲遮罩,這兩者對於後續的修補任務都至關重要。 | diff --git a/comfyui_embedded_docs/docs/VaeLoader/ar.md b/comfyui_embedded_docs/docs/VaeLoader/ar.md index 9585ecd91..e459fa6c4 100644 --- a/comfyui_embedded_docs/docs/VaeLoader/ar.md +++ b/comfyui_embedded_docs/docs/VaeLoader/ar.md @@ -14,4 +14,4 @@ | الحقل | نوع البيانات | الوصف | |-------|-------------|--------------------------------------------------------------------------| -| `vae` | `VAE` | يُرجع نموذج VAE الذي تم تحميله، جاهزًا لإجراء عمليات أخرى مثل التشفير أو فك التشفير. الناتج هو كائن نموذج يغلف حالة النموذج الذي تم تحميله. | \ No newline at end of file +| `vae` | `VAE` | يُرجع نموذج VAE الذي تم تحميله، جاهزًا لإجراء عمليات أخرى مثل التشفير أو فك التشفير. الناتج هو كائن نموذج يغلف حالة النموذج الذي تم تحميله. | diff --git a/comfyui_embedded_docs/docs/VaeLoader/pt-BR.md b/comfyui_embedded_docs/docs/VaeLoader/pt-BR.md index 866e743d0..a569f2a7d 100644 --- a/comfyui_embedded_docs/docs/VaeLoader/pt-BR.md +++ b/comfyui_embedded_docs/docs/VaeLoader/pt-BR.md @@ -14,4 +14,4 @@ O nó VAELoader é projetado para carregar modelos de Autoencoder Variacional (V | Campo | Tipo de Dados | Descrição | |-------|-------------|--------------------------------------------------------------------------| -| `vae` | `VAE` | Retorna o modelo VAE carregado, pronto para operações posteriores, como codificação ou decodificação. A saída é um objeto de modelo que encapsula o estado do modelo carregado. | \ No newline at end of file +| `vae` | `VAE` | Retorna o modelo VAE carregado, pronto para operações posteriores, como codificação ou decodificação. A saída é um objeto de modelo que encapsula o estado do modelo carregado. | diff --git a/comfyui_embedded_docs/docs/VaeLoader/tr.md b/comfyui_embedded_docs/docs/VaeLoader/tr.md index 09b43d868..8823fe8a5 100644 --- a/comfyui_embedded_docs/docs/VaeLoader/tr.md +++ b/comfyui_embedded_docs/docs/VaeLoader/tr.md @@ -14,4 +14,4 @@ VAELoader düğümü, Varyasyonel Otokodlayıcı (VAE) modellerini yüklemek iç | Alan | Veri Türü | Açıklama | |-------|-------------|--------------------------------------------------------------------------| -| `vae` | `VAE` | Kodlama veya kod çözme gibi ileri operasyonlar için hazır olarak yüklenen VAE modelini döndürür. Çıktı, yüklenen modelin durumunu içeren bir model nesnesidir. | \ No newline at end of file +| `vae` | `VAE` | Kodlama veya kod çözme gibi ileri operasyonlar için hazır olarak yüklenen VAE modelini döndürür. Çıktı, yüklenen modelin durumunu içeren bir model nesnesidir. | diff --git a/comfyui_embedded_docs/docs/VaeLoader/zh-TW.md b/comfyui_embedded_docs/docs/VaeLoader/zh-TW.md index 707d159e9..17f7a0edd 100644 --- a/comfyui_embedded_docs/docs/VaeLoader/zh-TW.md +++ b/comfyui_embedded_docs/docs/VaeLoader/zh-TW.md @@ -14,4 +14,4 @@ VAELoader 節點專為載入變分自編碼器(VAE)模型而設計,特別 | 欄位 | 資料類型 | 描述 | |-------|-------------|--------------------------------------------------------------------------| -| `vae` | `VAE` | 返回已載入的 VAE 模型,準備用於後續操作,例如編碼或解碼。輸出是一個封裝了已載入模型狀態的模型物件。 | \ No newline at end of file +| `vae` | `VAE` | 返回已載入的 VAE 模型,準備用於後續操作,例如編碼或解碼。輸出是一個封裝了已載入模型狀態的模型物件。 | diff --git a/comfyui_embedded_docs/docs/VaeSave/ar.md b/comfyui_embedded_docs/docs/VaeSave/ar.md index bec39068c..ec11cb740 100644 --- a/comfyui_embedded_docs/docs/VaeSave/ar.md +++ b/comfyui_embedded_docs/docs/VaeSave/ar.md @@ -11,4 +11,4 @@ ## المخرجات -لا تحتوي العُقدة على أنواع مُخرجات. \ No newline at end of file +لا تحتوي العُقدة على أنواع مُخرجات. diff --git a/comfyui_embedded_docs/docs/VaeSave/pt-BR.md b/comfyui_embedded_docs/docs/VaeSave/pt-BR.md index 7d3027bc1..9e7348008 100644 --- a/comfyui_embedded_docs/docs/VaeSave/pt-BR.md +++ b/comfyui_embedded_docs/docs/VaeSave/pt-BR.md @@ -11,4 +11,4 @@ O nó VAESave é projetado para salvar modelos VAE juntamente com seus metadados ## Saídas -O nó não possui tipos de saída. \ No newline at end of file +O nó não possui tipos de saída. diff --git a/comfyui_embedded_docs/docs/VaeSave/tr.md b/comfyui_embedded_docs/docs/VaeSave/tr.md index 1e0ccc09a..b45a8fad2 100644 --- a/comfyui_embedded_docs/docs/VaeSave/tr.md +++ b/comfyui_embedded_docs/docs/VaeSave/tr.md @@ -11,4 +11,4 @@ VAESave düğümü, VAE modellerini ve bunlara ait istemleri ve ek PNG bilgileri ## Çıktılar -Bu düğümün çıktı türleri yoktur. \ No newline at end of file +Bu düğümün çıktı türleri yoktur. diff --git a/comfyui_embedded_docs/docs/VaeSave/zh-TW.md b/comfyui_embedded_docs/docs/VaeSave/zh-TW.md index 85819cb54..189d7787f 100644 --- a/comfyui_embedded_docs/docs/VaeSave/zh-TW.md +++ b/comfyui_embedded_docs/docs/VaeSave/zh-TW.md @@ -11,4 +11,4 @@ VAESave 節點專用於將 VAE 模型及其元資料(包括提示詞和額外 ## 輸出結果 -此節點沒有輸出類型。 \ No newline at end of file +此節點沒有輸出類型。 diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ar.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ar.md index 287949184..28140f57a 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ar.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ar.md @@ -21,4 +21,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/en.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/en.md index 5ba0ab361..54e53e29f 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/en.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/en.md @@ -21,4 +21,4 @@ The Veo3FirstLastFrameNode uses Google's Veo 3 model to generate a video. It cre | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The generated video file. | \ No newline at end of file +| `output` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/es.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/es.md index 30c11ebd8..885dda657 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/es.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/es.md @@ -21,4 +21,4 @@ El nodo Veo3FirstLastFrameNode utiliza el modelo Veo 3 de Google para generar un | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de vídeo generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de vídeo generado. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/fr.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/fr.md index 1125f4b69..a933203fa 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/fr.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/fr.md @@ -21,4 +21,4 @@ Le nœud Veo3FirstLastFrameNode utilise le modèle Veo 3 de Google pour génére | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ja.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ja.md index aaaa44e07..6ae7e0651 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ja.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ja.md @@ -21,4 +21,4 @@ Veo3FirstLastFrameNodeは、GoogleのVeo 3モデルを使用して動画を生 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成された動画ファイル。 | \ No newline at end of file +| `output` | VIDEO | 生成された動画ファイル。 | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ko.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ko.md index 54d9ea6e9..f2437bd8c 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ko.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ko.md @@ -21,4 +21,4 @@ Veo3FirstLastFrameNode는 Google의 Veo 3 모델을 사용하여 비디오를 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 생성된 비디오 파일. | \ No newline at end of file +| `output` | VIDEO | 생성된 비디오 파일. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/pt-BR.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/pt-BR.md index cb6b92190..cd4197c73 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/pt-BR.md @@ -21,4 +21,4 @@ O Veo3FirstLastFrameNode utiliza o modelo Veo 3 do Google para gerar um vídeo. | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ru.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ru.md index 31701336d..215dab6d0 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ru.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/ru.md @@ -21,4 +21,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированный видеофайл. | \ No newline at end of file +| `output` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/tr.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/tr.md index f3f32c30e..285452ec1 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/tr.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/tr.md @@ -21,4 +21,4 @@ Veo3FirstLastFrameNode, Google'ın Veo 3 modelini kullanarak bir video oluşturu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh-TW.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh-TW.md index 0829f33d6..a6c618c0a 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh-TW.md @@ -21,4 +21,4 @@ Veo3FirstLastFrameNode 使用 Google 的 Veo 3 模型來生成影片。它根據 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh.md b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh.md index 89cf68b9d..3ccccb3f6 100644 --- a/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh.md +++ b/comfyui_embedded_docs/docs/Veo3FirstLastFrameNode/zh.md @@ -21,4 +21,4 @@ Veo3FirstLastFrameNode 使用 Google 的 Veo 3 模型来生成视频。它基于 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/ar.md b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/ar.md index e60fe046f..06ef5ff1e 100644 --- a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/ar.md +++ b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/pt-BR.md b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/pt-BR.md index 831b5936d..f12ff220f 100644 --- a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/pt-BR.md @@ -23,4 +23,4 @@ Gera vídeos a partir de prompts de texto usando a API Veo 3 do Google. Este nó | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/tr.md b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/tr.md index 0a271c777..3117ffab9 100644 --- a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/tr.md +++ b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/tr.md @@ -23,4 +23,4 @@ Google'un Veo 3 API'sini kullanarak metin istemlerinden video oluşturur. Bu dü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/zh-TW.md b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/zh-TW.md index e390ab89f..4179eced4 100644 --- a/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/Veo3VideoGenerationNode/zh-TW.md @@ -23,4 +23,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/ar.md b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/ar.md index cdf60ddc9..ec12c730f 100644 --- a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/ar.md +++ b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/ar.md @@ -22,4 +22,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/pt-BR.md b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/pt-BR.md index c9ad76ef3..640d62482 100644 --- a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/pt-BR.md @@ -22,4 +22,4 @@ Gera vídeos a partir de prompts de texto usando a API Veo do Google. Este nó p | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/tr.md b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/tr.md index 6590529ca..028e6a782 100644 --- a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/tr.md +++ b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/tr.md @@ -22,4 +22,4 @@ Metin açıklamalarını kullanarak Google'ın Veo API'si aracılığıyla video | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/zh-TW.md b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/zh-TW.md index 174c4b010..3390fdbae 100644 --- a/comfyui_embedded_docs/docs/VeoVideoGenerationNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/VeoVideoGenerationNode/zh-TW.md @@ -22,4 +22,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/Video Slice/ar.md b/comfyui_embedded_docs/docs/Video Slice/ar.md new file mode 100644 index 000000000..7a6a0382b --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/ar.md @@ -0,0 +1,18 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/ar.md) + +يسمح لك عقد Video Slice باستخراج مقطع محدد من مقطع فيديو. يمكنك تحديد وقت بداية ومدة لقص الفيديو، أو ببساطة تخطي الإطارات الأولى. إذا كانت المدة المطلوبة أطول من الجزء المتبقي من الفيديو، يمكن للعقد إما إرجاع الجزء المتاح أو إظهار خطأ. + +## المدخلات + +| المعامل | نوع البيانات | مطلوب | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | نعم | - | مقطع الفيديو المدخل ليتم تقطيعه. | +| `start_time` | FLOAT | لا | -1e5 إلى 1e5 | وقت البدء بالثواني لبدء القطع. القيمة السالبة ستتخطى إطارات من بداية الفيديو. (الافتراضي: 0.0) | +| `duration` | FLOAT | لا | 0.0 فما فوق | طول المقطع بالثواني. القيمة 0.0 تعني أن العقد سيرجع كل الفيديو من وقت البدء حتى النهاية. (الافتراضي: 0.0) | +| `strict_duration` | BOOLEAN | لا | - | إذا تم ضبطه على True، سيقوم العقد بإظهار خطأ إذا تعذر تلبية المدة المطلوبة (مثلًا إذا كان القطع سيتجاوز نهاية الفيديو). إذا كان False، سيرجع الجزء المتاح من الفيديو حتى النهاية. (الافتراضي: False) | + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `video` | VIDEO | مقطع الفيديو المقصوص. | diff --git a/comfyui_embedded_docs/docs/Video Slice/en.md b/comfyui_embedded_docs/docs/Video Slice/en.md new file mode 100644 index 000000000..1b759803e --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/en.md @@ -0,0 +1,18 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/en.md) + +The Video Slice node allows you to extract a specific segment from a video. You can define a start time and a duration to trim the video, or simply skip the beginning frames. If the requested duration is longer than the remaining video, the node can either return what's available or raise an error. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Yes | - | The input video to be sliced. | +| `start_time` | FLOAT | No | -1e5 to 1e5 | The start time in seconds from which to begin the slice. A negative value will skip frames from the beginning of the video. (default: 0.0) | +| `duration` | FLOAT | No | 0.0 and above | The length of the slice in seconds. A value of 0.0 means the node will return all video from the start time to the end. (default: 0.0) | +| `strict_duration` | BOOLEAN | No | - | If set to True, the node will raise an error if the requested duration cannot be met (e.g., if the slice would go beyond the end of the video). If False, it will return the available video up to the end. (default: False) | + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | The trimmed video segment. | diff --git a/comfyui_embedded_docs/docs/Video Slice/es.md b/comfyui_embedded_docs/docs/Video Slice/es.md new file mode 100644 index 000000000..005293074 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/es.md @@ -0,0 +1,18 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/es.md) + +El nodo Video Slice permite extraer un segmento específico de un vídeo. Puedes definir un tiempo de inicio y una duración para recortar el vídeo, o simplemente omitir los fotogramas iniciales. Si la duración solicitada es mayor que el vídeo restante, el nodo puede devolver lo que esté disponible o generar un error. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Sí | - | El vídeo de entrada que se va a segmentar. | +| `start_time` | FLOAT | No | -1e5 a 1e5 | El tiempo de inicio en segundos desde el cual comenzar el segmento. Un valor negativo omitirá fotogramas desde el principio del vídeo. (por defecto: 0.0) | +| `duration` | FLOAT | No | 0.0 y superior | La longitud del segmento en segundos. Un valor de 0.0 significa que el nodo devolverá todo el vídeo desde el tiempo de inicio hasta el final. (por defecto: 0.0) | +| `strict_duration` | BOOLEAN | No | - | Si se establece en True, el nodo generará un error si no se puede cumplir la duración solicitada (por ejemplo, si el segmento excedería el final del vídeo). Si es False, devolverá el vídeo disponible hasta el final. (por defecto: False) | + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `video` | VIDEO | El segmento de vídeo recortado. | diff --git a/comfyui_embedded_docs/docs/Video Slice/fr.md b/comfyui_embedded_docs/docs/Video Slice/fr.md new file mode 100644 index 000000000..256e8a6b9 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/fr.md @@ -0,0 +1,18 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/fr.md) + +Le nœud Video Slice permet d'extraire un segment spécifique d'une vidéo. Vous pouvez définir un temps de début et une durée pour rogner la vidéo, ou simplement ignorer les images du début. Si la durée demandée est plus longue que le reste de la vidéo, le nœud peut soit renvoyer ce qui est disponible, soit générer une erreur. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Oui | - | La vidéo d'entrée à découper. | +| `start_time` | FLOAT | Non | -1e5 à 1e5 | Le temps de début en secondes à partir duquel commencer la découpe. Une valeur négative ignorera des images depuis le début de la vidéo. (par défaut : 0.0) | +| `duration` | FLOAT | Non | 0.0 et plus | La longueur de la découpe en secondes. Une valeur de 0.0 signifie que le nœud renverra toute la vidéo du temps de début jusqu'à la fin. (par défaut : 0.0) | +| `strict_duration` | BOOLEAN | Non | - | Si défini sur True, le nœud générera une erreur si la durée demandée ne peut pas être respectée (par exemple, si la découpe dépasse la fin de la vidéo). Si False, il renverra la vidéo disponible jusqu'à la fin. (par défaut : False) | + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | Le segment vidéo rogné. | diff --git a/comfyui_embedded_docs/docs/Video Slice/ja.md b/comfyui_embedded_docs/docs/Video Slice/ja.md new file mode 100644 index 000000000..72710bcbf --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/ja.md @@ -0,0 +1,18 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/ja.md) + +Video Sliceノードは、動画から特定のセグメントを抽出することができます。開始時間と継続時間を定義して動画をトリミングしたり、単に最初のフレームをスキップしたりできます。要求された継続時間が残りの動画よりも長い場合、ノードは利用可能な部分を返すか、エラーを発生させることができます。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | はい | - | スライスする入力動画。 | +| `start_time` | FLOAT | いいえ | -1e5 から 1e5 | スライスを開始する秒単位の開始時間。負の値を指定すると、動画の最初からフレームをスキップします。(デフォルト: 0.0) | +| `duration` | FLOAT | いいえ | 0.0 以上 | 秒単位のスライスの長さ。0.0を指定すると、ノードは開始時間から動画の終わりまでをすべて返します。(デフォルト: 0.0) | +| `strict_duration` | BOOLEAN | いいえ | - | Trueに設定すると、要求された継続時間を満たせない場合(例:スライスが動画の終わりを超えてしまう場合)にノードはエラーを発生させます。Falseの場合、動画の終わりまで利用可能な部分を返します。(デフォルト: False) | + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `video` | VIDEO | トリミングされた動画セグメント。 | diff --git a/comfyui_embedded_docs/docs/Video Slice/ko.md b/comfyui_embedded_docs/docs/Video Slice/ko.md new file mode 100644 index 000000000..f8099c7f2 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/ko.md @@ -0,0 +1,18 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/ko.md) + +Video Slice 노드를 사용하면 비디오에서 특정 구간을 추출할 수 있습니다. 시작 시간과 지속 시간을 정의하여 비디오를 자르거나, 단순히 시작 프레임을 건너뛸 수 있습니다. 요청한 지속 시간이 남은 비디오 길이보다 길 경우, 노드는 사용 가능한 부분을 반환하거나 오류를 발생시킬 수 있습니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 예 | - | 자를 입력 비디오입니다. | +| `start_time` | FLOAT | 아니요 | -1e5 ~ 1e5 | 자르기를 시작할 시간(초)입니다. 음수 값은 비디오 시작 부분에서 프레임을 건너뜁니다. (기본값: 0.0) | +| `duration` | FLOAT | 아니요 | 0.0 이상 | 자를 구간의 길이(초)입니다. 0.0 값은 시작 시간부터 비디오 끝까지 모든 부분을 반환함을 의미합니다. (기본값: 0.0) | +| `strict_duration` | BOOLEAN | 아니요 | - | True로 설정하면 요청한 지속 시간을 충족할 수 없는 경우(예: 자르기 구간이 비디오 끝을 넘어갈 경우) 노드가 오류를 발생시킵니다. False로 설정하면 비디오 끝까지 사용 가능한 부분을 반환합니다. (기본값: False) | + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `video` | VIDEO | 잘라낸 비디오 구간입니다. | diff --git a/comfyui_embedded_docs/docs/Video Slice/pt-BR.md b/comfyui_embedded_docs/docs/Video Slice/pt-BR.md new file mode 100644 index 000000000..a26ebc6b7 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/pt-BR.md @@ -0,0 +1,18 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/pt-BR.md) + +O nó Video Slice permite extrair um segmento específico de um vídeo. Você pode definir um horário de início e uma duração para cortar o vídeo, ou simplesmente pular os quadros iniciais. Se a duração solicitada for maior que o restante do vídeo, o nó pode retornar o que estiver disponível ou gerar um erro. + +## Entradas + +| Parâmetro | Tipo de Dado | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Sim | - | O vídeo de entrada a ser cortado. | +| `start_time` | FLOAT | Não | -1e5 a 1e5 | O horário de início em segundos a partir do qual o corte deve começar. Um valor negativo pulará quadros do início do vídeo. (padrão: 0.0) | +| `duration` | FLOAT | Não | 0.0 e acima | O comprimento do corte em segundos. Um valor de 0.0 significa que o nó retornará todo o vídeo do horário de início até o final. (padrão: 0.0) | +| `strict_duration` | BOOLEAN | Não | - | Se definido como Verdadeiro, o nó gerará um erro se a duração solicitada não puder ser atendida (por exemplo, se o corte ultrapassar o final do vídeo). Se Falso, ele retornará o vídeo disponível até o final. (padrão: Falso) | + +## Saídas + +| Nome da Saída | Tipo de Dado | Descrição | +|-------------|-----------|-------------| +| `video` | VIDEO | O segmento de vídeo cortado. | diff --git a/comfyui_embedded_docs/docs/Video Slice/ru.md b/comfyui_embedded_docs/docs/Video Slice/ru.md new file mode 100644 index 000000000..af7a6a6b8 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/ru.md @@ -0,0 +1,18 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/ru.md) + +Узел Video Slice позволяет извлечь определённый сегмент из видео. Вы можете задать время начала и продолжительность для обрезки видео или просто пропустить начальные кадры. Если запрошенная продолжительность превышает оставшуюся длину видео, узел может либо вернуть доступную часть, либо выдать ошибку. + +## Входы + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Да | - | Входное видео для обрезки. | +| `start_time` | FLOAT | Нет | -1e5 до 1e5 | Время начала среза в секундах. Отрицательное значение приведёт к пропуску кадров с начала видео. (по умолчанию: 0.0) | +| `duration` | FLOAT | Нет | 0.0 и выше | Длина среза в секундах. Значение 0.0 означает, что узел вернёт всё видео от времени начала до конца. (по умолчанию: 0.0) | +| `strict_duration` | BOOLEAN | Нет | - | Если установлено в True, узел выдаст ошибку, если запрошенная продолжительность не может быть соблюдена (например, если срез выходит за пределы конца видео). Если False, узел вернёт доступную часть видео до его конца. (по умолчанию: False) | + +## Выходы + +| Имя выхода | Тип данных | Описание | +|-------------|-----------|-------------| +| `video` | VIDEO | Обрезанный сегмент видео. | diff --git a/comfyui_embedded_docs/docs/Video Slice/tr.md b/comfyui_embedded_docs/docs/Video Slice/tr.md new file mode 100644 index 000000000..bebcfd599 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/tr.md @@ -0,0 +1,18 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/tr.md) + +Video Slice düğümü, bir videodan belirli bir bölümü çıkarmanıza olanak tanır. Videoyu kırpmak için bir başlangıç zamanı ve süre tanımlayabilir veya yalnızca başlangıç karelerini atlayabilirsiniz. İstenen süre, videonun kalan kısmından daha uzunsa, düğüm mevcut olanı döndürebilir veya bir hata verebilir. + +## Girişler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | Evet | - | Kırpılacak giriş videosu. | +| `start_time` | FLOAT | Hayır | -1e5 ila 1e5 | Dilimin başlayacağı saniye cinsinden başlangıç zamanı. Negatif bir değer, videonun başından kareler atlanmasını sağlar. (varsayılan: 0.0) | +| `duration` | FLOAT | Hayır | 0.0 ve üzeri | Dilimin saniye cinsinden uzunluğu. 0.0 değeri, düğümün başlangıç zamanından sonuna kadar tüm videoyu döndüreceği anlamına gelir. (varsayılan: 0.0) | +| `strict_duration` | BOOLEAN | Hayır | - | True olarak ayarlanırsa, istenen süre karşılanamazsa (örneğin, dilim videonun sonunu aşarsa) düğüm bir hata verir. False ise, sonuna kadar mevcut videoyu döndürür. (varsayılan: False) | + +## Çıkışlar + +| Çıkış Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `video` | VIDEO | Kırpılmış video bölümü. | diff --git a/comfyui_embedded_docs/docs/Video Slice/zh-TW.md b/comfyui_embedded_docs/docs/Video Slice/zh-TW.md new file mode 100644 index 000000000..4f10b91c0 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/zh-TW.md @@ -0,0 +1,18 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/zh-TW.md) + +Video Slice 節點可讓您從影片中擷取特定片段。您可以定義開始時間和持續時間來修剪影片,或直接跳過開頭的影格。若要求的持續時間超過影片剩餘長度,此節點可選擇返回可用內容或引發錯誤。 + +## 輸入參數 + +| 參數名稱 | 資料類型 | 必填 | 數值範圍 | 說明 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 是 | - | 要進行切片處理的輸入影片。 | +| `start_time` | FLOAT | 否 | -1e5 至 1e5 | 切片開始的起始時間(單位:秒)。負數值將從影片開頭跳過影格。(預設值:0.0) | +| `duration` | FLOAT | 否 | 0.0 及以上 | 切片長度(單位:秒)。值為 0.0 表示節點將返回從開始時間到結尾的所有影片內容。(預設值:0.0) | +| `strict_duration` | BOOLEAN | 否 | - | 若設為 True,當無法滿足要求的持續時間時(例如切片範圍超出影片結尾),節點將引發錯誤。若設為 False,則會返回直至影片結尾的可用內容。(預設值:False) | + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 說明 | +|-------------|-----------|-------------| +| `video` | VIDEO | 修剪後的影片片段。 | diff --git a/comfyui_embedded_docs/docs/Video Slice/zh.md b/comfyui_embedded_docs/docs/Video Slice/zh.md new file mode 100644 index 000000000..b35a234a4 --- /dev/null +++ b/comfyui_embedded_docs/docs/Video Slice/zh.md @@ -0,0 +1,18 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Video%20Slice/zh.md) + +Video Slice 节点允许您从视频中提取特定片段。您可以定义起始时间和持续时间来裁剪视频,或直接跳过开头的帧。如果请求的持续时间超过剩余视频长度,该节点可以返回可用部分或引发错误。 + +## 输入参数 + +| 参数名 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `video` | VIDEO | 是 | - | 待裁剪的输入视频。 | +| `start_time` | FLOAT | 否 | -1e5 到 1e5 | 开始裁剪的起始时间(单位:秒)。负值将从视频开头跳过相应帧数。(默认值:0.0) | +| `duration` | FLOAT | 否 | 0.0 及以上 | 裁剪片段的长度(单位:秒)。值为 0.0 表示节点将返回从起始时间到视频结尾的所有内容。(默认值:0.0) | +| `strict_duration` | BOOLEAN | 否 | - | 若设为 True,当无法满足请求的持续时间(例如,裁剪范围超出视频结尾)时,节点将引发错误。若为 False,则返回直到视频结尾的可用部分。(默认值:False) | + +## 输出结果 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `video` | VIDEO | 裁剪后的视频片段。 | diff --git a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/ar.md b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/ar.md index 9fd07c798..231c2a426 100644 --- a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/ar.md +++ b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/ar.md @@ -13,4 +13,4 @@ | المعامل | نوع البيانات | الوصف | |---------|---------------|--------| -| `النموذج` | MODEL | المخرجات هي نسخة معدلة من نموذج الإدخال، مع تطبيق مقياس التوجيه الخطي CFG. هذا النموذج المعدل قادر على توليد مخرجات بدرجات متفاوتة من التوجيه، بناءً على مقياس التوجيه المحدد. | \ No newline at end of file +| `النموذج` | MODEL | المخرجات هي نسخة معدلة من نموذج الإدخال، مع تطبيق مقياس التوجيه الخطي CFG. هذا النموذج المعدل قادر على توليد مخرجات بدرجات متفاوتة من التوجيه، بناءً على مقياس التوجيه المحدد. | diff --git a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/pt-BR.md b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/pt-BR.md index 8b6aea519..8f31e2df1 100644 --- a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/pt-BR.md @@ -13,4 +13,4 @@ O nó VideoLinearCFGGuidance aplica uma escala de orientação de condicionament | Parâmetro | Tipo de Dados | Descrição | |-----------|-------------|-------------| -| `model` | MODEL | A saída é uma versão modificada do modelo de entrada, com a escala de orientação CFG linear aplicada. Este modelo ajustado é capaz de gerar saídas com diferentes graus de condicionamento, com base na escala de orientação especificada. | \ No newline at end of file +| `model` | MODEL | A saída é uma versão modificada do modelo de entrada, com a escala de orientação CFG linear aplicada. Este modelo ajustado é capaz de gerar saídas com diferentes graus de condicionamento, com base na escala de orientação especificada. | diff --git a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/tr.md b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/tr.md index 8f07d7e45..da77a5d20 100644 --- a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/tr.md +++ b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/tr.md @@ -13,4 +13,4 @@ VideoLinearCFGGuidance düğümü, bir video modeline doğrusal koşullandırma | Parametre | Veri Türü | Açıklama | |-----------|-------------|-------------| -| `model` | MODEL | Çıktı, doğrusal CFG kılavuz ölçeği uygulanmış giriş modelinin değiştirilmiş bir versiyonudur. Bu ayarlanmış model, belirtilen kılavuz ölçeğine dayalı olarak değişen derecelerde koşullandırmaya sahip çıktılar üretebilir. | \ No newline at end of file +| `model` | MODEL | Çıktı, doğrusal CFG kılavuz ölçeği uygulanmış giriş modelinin değiştirilmiş bir versiyonudur. Bu ayarlanmış model, belirtilen kılavuz ölçeğine dayalı olarak değişen derecelerde koşullandırmaya sahip çıktılar üretebilir. | diff --git a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/zh-TW.md b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/zh-TW.md index 9aecd7f19..2d2d18e88 100644 --- a/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/VideoLinearCfgGuidance/zh-TW.md @@ -13,4 +13,4 @@ VideoLinearCFGGuidance 節點對影片模型施加線性條件引導尺度調整 | 參數名稱 | 資料類型 | 參數說明 | |-----------|-------------|-------------| -| `model` | MODEL | 輸出為輸入模型的修改版本,已應用線性 CFG 引導尺度。此調整後的模型能根據指定的引導尺度,生成具有不同條件化程度的輸出內容。 | \ No newline at end of file +| `model` | MODEL | 輸出為輸入模型的修改版本,已應用線性 CFG 引導尺度。此調整後的模型能根據指定的引導尺度,生成具有不同條件化程度的輸出內容。 | diff --git a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/ar.md b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/ar.md index 118ff15ff..a9949df19 100644 --- a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/ar.md +++ b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `النموذج` | MODEL | النموذج المعدل مع تطبيق التوجيه المثلثي الخالي من المصنف | \ No newline at end of file +| `النموذج` | MODEL | النموذج المعدل مع تطبيق التوجيه المثلثي الخالي من المصنف | diff --git a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/pt-BR.md b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/pt-BR.md index 38992d4c9..34c26db10 100644 --- a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/pt-BR.md +++ b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/pt-BR.md @@ -13,4 +13,4 @@ O nó VideoTriangleCFGGuidance aplica um padrão de escala de orientação (guid | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo modificado com a orientação triangular CFG aplicada | \ No newline at end of file +| `model` | MODEL | O modelo modificado com a orientação triangular CFG aplicada | diff --git a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/tr.md b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/tr.md index 852adfb9d..710b2dbde 100644 --- a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/tr.md +++ b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/tr.md @@ -13,4 +13,4 @@ VideoTriangleCFGGuidance düğümü, video modellerine üçgen şeklinde bir sı | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Üçgen CFG kılavuzluğu uygulanmış modifiye edilmiş model | \ No newline at end of file +| `model` | MODEL | Üçgen CFG kılavuzluğu uygulanmış modifiye edilmiş model | diff --git a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/zh-TW.md b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/zh-TW.md index 0b774d1b5..0be5b09c6 100644 --- a/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/zh-TW.md +++ b/comfyui_embedded_docs/docs/VideoTriangleCFGGuidance/zh-TW.md @@ -13,4 +13,4 @@ VideoTriangleCFGGuidance 節點對影片模型應用三角形分類器自由引 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用三角形 CFG 引導的修改後模型 | \ No newline at end of file +| `model` | MODEL | 已應用三角形 CFG 引導的修改後模型 | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ar.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ar.md new file mode 100644 index 000000000..6c95ca929 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ar.md @@ -0,0 +1,24 @@ +> تم إنشاء هذه الوثيقة بواسطة الذكاء الاصطناعي. إذا وجدت أي أخطاء أو لديك اقتراحات للتحسين، فلا تتردد في المساهمة! [تحرير على GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ar.md) + +يُنشئ هذا العقد مقطع فيديو عن طريق استكمال الحركة بين إطار بداية مُقدَّم وإطار نهاية، بتوجيه من نص وصفي. يستخدم العقد نموذج Vidu Q3 لإنشاء انتقال سلس بين الصورتين، منتجًا فيديو بمدة ودقة محدَّدتين. + +## المدخلات + +| المعامل | نوع البيانات | إلزامي | النطاق | الوصف | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | نعم | `"viduq3-pro"`
`"viduq3-turbo"` | النموذج المستخدم في توليد الفيديو. اختيار أحد الخيارات يكشف عن معاملات إضافية للتهيئة خاصة بـ `resolution`، و `duration`، و `audio`. | +| `model.resolution` | COMBO | نعم | `"720p"`
`"1080p"` | دقة الفيديو الناتج. يُكشف عن هذا المعامل بعد اختيار `model`. | +| `model.duration` | INT | نعم | 1 إلى 16 | مدة الفيديو الناتج بالثواني (القيمة الافتراضية: 5). يُكشف عن هذا المعامل بعد اختيار `model`. | +| `model.audio` | BOOLEAN | نعم | `True` / `False` | عند التمكين، يُخرج الفيديو مع صوت (يشمل الحوار والمؤثرات الصوتية) (القيمة الافتراضية: False). يُكشف عن هذا المعامل بعد اختيار `model`. | +| `first_frame` | IMAGE | نعم | - | صورة البداية لتسلسل الفيديو. | +| `end_frame` | IMAGE | نعم | - | صورة النهاية لتسلسل الفيديو. | +| `prompt` | STRING | نعم | - | وصف نصي يوجه عملية توليد الفيديو (الحد الأقصى 2000 حرف). | +| `seed` | INT | لا | 0 إلى 2147483647 | قيمة بذرية للتحكم في العشوائية أثناء عملية التوليد (القيمة الافتراضية: 1). | + +**ملاحظة:** يُفضَّل أن تكون للصورتين `first_frame` و `end_frame` نسب أبعاد متشابهة للحصول على أفضل النتائج. + +## المخرجات + +| اسم المخرج | نوع البيانات | الوصف | +|-------------|-----------|-------------| +| `video` | VIDEO | ملف الفيديو المُنشأ. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/en.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/en.md new file mode 100644 index 000000000..b7d4b6b4a --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/en.md @@ -0,0 +1,24 @@ +> This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! [Edit on GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/en.md) + +This node generates a video by interpolating between a provided start frame and an end frame, guided by a text prompt. It uses the Vidu Q3 model to create a seamless transition between the two images, producing a video of a specified duration and resolution. + +## Inputs + +| Parameter | Data Type | Required | Range | Description | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Yes | `"viduq3-pro"`
`"viduq3-turbo"` | The model to use for video generation. Selecting an option reveals additional configuration parameters for `resolution`, `duration`, and `audio`. | +| `model.resolution` | COMBO | Yes | `"720p"`
`"1080p"` | Resolution of the output video. This parameter is revealed after selecting a `model`. | +| `model.duration` | INT | Yes | 1 to 16 | Duration of the output video in seconds (default: 5). This parameter is revealed after selecting a `model`. | +| `model.audio` | BOOLEAN | Yes | `True` / `False` | When enabled, outputs video with sound (including dialogue and sound effects) (default: False). This parameter is revealed after selecting a `model`. | +| `first_frame` | IMAGE | Yes | - | The starting image for the video sequence. | +| `end_frame` | IMAGE | Yes | - | The ending image for the video sequence. | +| `prompt` | STRING | Yes | - | A text description guiding the video generation (maximum 2000 characters). | +| `seed` | INT | No | 0 to 2147483647 | A seed value for controlling the randomness of the generation (default: 1). | + +**Note:** The `first_frame` and `end_frame` images should have similar aspect ratios for optimal results. + +## Outputs + +| Output Name | Data Type | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | The generated video file. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/es.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/es.md new file mode 100644 index 000000000..d5846df18 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/es.md @@ -0,0 +1,24 @@ +> Esta documentación fue generada por IA. Si encuentra algún error o tiene sugerencias de mejora, ¡no dude en contribuir! [Editar en GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/es.md) + +Este nodo genera un video interpolando entre un fotograma inicial y un final proporcionados, guiado por un texto descriptivo. Utiliza el modelo Vidu Q3 para crear una transición fluida entre las dos imágenes, produciendo un video de una duración y resolución específicas. + +## Entradas + +| Parámetro | Tipo de Dato | Obligatorio | Rango | Descripción | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Sí | `"viduq3-pro"`
`"viduq3-turbo"` | El modelo a utilizar para la generación del video. Seleccionar una opción revela parámetros de configuración adicionales para `resolution`, `duration` y `audio`. | +| `model.resolution` | COMBO | Sí | `"720p"`
`"1080p"` | Resolución del video de salida. Este parámetro se revela después de seleccionar un `model`. | +| `model.duration` | INT | Sí | 1 a 16 | Duración del video de salida en segundos (por defecto: 5). Este parámetro se revela después de seleccionar un `model`. | +| `model.audio` | BOOLEAN | Sí | `True` / `False` | Cuando está habilitado, genera un video con sonido (incluyendo diálogo y efectos de sonido) (por defecto: False). Este parámetro se revela después de seleccionar un `model`. | +| `first_frame` | IMAGE | Sí | - | La imagen inicial para la secuencia de video. | +| `end_frame` | IMAGE | Sí | - | La imagen final para la secuencia de video. | +| `prompt` | STRING | Sí | - | Una descripción textual que guía la generación del video (máximo 2000 caracteres). | +| `seed` | INT | No | 0 a 2147483647 | Un valor de semilla para controlar la aleatoriedad de la generación (por defecto: 1). | + +**Nota:** Las imágenes `first_frame` y `end_frame` deben tener proporciones de aspecto similares para obtener resultados óptimos. + +## Salidas + +| Nombre de Salida | Tipo de Dato | Descripción | +|-------------|-----------|-------------| +| `video` | VIDEO | El archivo de video generado. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/fr.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/fr.md new file mode 100644 index 000000000..f4eb4bb63 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/fr.md @@ -0,0 +1,24 @@ +> Cette documentation a été générée par IA. Si vous trouvez des erreurs ou avez des suggestions d'amélioration, n'hésitez pas à contribuer ! [Modifier sur GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/fr.md) + +Ce nœud génère une vidéo en interpolant entre une image de départ et une image de fin fournies, guidé par une description textuelle. Il utilise le modèle Vidu Q3 pour créer une transition fluide entre les deux images, produisant une vidéo d'une durée et d'une résolution spécifiées. + +## Entrées + +| Paramètre | Type de données | Requis | Plage | Description | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Oui | `"viduq3-pro"`
`"viduq3-turbo"` | Le modèle à utiliser pour la génération de vidéo. La sélection d'une option révèle des paramètres de configuration supplémentaires pour `resolution`, `duration` et `audio`. | +| `model.resolution` | COMBO | Oui | `"720p"`
`"1080p"` | Résolution de la vidéo en sortie. Ce paramètre est révélé après avoir sélectionné un `model`. | +| `model.duration` | INT | Oui | 1 à 16 | Durée de la vidéo en sortie en secondes (par défaut : 5). Ce paramètre est révélé après avoir sélectionné un `model`. | +| `model.audio` | BOOLEAN | Oui | `True` / `False` | Lorsqu'activé, produit une vidéo avec du son (incluant dialogues et effets sonores) (par défaut : False). Ce paramètre est révélé après avoir sélectionné un `model`. | +| `first_frame` | IMAGE | Oui | - | L'image de départ pour la séquence vidéo. | +| `end_frame` | IMAGE | Oui | - | L'image de fin pour la séquence vidéo. | +| `prompt` | STRING | Oui | - | Une description textuelle guidant la génération de la vidéo (maximum 2000 caractères). | +| `seed` | INT | Non | 0 à 2147483647 | Une valeur de graine pour contrôler l'aléatoire de la génération (par défaut : 1). | + +**Note :** Les images `first_frame` et `end_frame` devraient avoir des ratios d'aspect similaires pour des résultats optimaux. + +## Sorties + +| Nom de sortie | Type de données | Description | +|-------------|-----------|-------------| +| `video` | VIDEO | Le fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ja.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ja.md new file mode 100644 index 000000000..68a544949 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ja.md @@ -0,0 +1,24 @@ +> このドキュメントは AI によって生成されました。エラーを見つけた場合や改善のご提案がある場合は、ぜひ貢献してください! [GitHub で編集](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ja.md) + +このノードは、提供された開始フレームと終了フレームの間を、テキストプロンプトに導かれて補間することで動画を生成します。Vidu Q3モデルを使用して2つの画像間のシームレスな遷移を作成し、指定された長さと解像度の動画を出力します。 + +## 入力 + +| パラメータ | データ型 | 必須 | 範囲 | 説明 | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | はい | `"viduq3-pro"`
`"viduq3-turbo"` | 動画生成に使用するモデルです。オプションを選択すると、`resolution`、`duration`、`audio` の追加設定パラメータが表示されます。 | +| `model.resolution` | COMBO | はい | `"720p"`
`"1080p"` | 出力動画の解像度です。このパラメータは `model` を選択した後に表示されます。 | +| `model.duration` | INT | はい | 1 から 16 | 出力動画の長さ(秒単位)です(デフォルト: 5)。このパラメータは `model` を選択した後に表示されます。 | +| `model.audio` | BOOLEAN | はい | `True` / `False` | 有効にすると、音声(会話や効果音を含む)付きの動画を出力します(デフォルト: False)。このパラメータは `model` を選択した後に表示されます。 | +| `first_frame` | IMAGE | はい | - | 動画シーケンスの開始画像です。 | +| `end_frame` | IMAGE | はい | - | 動画シーケンスの終了画像です。 | +| `prompt` | STRING | はい | - | 動画生成を導くテキストによる説明です(最大2000文字)。 | +| `seed` | INT | いいえ | 0 から 2147483647 | 生成のランダム性を制御するためのシード値です(デフォルト: 1)。 | + +**注意:** 最適な結果を得るためには、`first_frame` と `end_frame` の画像は類似したアスペクト比を持つことが推奨されます。 + +## 出力 + +| 出力名 | データ型 | 説明 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ko.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ko.md new file mode 100644 index 000000000..144a5de24 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ko.md @@ -0,0 +1,24 @@ +> 이 문서는 AI에 의해 생성되었습니다. 오류를 발견하거나 개선 제안이 있으시면 기여해 주세요! [GitHub에서 편집](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ko.md) + +이 노드는 제공된 시작 프레임과 종료 프레임 사이를 텍스트 프롬프트의 지도를 받아 보간하여 비디오를 생성합니다. Vidu Q3 모델을 사용하여 두 이미지 사이의 자연스러운 전환을 만들어내며, 지정된 지속 시간과 해상도의 비디오를 생성합니다. + +## 입력 + +| 매개변수 | 데이터 타입 | 필수 | 범위 | 설명 | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | 예 | `"viduq3-pro"`
`"viduq3-turbo"` | 비디오 생성에 사용할 모델입니다. 옵션을 선택하면 `resolution`, `duration`, `audio`에 대한 추가 구성 매개변수가 표시됩니다. | +| `model.resolution` | COMBO | 예 | `"720p"`
`"1080p"` | 출력 비디오의 해상도입니다. 이 매개변수는 `model`을 선택한 후 표시됩니다. | +| `model.duration` | INT | 예 | 1 ~ 16 | 출력 비디오의 지속 시간(초)입니다 (기본값: 5). 이 매개변수는 `model`을 선택한 후 표시됩니다. | +| `model.audio` | BOOLEAN | 예 | `True` / `False` | 활성화하면 소리(대화 및 음향 효과 포함)가 있는 비디오를 출력합니다 (기본값: False). 이 매개변수는 `model`을 선택한 후 표시됩니다. | +| `first_frame` | IMAGE | 예 | - | 비디오 시퀀스의 시작 이미지입니다. | +| `end_frame` | IMAGE | 예 | - | 비디오 시퀀스의 종료 이미지입니다. | +| `prompt` | STRING | 예 | - | 비디오 생성을 안내하는 텍스트 설명입니다 (최대 2000자). | +| `seed` | INT | 아니요 | 0 ~ 2147483647 | 생성의 무작위성을 제어하기 위한 시드 값입니다 (기본값: 1). | + +**참고:** 최적의 결과를 위해 `first_frame`과 `end_frame` 이미지는 유사한 종횡비를 가져야 합니다. + +## 출력 + +| 출력 이름 | 데이터 타입 | 설명 | +|-------------|-----------|-------------| +| `video` | VIDEO | 생성된 비디오 파일입니다. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/pt-BR.md new file mode 100644 index 000000000..419b1c182 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/pt-BR.md @@ -0,0 +1,24 @@ +> Esta documentação foi gerada por IA. Se você encontrar erros ou tiver sugestões de melhoria, sinta-se à vontade para contribuir! [Editar no GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/pt-BR.md) + +Este nó gera um vídeo interpolando entre um quadro inicial e um quadro final fornecidos, guiado por um prompt de texto. Ele utiliza o modelo Vidu Q3 para criar uma transição suave entre as duas imagens, produzindo um vídeo com uma duração e resolução especificadas. + +## Entradas + +| Parâmetro | Tipo de Dados | Obrigatório | Intervalo | Descrição | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Sim | `"viduq3-pro"`
`"viduq3-turbo"` | O modelo a ser usado para a geração do vídeo. Selecionar uma opção revela parâmetros de configuração adicionais para `resolution`, `duration` e `audio`. | +| `model.resolution` | COMBO | Sim | `"720p"`
`"1080p"` | Resolução do vídeo de saída. Este parâmetro é revelado após a seleção de um `model`. | +| `model.duration` | INT | Sim | 1 a 16 | Duração do vídeo de saída em segundos (padrão: 5). Este parâmetro é revelado após a seleção de um `model`. | +| `model.audio` | BOOLEAN | Sim | `True` / `False` | Quando habilitado, gera vídeo com som (incluindo diálogos e efeitos sonoros) (padrão: False). Este parâmetro é revelado após a seleção de um `model`. | +| `first_frame` | IMAGE | Sim | - | A imagem inicial para a sequência de vídeo. | +| `end_frame` | IMAGE | Sim | - | A imagem final para a sequência de vídeo. | +| `prompt` | STRING | Sim | - | Uma descrição textual que guia a geração do vídeo (máximo de 2000 caracteres). | +| `seed` | INT | Não | 0 a 2147483647 | Um valor de semente para controlar a aleatoriedade da geração (padrão: 1). | + +**Observação:** As imagens `first_frame` e `end_frame` devem ter proporções (aspect ratios) semelhantes para resultados ideais. + +## Saídas + +| Nome da Saída | Tipo de Dados | Descrição | +|-------------|-----------|-------------| +| `video` | VIDEO | O arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ru.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ru.md new file mode 100644 index 000000000..0f6eb8ede --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ru.md @@ -0,0 +1,24 @@ +> Эта документация была создана с помощью ИИ. Если вы обнаружите ошибки или у вас есть предложения по улучшению, пожалуйста, внесите свой вклад! [Редактировать на GitHub](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/ru.md) + +Этот узел генерирует видео, интерполируя между предоставленным начальным и конечным кадрами, следуя текстовому описанию. Он использует модель Vidu Q3 для создания плавного перехода между двумя изображениями, формируя видео заданной длительности и разрешения. + +## Входные параметры + +| Параметр | Тип данных | Обязательный | Диапазон | Описание | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Да | `"viduq3-pro"`
`"viduq3-turbo"` | Модель, используемая для генерации видео. Выбор опции открывает дополнительные параметры конфигурации для `resolution`, `duration` и `audio`. | +| `model.resolution` | COMBO | Да | `"720p"`
`"1080p"` | Разрешение выходного видео. Этот параметр становится доступен после выбора `model`. | +| `model.duration` | INT | Да | от 1 до 16 | Длительность выходного видео в секундах (по умолчанию: 5). Этот параметр становится доступен после выбора `model`. | +| `model.audio` | BOOLEAN | Да | `True` / `False` | При включении выводит видео со звуком (включая диалоги и звуковые эффекты) (по умолчанию: False). Этот параметр становится доступен после выбора `model`. | +| `first_frame` | IMAGE | Да | - | Начальное изображение для видеопоследовательности. | +| `end_frame` | IMAGE | Да | - | Конечное изображение для видеопоследовательности. | +| `prompt` | STRING | Да | - | Текстовое описание, направляющее генерацию видео (максимум 2000 символов). | +| `seed` | INT | Нет | от 0 до 2147483647 | Значение seed для управления случайностью генерации (по умолчанию: 1). | + +**Примечание:** Изображения `first_frame` и `end_frame` должны иметь схожие пропорции для оптимального результата. + +## Выходные данные + +| Выходной параметр | Тип данных | Описание | +|-------------|-----------|-------------| +| `video` | VIDEO | Сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/tr.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/tr.md new file mode 100644 index 000000000..0b113debd --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/tr.md @@ -0,0 +1,24 @@ +> Bu belge yapay zeka tarafından oluşturulmuştur. Herhangi bir hata bulursanız veya iyileştirme önerileriniz varsa, katkıda bulunmaktan çekinmeyin! [GitHub'da Düzenle](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/tr.md) + +Bu düğüm, sağlanan bir başlangıç karesi ile bir bitiş karesi arasında, bir metin istemi tarafından yönlendirilen bir enterpolasyon yaparak video oluşturur. İki görüntü arasında sorunsuz bir geçiş oluşturmak için Vidu Q3 modelini kullanır ve belirtilen süre ve çözünürlükte bir video üretir. + +## Girdiler + +| Parametre | Veri Türü | Zorunlu | Aralık | Açıklama | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | Evet | `"viduq3-pro"`
`"viduq3-turbo"` | Video oluşturma için kullanılacak model. Bir seçenek seçmek, `çözünürlük`, `süre` ve `ses` için ek yapılandırma parametrelerini görünür kılar. | +| `model.resolution` | COMBO | Evet | `"720p"`
`"1080p"` | Çıktı videosunun çözünürlüğü. Bu parametre bir `model` seçildikten sonra görünür hale gelir. | +| `model.duration` | INT | Evet | 1 ila 16 | Çıktı videosunun saniye cinsinden süresi (varsayılan: 5). Bu parametre bir `model` seçildikten sonra görünür hale gelir. | +| `model.audio` | BOOLEAN | Evet | `True` / `False` | Etkinleştirildiğinde, sesli (diyalog ve ses efektleri dahil) video çıktısı verir (varsayılan: False). Bu parametre bir `model` seçildikten sonra görünür hale gelir. | +| `first_frame` | IMAGE | Evet | - | Video dizisi için başlangıç görüntüsü. | +| `end_frame` | IMAGE | Evet | - | Video dizisi için bitiş görüntüsü. | +| `prompt` | STRING | Evet | - | Video oluşturmayı yönlendiren bir metin açıklaması (maksimum 2000 karakter). | +| `seed` | INT | Hayır | 0 ila 2147483647 | Oluşturmanın rastgeleliğini kontrol etmek için bir tohum değeri (varsayılan: 1). | + +**Not:** En iyi sonuçlar için `first_frame` ve `end_frame` görüntülerinin benzer en-boy oranlarına sahip olması önerilir. + +## Çıktılar + +| Çıktı Adı | Veri Türü | Açıklama | +|-------------|-----------|-------------| +| `video` | VIDEO | Oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh-TW.md new file mode 100644 index 000000000..5968e5cd8 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh-TW.md @@ -0,0 +1,24 @@ +> 本文檔由 AI 生成。如果您發現任何錯誤或有改進建議,歡迎貢獻! [在 GitHub 上編輯](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh-TW.md) + +此節點透過在提供的起始影格和結束影格之間進行插值,並以文字提示為引導來生成影片。它使用 Vidu Q3 模型在兩張影像之間創建無縫過渡,產生指定時長和解析度的影片。 + +## 輸入參數 + +| 參數 | 資料類型 | 必填 | 範圍 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | 是 | `"viduq3-pro"`
`"viduq3-turbo"` | 用於影片生成的模型。選擇選項後,會顯示 `resolution`、`duration` 和 `audio` 的額外配置參數。 | +| `model.resolution` | COMBO | 是 | `"720p"`
`"1080p"` | 輸出影片的解析度。此參數在選擇 `model` 後顯示。 | +| `model.duration` | INT | 是 | 1 到 16 | 輸出影片的時長(單位:秒,預設值:5)。此參數在選擇 `model` 後顯示。 | +| `model.audio` | BOOLEAN | 是 | `True` / `False` | 啟用時,輸出帶有聲音(包括對話和音效)的影片(預設值:False)。此參數在選擇 `model` 後顯示。 | +| `first_frame` | IMAGE | 是 | - | 影片序列的起始影像。 | +| `end_frame` | IMAGE | 是 | - | 影片序列的結束影像。 | +| `prompt` | STRING | 是 | - | 引導影片生成的文字描述(最多 2000 個字元)。 | +| `seed` | INT | 否 | 0 到 2147483647 | 用於控制生成隨機性的種子值(預設值:1)。 | + +**注意:** 為獲得最佳效果,`first_frame` 和 `end_frame` 影像應具有相似的寬高比。 + +## 輸出結果 + +| 輸出名稱 | 資料類型 | 描述 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh.md b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh.md new file mode 100644 index 000000000..4b9874087 --- /dev/null +++ b/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh.md @@ -0,0 +1,24 @@ +> 本文档由 AI 生成。如果您发现任何错误或有改进建议,欢迎贡献! [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/Vidu3StartEndToVideoNode/zh.md) + +此节点通过在一个提供的起始帧和一个结束帧之间进行插值,并在文本提示的引导下生成视频。它使用 Vidu Q3 模型在两个图像之间创建无缝过渡,生成指定时长和分辨率的视频。 + +## 输入参数 + +| 参数 | 数据类型 | 必填 | 取值范围 | 描述 | +|-----------|-----------|----------|-------|-------------| +| `model` | COMBO | 是 | `"viduq3-pro"`
`"viduq3-turbo"` | 用于视频生成的模型。选择一个选项后会显示 `resolution`、`duration` 和 `audio` 的额外配置参数。 | +| `model.resolution` | COMBO | 是 | `"720p"`
`"1080p"` | 输出视频的分辨率。此参数在选择 `model` 后显示。 | +| `model.duration` | INT | 是 | 1 到 16 | 输出视频的时长,单位为秒(默认值:5)。此参数在选择 `model` 后显示。 | +| `model.audio` | BOOLEAN | 是 | `True` / `False` | 启用时,输出带声音(包括对话和音效)的视频(默认值:False)。此参数在选择 `model` 后显示。 | +| `first_frame` | IMAGE | 是 | - | 视频序列的起始图像。 | +| `end_frame` | IMAGE | 是 | - | 视频序列的结束图像。 | +| `prompt` | STRING | 是 | - | 指导视频生成的文本描述(最多 2000 个字符)。 | +| `seed` | INT | 否 | 0 到 2147483647 | 用于控制生成随机性的种子值(默认值:1)。 | + +**注意:** 为获得最佳效果,`first_frame` 和 `end_frame` 图像应具有相似的长宽比。 + +## 输出参数 + +| 输出名称 | 数据类型 | 描述 | +|-------------|-----------|-------------| +| `video` | VIDEO | 生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/ViduImageToVideoNode/ar.md b/comfyui_embedded_docs/docs/ViduImageToVideoNode/ar.md index 886fc5f55..76d8f3986 100644 --- a/comfyui_embedded_docs/docs/ViduImageToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ViduImageToVideoNode/ar.md @@ -23,4 +23,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُولَّد الناتج | \ No newline at end of file +| `output` | VIDEO | الفيديو المُولَّد الناتج | diff --git a/comfyui_embedded_docs/docs/ViduImageToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ViduImageToVideoNode/pt-BR.md index ff4bd4260..4e9356f25 100644 --- a/comfyui_embedded_docs/docs/ViduImageToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ViduImageToVideoNode/pt-BR.md @@ -23,4 +23,4 @@ O nó Vidu Image To Video Generation cria vídeos a partir de uma imagem inicial | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado na saída | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado na saída | diff --git a/comfyui_embedded_docs/docs/ViduImageToVideoNode/tr.md b/comfyui_embedded_docs/docs/ViduImageToVideoNode/tr.md index 109d62b33..b97da726c 100644 --- a/comfyui_embedded_docs/docs/ViduImageToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ViduImageToVideoNode/tr.md @@ -23,4 +23,4 @@ Vidu Image To Video Generation düğümü, bir başlangıç görüntüsünden ve | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video çıktısı | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video çıktısı | diff --git a/comfyui_embedded_docs/docs/ViduImageToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ViduImageToVideoNode/zh-TW.md index 73b741859..f9b06b270 100644 --- a/comfyui_embedded_docs/docs/ViduImageToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ViduImageToVideoNode/zh-TW.md @@ -23,4 +23,4 @@ Vidu 圖像轉影片生成節點可從起始圖像和可選的文字描述建立 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片輸出 | \ No newline at end of file +| `output` | VIDEO | 生成的影片輸出 | diff --git a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ar.md b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ar.md index c6eb5bf71..089bb0be7 100644 --- a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ar.md @@ -27,4 +27,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشأ بناءً على الصور المرجعية والموجه النصي | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ بناءً على الصور المرجعية والموجه النصي | diff --git a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/pt-BR.md index a3df15668..6c6b2c3d7 100644 --- a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/pt-BR.md @@ -27,4 +27,4 @@ O nó Vidu Reference Video gera vídeos a partir de múltiplas imagens de refer | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base nas imagens de referência e no prompt | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base nas imagens de referência e no prompt | diff --git a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ru.md b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ru.md index a88c4b44d..d25667333 100644 --- a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ru.md +++ b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/ru.md @@ -27,4 +27,4 @@ | Выходное имя | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Сгенерированное видео на основе эталонных изображений и запроса | \ No newline at end of file +| `output` | VIDEO | Сгенерированное видео на основе эталонных изображений и запроса | diff --git a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/tr.md b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/tr.md index 7a9615c39..74c20dfc4 100644 --- a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/tr.md @@ -27,4 +27,4 @@ Vidu Referans Video Düğümü, birden fazla referans görselinden ve bir metin | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Referans görselleri ve isteme dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Referans görselleri ve isteme dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/zh-TW.md index a0cb2f7eb..1d1a5fa14 100644 --- a/comfyui_embedded_docs/docs/ViduReferenceVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ViduReferenceVideoNode/zh-TW.md @@ -27,4 +27,4 @@ Vidu 參考影片節點可根據多個參考圖片和文字提示生成影片。 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據參考圖片和提示生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據參考圖片和提示生成的影片 | diff --git a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/ar.md b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/ar.md index 338d09305..1e2bacd0c 100644 --- a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `output` | VIDEO | ملف الفيديو المُنشأ | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/pt-BR.md index 160285a79..752b92bb2 100644 --- a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/pt-BR.md @@ -21,4 +21,4 @@ O nó Vidu Start End To Video Generation cria um vídeo gerando quadros entre um | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O arquivo de vídeo gerado | \ No newline at end of file +| `output` | VIDEO | O arquivo de vídeo gerado | diff --git a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/tr.md b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/tr.md index f7ed3c813..4b888c0ee 100644 --- a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/tr.md @@ -21,4 +21,4 @@ Vidu Start End To Video Generation düğümü, bir başlangıç karesi ile bir b | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Oluşturulan video dosyası | \ No newline at end of file +| `output` | VIDEO | Oluşturulan video dosyası | diff --git a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/zh-TW.md index f85bcd530..838dd38ca 100644 --- a/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ViduStartEndToVideoNode/zh-TW.md @@ -21,4 +21,4 @@ Vidu Start End To Video Generation 節點透過在起始影格和結束影格之 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 生成的影片檔案 | \ No newline at end of file +| `output` | VIDEO | 生成的影片檔案 | diff --git a/comfyui_embedded_docs/docs/ViduTextToVideoNode/ar.md b/comfyui_embedded_docs/docs/ViduTextToVideoNode/ar.md index 84a297d7f..f9d50bb69 100644 --- a/comfyui_embedded_docs/docs/ViduTextToVideoNode/ar.md +++ b/comfyui_embedded_docs/docs/ViduTextToVideoNode/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشَأ بناءً على النص التوجيهي | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشَأ بناءً على النص التوجيهي | diff --git a/comfyui_embedded_docs/docs/ViduTextToVideoNode/pt-BR.md b/comfyui_embedded_docs/docs/ViduTextToVideoNode/pt-BR.md index 394fbad2f..7b0174bd1 100644 --- a/comfyui_embedded_docs/docs/ViduTextToVideoNode/pt-BR.md +++ b/comfyui_embedded_docs/docs/ViduTextToVideoNode/pt-BR.md @@ -20,4 +20,4 @@ O nó Vidu Text To Video Generation cria vídeos a partir de descrições textua | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base no prompt de texto | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base no prompt de texto | diff --git a/comfyui_embedded_docs/docs/ViduTextToVideoNode/tr.md b/comfyui_embedded_docs/docs/ViduTextToVideoNode/tr.md index 3e4fac7f1..4bb7a39a0 100644 --- a/comfyui_embedded_docs/docs/ViduTextToVideoNode/tr.md +++ b/comfyui_embedded_docs/docs/ViduTextToVideoNode/tr.md @@ -20,4 +20,4 @@ Vidu Metinden Videoya Oluşturma düğümü, metin açıklamalarından video olu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Metin ifadesine dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Metin ifadesine dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/ViduTextToVideoNode/zh-TW.md b/comfyui_embedded_docs/docs/ViduTextToVideoNode/zh-TW.md index 8da89b77a..11ad5a245 100644 --- a/comfyui_embedded_docs/docs/ViduTextToVideoNode/zh-TW.md +++ b/comfyui_embedded_docs/docs/ViduTextToVideoNode/zh-TW.md @@ -20,4 +20,4 @@ Vidu 文字轉影片生成節點能根據文字描述建立影片。它使用各 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據文字提示生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據文字提示生成的影片 | diff --git a/comfyui_embedded_docs/docs/VoxelToMesh/ar.md b/comfyui_embedded_docs/docs/VoxelToMesh/ar.md index 81ae07d54..28433d803 100644 --- a/comfyui_embedded_docs/docs/VoxelToMesh/ar.md +++ b/comfyui_embedded_docs/docs/VoxelToMesh/ar.md @@ -14,4 +14,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|--------| -| `MESH` | MESH | الشبكة ثلاثية الأبعاد المُنشأة التي تحتوي على الرؤوس والأوجه | \ No newline at end of file +| `MESH` | MESH | الشبكة ثلاثية الأبعاد المُنشأة التي تحتوي على الرؤوس والأوجه | diff --git a/comfyui_embedded_docs/docs/VoxelToMesh/pt-BR.md b/comfyui_embedded_docs/docs/VoxelToMesh/pt-BR.md index c4168d821..abf7a743c 100644 --- a/comfyui_embedded_docs/docs/VoxelToMesh/pt-BR.md +++ b/comfyui_embedded_docs/docs/VoxelToMesh/pt-BR.md @@ -14,4 +14,4 @@ O nó VoxelToMesh converte dados de voxel 3D em geometria de malha usando difere | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `MESH` | MESH | A malha 3D gerada contendo vértices e faces | \ No newline at end of file +| `MESH` | MESH | A malha 3D gerada contendo vértices e faces | diff --git a/comfyui_embedded_docs/docs/VoxelToMesh/tr.md b/comfyui_embedded_docs/docs/VoxelToMesh/tr.md index e0990a34e..0b4da3644 100644 --- a/comfyui_embedded_docs/docs/VoxelToMesh/tr.md +++ b/comfyui_embedded_docs/docs/VoxelToMesh/tr.md @@ -14,4 +14,4 @@ VoxelToMesh düğümü, 3B voksel verilerini farklı algoritmalar kullanarak mes | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `MESH` | MESH | Köşe noktaları ve yüzeyler içeren oluşturulmuş 3B mesh | \ No newline at end of file +| `MESH` | MESH | Köşe noktaları ve yüzeyler içeren oluşturulmuş 3B mesh | diff --git a/comfyui_embedded_docs/docs/VoxelToMesh/zh-TW.md b/comfyui_embedded_docs/docs/VoxelToMesh/zh-TW.md index dc8987c33..28c258c98 100644 --- a/comfyui_embedded_docs/docs/VoxelToMesh/zh-TW.md +++ b/comfyui_embedded_docs/docs/VoxelToMesh/zh-TW.md @@ -14,4 +14,4 @@ VoxelToMesh 節點使用不同的演算法將 3D 體素資料轉換為網格幾 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `MESH` | MESH | 生成的包含頂點和面的 3D 網格 | \ No newline at end of file +| `MESH` | MESH | 生成的包含頂點和面的 3D 網格 | diff --git a/comfyui_embedded_docs/docs/VoxelToMeshBasic/ar.md b/comfyui_embedded_docs/docs/VoxelToMeshBasic/ar.md index c189d34c9..5ace5357f 100644 --- a/comfyui_embedded_docs/docs/VoxelToMeshBasic/ar.md +++ b/comfyui_embedded_docs/docs/VoxelToMeshBasic/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|-------| -| `MESH` | MESH | الشبكة ثلاثية الأبعاد المُنشأة التي تحتوي على الرؤوس والأوجه | \ No newline at end of file +| `MESH` | MESH | الشبكة ثلاثية الأبعاد المُنشأة التي تحتوي على الرؤوس والأوجه | diff --git a/comfyui_embedded_docs/docs/VoxelToMeshBasic/pt-BR.md b/comfyui_embedded_docs/docs/VoxelToMeshBasic/pt-BR.md index 614d019ff..c14cdd636 100644 --- a/comfyui_embedded_docs/docs/VoxelToMeshBasic/pt-BR.md +++ b/comfyui_embedded_docs/docs/VoxelToMeshBasic/pt-BR.md @@ -13,4 +13,4 @@ O nó VoxelToMeshBasic converte dados de voxel 3D em geometria de malha. Ele pro | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `MESH` | MESH | A malha 3D gerada contendo vértices e faces | \ No newline at end of file +| `MESH` | MESH | A malha 3D gerada contendo vértices e faces | diff --git a/comfyui_embedded_docs/docs/VoxelToMeshBasic/tr.md b/comfyui_embedded_docs/docs/VoxelToMeshBasic/tr.md index 3cb71827e..17625ea0e 100644 --- a/comfyui_embedded_docs/docs/VoxelToMeshBasic/tr.md +++ b/comfyui_embedded_docs/docs/VoxelToMeshBasic/tr.md @@ -13,4 +13,4 @@ VoxelToMeshBasic düğümü, 3B voksel verilerini mesh geometrisine dönüştür | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `MESH` | MESH | Köşe ve yüzler içeren oluşturulmuş 3B mesh | \ No newline at end of file +| `MESH` | MESH | Köşe ve yüzler içeren oluşturulmuş 3B mesh | diff --git a/comfyui_embedded_docs/docs/VoxelToMeshBasic/zh-TW.md b/comfyui_embedded_docs/docs/VoxelToMeshBasic/zh-TW.md index 6a8a4ed8a..a04d8874b 100644 --- a/comfyui_embedded_docs/docs/VoxelToMeshBasic/zh-TW.md +++ b/comfyui_embedded_docs/docs/VoxelToMeshBasic/zh-TW.md @@ -13,4 +13,4 @@ VoxelToMeshBasic 節點將 3D 體素資料轉換為網格幾何體。它通過 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `MESH` | MESH | 生成的包含頂點和面的 3D 網格 | \ No newline at end of file +| `MESH` | MESH | 生成的包含頂點和面的 3D 網格 | diff --git a/comfyui_embedded_docs/docs/VpScheduler/ar.md b/comfyui_embedded_docs/docs/VpScheduler/ar.md index e61fa3b87..1fc24db91 100644 --- a/comfyui_embedded_docs/docs/VpScheduler/ar.md +++ b/comfyui_embedded_docs/docs/VpScheduler/ar.md @@ -15,4 +15,4 @@ | المعامل | نوع البيانات | الوصف | |-------------|-------------|-----------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | تسلسل من مستويات الضوضاء (سيغما) مُولد بناءً على طريقة الجدولة الحافظة للتباين (VP)، يُستخدم لتوجيه عملية إزالة الضوضاء في نماذج الانتشار. | \ No newline at end of file +| `sigmas` | SIGMAS | تسلسل من مستويات الضوضاء (سيغما) مُولد بناءً على طريقة الجدولة الحافظة للتباين (VP)، يُستخدم لتوجيه عملية إزالة الضوضاء في نماذج الانتشار. | diff --git a/comfyui_embedded_docs/docs/VpScheduler/pt-BR.md b/comfyui_embedded_docs/docs/VpScheduler/pt-BR.md index 37aebd877..6c3990504 100644 --- a/comfyui_embedded_docs/docs/VpScheduler/pt-BR.md +++ b/comfyui_embedded_docs/docs/VpScheduler/pt-BR.md @@ -15,4 +15,4 @@ O nó VPScheduler é projetado para gerar uma sequência de níveis de ruído (s | Parâmetro | Tipo de Dados | Descrição | |-------------|-------------|-----------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | Uma sequência de níveis de ruído (sigmas) gerada com base no método de agendamento VP, usada para orientar o processo de remoção de ruído em modelos de difusão. | \ No newline at end of file +| `sigmas` | SIGMAS | Uma sequência de níveis de ruído (sigmas) gerada com base no método de agendamento VP, usada para orientar o processo de remoção de ruído em modelos de difusão. | diff --git a/comfyui_embedded_docs/docs/VpScheduler/tr.md b/comfyui_embedded_docs/docs/VpScheduler/tr.md index 54f1ff118..cb7e521a4 100644 --- a/comfyui_embedded_docs/docs/VpScheduler/tr.md +++ b/comfyui_embedded_docs/docs/VpScheduler/tr.md @@ -15,4 +15,4 @@ VPScheduler düğümü, Varyans Koruma (VP) planlama yöntemine dayalı olarak b | Parametre | Veri Türü | Açıklama | |-------------|-------------|-----------------------------------------------------------------------------------------------| -| `sigmas` | SIGMAS | VP planlama yöntemine dayalı olarak oluşturulan bir gürültü seviyeleri dizisi (sigmas), difüzyon modellerinde gürültü giderme işlemini yönlendirmek için kullanılır. | \ No newline at end of file +| `sigmas` | SIGMAS | VP planlama yöntemine dayalı olarak oluşturulan bir gürültü seviyeleri dizisi (sigmas), difüzyon modellerinde gürültü giderme işlemini yönlendirmek için kullanılır. | diff --git a/comfyui_embedded_docs/docs/VpScheduler/zh-TW.md b/comfyui_embedded_docs/docs/VpScheduler/zh-TW.md index 77ea20e1a..7f039d118 100644 --- a/comfyui_embedded_docs/docs/VpScheduler/zh-TW.md +++ b/comfyui_embedded_docs/docs/VpScheduler/zh-TW.md @@ -15,4 +15,4 @@ VPScheduler 節點旨在基於方差保持(VP)調度方法生成一系列噪 | 參數名稱 | 資料類型 | 描述 | |-------------|-------------|---------------------------------------------------------------------| -| `sigmas` | SIGMAS | 基於 VP 調度方法生成的噪聲水平(sigmas)序列,用於引導擴散模型中的去噪過程。 | \ No newline at end of file +| `sigmas` | SIGMAS | 基於 VP 調度方法生成的噪聲水平(sigmas)序列,用於引導擴散模型中的去噪過程。 | diff --git a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/ar.md b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/ar.md index ab0cf9157..8991c032e 100644 --- a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/ar.md +++ b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/ar.md @@ -24,4 +24,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | الشرطية الإيجابية المعدلة مع بيانات كامنة خاصة بالفيديو | | `negative` | CONDITIONING | الشرطية السلبية المعدلة مع بيانات كامنة خاصة بالفيديو | -| `latent` | LATENT | موتر كامن فارغ بأبعاد مناسبة لتوليد الفيديو | \ No newline at end of file +| `latent` | LATENT | موتر كامن فارغ بأبعاد مناسبة لتوليد الفيديو | diff --git a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/pt-BR.md b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/pt-BR.md index 58ac83aa8..0ca30b01b 100644 --- a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó Wan22FunControlToVideo prepara os condicionamentos e representações late |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com dados latentes específicos para vídeo | | `negative` | CONDITIONING | Condicionamento negativo modificado com dados latentes específicos para vídeo | -| `latent` | LATENT | Tensor latente vazio com dimensões apropriadas para geração de vídeo | \ No newline at end of file +| `latent` | LATENT | Tensor latente vazio com dimensões apropriadas para geração de vídeo | diff --git a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/tr.md b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/tr.md index df3321581..e07ef946a 100644 --- a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/tr.md +++ b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/tr.md @@ -24,4 +24,4 @@ Wan22FunControlToVideo düğümü, Wan video model mimarisi kullanılarak video |-------------|-----------|-------------| | `positive` | CONDITIONING | Video özel gizli veri içeren değiştirilmiş pozitif koşullandırma | | `negative` | CONDITIONING | Video özel gizli veri içeren değiştirilmiş negatif koşullandırma | -| `latent` | LATENT | Video üretimi için uygun boyutlara sahip boş gizli tensör | \ No newline at end of file +| `latent` | LATENT | Video üretimi için uygun boyutlara sahip boş gizli tensör | diff --git a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/zh-TW.md b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/zh-TW.md index ea40b0450..388171cc0 100644 --- a/comfyui_embedded_docs/docs/Wan22FunControlToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/Wan22FunControlToVideo/zh-TW.md @@ -24,4 +24,4 @@ Wan22FunControlToVideo 節點使用 Wan 視訊模型架構,為視訊生成準 |-------------|-----------|-------------| | `positive` | CONDITIONING | 包含視訊專用潛在資料的修改後正向條件調控 | | `negative` | CONDITIONING | 包含視訊專用潛在資料的修改後負向條件調控 | -| `latent` | LATENT | 具有適當維度的空潛在張量,用於視訊生成 | \ No newline at end of file +| `latent` | LATENT | 具有適當維度的空潛在張量,用於視訊生成 | diff --git a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/ar.md b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/ar.md index bcd182ae4..9cd6179e7 100644 --- a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/ar.md +++ b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `samples` | LATENT | التمثيل الكامن للفيديو المُنشأ | -| `noise_mask` | LATENT | قناع الضوضاء الذي يشير إلى المناطق التي يجب إزالة الضوضاء منها أثناء عملية الإنشاء | \ No newline at end of file +| `noise_mask` | LATENT | قناع الضوضاء الذي يشير إلى المناطق التي يجب إزالة الضوضاء منها أثناء عملية الإنشاء | diff --git a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/pt-BR.md b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/pt-BR.md index 4b955bf8b..da5a5882a 100644 --- a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/pt-BR.md +++ b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/pt-BR.md @@ -20,4 +20,4 @@ O nó Wan22ImageToVideoLatent cria representações latentes de vídeo a partir | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| | `samples` | LATENT | A representação latente de vídeo gerada | -| `noise_mask` | LATENT | A máscara de ruído que indica quais regiões devem ser desruídas durante a geração | \ No newline at end of file +| `noise_mask` | LATENT | A máscara de ruído que indica quais regiões devem ser desruídas durante a geração | diff --git a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/tr.md b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/tr.md index d4503d93b..654447ff3 100644 --- a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/tr.md +++ b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/tr.md @@ -20,4 +20,4 @@ Wan22ImageToVideoLatent düğümü, görüntülerden video latent temsilleri olu | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `samples` | LATENT | Oluşturulan video latent temsili | -| `noise_mask` | LATENT | Üretim sırasında hangi bölgelerin gürültüden arındırılması gerektiğini belirten gürültü maskesi | \ No newline at end of file +| `noise_mask` | LATENT | Üretim sırasında hangi bölgelerin gürültüden arındırılması gerektiğini belirten gürültü maskesi | diff --git a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/zh-TW.md b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/zh-TW.md index 82a2249e2..8290a1119 100644 --- a/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/zh-TW.md +++ b/comfyui_embedded_docs/docs/Wan22ImageToVideoLatent/zh-TW.md @@ -20,4 +20,4 @@ Wan22ImageToVideoLatent 節點從圖像創建影片潛在表示。它生成具 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| | `samples` | LATENT | 生成的影片潛在表示 | -| `noise_mask` | LATENT | 指示在生成過程中應對哪些區域進行去噪的噪聲遮罩 | \ No newline at end of file +| `noise_mask` | LATENT | 指示在生成過程中應對哪些區域進行去噪的噪聲遮罩 | diff --git a/comfyui_embedded_docs/docs/WanAnimateToVideo/ar.md b/comfyui_embedded_docs/docs/WanAnimateToVideo/ar.md index 086e35df2..b2ac471fc 100644 --- a/comfyui_embedded_docs/docs/WanAnimateToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanAnimateToVideo/ar.md @@ -43,4 +43,4 @@ | `trim_latent` | INT | معلومات قص الفضاء الكامن للمعالجة اللاحقة | | `trim_image` | INT | معلومات قص مساحة الصورة لإطارات الحركة المرجعية | | `video_frame_offset` | INT | إزاحة الإطار المحدثة لمواصلة توليد الفيديو على شكل أجزاء | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/WanAnimateToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanAnimateToVideo/pt-BR.md index 85a9d3e73..02073a8f4 100644 --- a/comfyui_embedded_docs/docs/WanAnimateToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanAnimateToVideo/pt-BR.md @@ -41,4 +41,4 @@ O nó WanAnimateToVideo gera conteúdo de vídeo combinando múltiplas entradas | `latent` | LATENT | Conteúdo de vídeo gerado no formato de espaço latente | | `trim_latent` | INT | Informação de corte do espaço latente para processamento subsequente | | `trim_image` | INT | Informação de corte do espaço de imagem para quadros de movimento de referência | -| `video_frame_offset` | INT | Deslocamento de quadro atualizado para continuar a geração de vídeo em partes | \ No newline at end of file +| `video_frame_offset` | INT | Deslocamento de quadro atualizado para continuar a geração de vídeo em partes | diff --git a/comfyui_embedded_docs/docs/WanAnimateToVideo/tr.md b/comfyui_embedded_docs/docs/WanAnimateToVideo/tr.md index 920a0a810..6a5b440ea 100644 --- a/comfyui_embedded_docs/docs/WanAnimateToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanAnimateToVideo/tr.md @@ -41,4 +41,4 @@ WanAnimateToVideo düğümü, poz referansları, yüz ifadeleri ve arka plan ö | `latent` | LATENT | Latent uzay formatında oluşturulan video içeriği | | `trim_latent` | INT | Sonraki işlemler için latent uzay kırpma bilgisi | | `trim_image` | INT | Referans hareket kareleri için görüntü uzayı kırpma bilgisi | -| `video_frame_offset` | INT | Video oluşturmayı parçalar halinde devam ettirmek için güncellenmiş kare ofseti | \ No newline at end of file +| `video_frame_offset` | INT | Video oluşturmayı parçalar halinde devam ettirmek için güncellenmiş kare ofseti | diff --git a/comfyui_embedded_docs/docs/WanAnimateToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanAnimateToVideo/zh-TW.md index d0f08006a..4ba2e9816 100644 --- a/comfyui_embedded_docs/docs/WanAnimateToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanAnimateToVideo/zh-TW.md @@ -41,4 +41,4 @@ WanAnimateToVideo 節點透過整合多個條件輸入(包括姿勢參考、 | `latent` | LATENT | 以潛空間格式生成的影片內容 | | `trim_latent` | INT | 用於下游處理的潛空間修剪資訊 | | `trim_image` | INT | 參考運動幀的影像空間修剪資訊 | -| `video_frame_offset` | INT | 用於分段繼續影片生成的更新幀偏移量 | \ No newline at end of file +| `video_frame_offset` | INT | 用於分段繼續影片生成的更新幀偏移量 | diff --git a/comfyui_embedded_docs/docs/WanCameraEmbedding/ar.md b/comfyui_embedded_docs/docs/WanCameraEmbedding/ar.md index 4494850ae..9971d50de 100644 --- a/comfyui_embedded_docs/docs/WanCameraEmbedding/ar.md +++ b/comfyui_embedded_docs/docs/WanCameraEmbedding/ar.md @@ -23,4 +23,4 @@ | `camera_embedding` | TENSOR | موتر التضمين الناتج للكاميرا الذي يحتوي على تسلسل المسار | | `width` | INT | قيمة العرض التي تم استخدامها للمعالجة | | `height` | INT | قيمة الارتفاع التي تم استخدامها للمعالجة | -| `length` | INT | قيمة الطول التي تم استخدامها للمعالجة | \ No newline at end of file +| `length` | INT | قيمة الطول التي تم استخدامها للمعالجة | diff --git a/comfyui_embedded_docs/docs/WanCameraEmbedding/pt-BR.md b/comfyui_embedded_docs/docs/WanCameraEmbedding/pt-BR.md index 1e187dc42..94552705f 100644 --- a/comfyui_embedded_docs/docs/WanCameraEmbedding/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanCameraEmbedding/pt-BR.md @@ -23,4 +23,4 @@ O nó WanCameraEmbedding gera embeddings de trajetória de câmera usando embedd | `camera_embedding` | TENSOR | O tensor de embedding da câmera gerado, contendo a sequência de trajetória | | `width` | INT | O valor de largura que foi usado para o processamento | | `height` | INT | O valor de altura que foi usado para o processamento | -| `length` | INT | O valor de comprimento que foi usado para o processamento | \ No newline at end of file +| `length` | INT | O valor de comprimento que foi usado para o processamento | diff --git a/comfyui_embedded_docs/docs/WanCameraEmbedding/tr.md b/comfyui_embedded_docs/docs/WanCameraEmbedding/tr.md index bd32b5aa3..c22b85a10 100644 --- a/comfyui_embedded_docs/docs/WanCameraEmbedding/tr.md +++ b/comfyui_embedded_docs/docs/WanCameraEmbedding/tr.md @@ -23,4 +23,4 @@ WanCameraEmbedding düğümü, kamera hareket parametrelerine dayalı olarak Pl | `camera_embedding` | TENSOR | Yörünge dizisini içeren oluşturulmuş kamera gömme tensörü | | `width` | INT | İşleme için kullanılan genişlik değeri | | `height` | INT | İşleme için kullanılan yükseklik değeri | -| `length` | INT | İşleme için kullanılan uzunluk değeri | \ No newline at end of file +| `length` | INT | İşleme için kullanılan uzunluk değeri | diff --git a/comfyui_embedded_docs/docs/WanCameraEmbedding/zh-TW.md b/comfyui_embedded_docs/docs/WanCameraEmbedding/zh-TW.md index 9222718af..80a0cfc64 100644 --- a/comfyui_embedded_docs/docs/WanCameraEmbedding/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanCameraEmbedding/zh-TW.md @@ -23,4 +23,4 @@ WanCameraEmbedding 節點使用基於攝影機運動參數的 Plücker 嵌入來 | `camera_embedding` | TENSOR | 生成的攝影機嵌入張量,包含軌跡序列 | | `width` | INT | 用於處理的寬度數值 | | `height` | INT | 用於處理的高度數值 | -| `length` | INT | 用於處理的長度數值 | \ No newline at end of file +| `length` | INT | 用於處理的長度數值 | diff --git a/comfyui_embedded_docs/docs/WanCameraImageToVideo/ar.md b/comfyui_embedded_docs/docs/WanCameraImageToVideo/ar.md index e9775e698..389fddec2 100644 --- a/comfyui_embedded_docs/docs/WanCameraImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanCameraImageToVideo/ar.md @@ -25,4 +25,4 @@ |------------|--------------|--------| | `positive` | CONDITIONING | التكييف الإيجابي المعدل مع تطبيق شروط الكاميرا ومخرجات رؤية CLIP | | `negative` | CONDITIONING | التكييف السلبي المعدل مع تطبيق شروط الكاميرا ومخرجات رؤية CLIP | -| `latent` | LATENT | التمثيل الكامن للفيديو المُولد لاستخدامه مع نماذج الفيديو | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو المُولد لاستخدامه مع نماذج الفيديو | diff --git a/comfyui_embedded_docs/docs/WanCameraImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanCameraImageToVideo/pt-BR.md index 9811a2632..76f1c7dd8 100644 --- a/comfyui_embedded_docs/docs/WanCameraImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanCameraImageToVideo/pt-BR.md @@ -25,4 +25,4 @@ O nó WanCameraImageToVideo converte imagens em sequências de vídeo gerando re |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com as condições de câmera e saídas de visão CLIP aplicadas | | `negative` | CONDITIONING | Condicionamento negativo modificado com as condições de câmera e saídas de visão CLIP aplicadas | -| `latent` | LATENT | Representação latente de vídeo gerada para uso com modelos de vídeo | \ No newline at end of file +| `latent` | LATENT | Representação latente de vídeo gerada para uso com modelos de vídeo | diff --git a/comfyui_embedded_docs/docs/WanCameraImageToVideo/tr.md b/comfyui_embedded_docs/docs/WanCameraImageToVideo/tr.md index da096e1b0..39de958cc 100644 --- a/comfyui_embedded_docs/docs/WanCameraImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanCameraImageToVideo/tr.md @@ -25,4 +25,4 @@ WanCameraImageToVideo düğümü, video üretimi için gizli temsiller oluştura |-------------|-----------|-------------| | `positive` | CONDITIONING | Uygulanan kamera koşulları ve clip vision çıktıları ile değiştirilmiş pozitif koşullandırma | | `negative` | CONDITIONING | Uygulanan kamera koşulları ve clip vision çıktıları ile değiştirilmiş negatif koşullandırma | -| `latent` | LATENT | Video modelleriyle kullanım için üretilen video gizli temsili | \ No newline at end of file +| `latent` | LATENT | Video modelleriyle kullanım için üretilen video gizli temsili | diff --git a/comfyui_embedded_docs/docs/WanCameraImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanCameraImageToVideo/zh-TW.md index b94e7b705..445ffd70f 100644 --- a/comfyui_embedded_docs/docs/WanCameraImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanCameraImageToVideo/zh-TW.md @@ -25,4 +25,4 @@ WanCameraImageToVideo 節點透過生成用於影片生成的潛在表徵,將 |-------------|-----------|-------------| | `positive` | CONDITIONING | 應用相機條件和 CLIP 視覺輸出後的修改版正面條件 | | `negative` | CONDITIONING | 應用相機條件和 CLIP 視覺輸出後的修改版負面條件 | -| `latent` | LATENT | 生成的影片潛在表徵,可供影片模型使用 | \ No newline at end of file +| `latent` | LATENT | 生成的影片潛在表徵,可供影片模型使用 | diff --git a/comfyui_embedded_docs/docs/WanContextWindowsManual/ar.md b/comfyui_embedded_docs/docs/WanContextWindowsManual/ar.md index 6bc4fac81..123146605 100644 --- a/comfyui_embedded_docs/docs/WanContextWindowsManual/ar.md +++ b/comfyui_embedded_docs/docs/WanContextWindowsManual/ar.md @@ -20,4 +20,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | النموذج مع تكوين نافذة السياق المطبقة عليه. | \ No newline at end of file +| `model` | MODEL | النموذج مع تكوين نافذة السياق المطبقة عليه. | diff --git a/comfyui_embedded_docs/docs/WanContextWindowsManual/pt-BR.md b/comfyui_embedded_docs/docs/WanContextWindowsManual/pt-BR.md index bdf5399ca..4acc3eab3 100644 --- a/comfyui_embedded_docs/docs/WanContextWindowsManual/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanContextWindowsManual/pt-BR.md @@ -20,4 +20,4 @@ O nó WAN Context Windows (Manual) permite configurar manualmente janelas de con | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O modelo com a configuração de janela de contexto aplicada. | \ No newline at end of file +| `model` | MODEL | O modelo com a configuração de janela de contexto aplicada. | diff --git a/comfyui_embedded_docs/docs/WanContextWindowsManual/tr.md b/comfyui_embedded_docs/docs/WanContextWindowsManual/tr.md index b215ab7f3..2fe4826c2 100644 --- a/comfyui_embedded_docs/docs/WanContextWindowsManual/tr.md +++ b/comfyui_embedded_docs/docs/WanContextWindowsManual/tr.md @@ -20,4 +20,4 @@ WAN Context Windows (Manual) düğümü, 2 boyutlu işleme yeteneğine sahip WAN | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Uygulanan bağlam penceresi yapılandırmasına sahip model. | \ No newline at end of file +| `model` | MODEL | Uygulanan bağlam penceresi yapılandırmasına sahip model. | diff --git a/comfyui_embedded_docs/docs/WanContextWindowsManual/zh-TW.md b/comfyui_embedded_docs/docs/WanContextWindowsManual/zh-TW.md index ee68aff05..be74a677f 100644 --- a/comfyui_embedded_docs/docs/WanContextWindowsManual/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanContextWindowsManual/zh-TW.md @@ -20,4 +20,4 @@ WAN 上下文窗口(手動)節點允許您為具有二維處理功能的類 | 輸出名稱 | 資料類型 | 說明 | |-------------|-----------|-------------| -| `model` | MODEL | 已應用上下文窗口配置的模型。 | \ No newline at end of file +| `model` | MODEL | 已應用上下文窗口配置的模型。 | diff --git a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/ar.md b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/ar.md index fe81b3f6b..fbaa1dd6b 100644 --- a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/ar.md @@ -26,4 +26,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | التنسيق الشرطي الإيجابي مع تطبيق ترميز إطارات الفيديو وميزات رؤية CLIP | | `مضمر` | CONDITIONING | التنسيق الشرطي السلبي مع تطبيق ترميز إطارات الفيديو وميزات رؤية CLIP | -| `latent` | LATENT | موتر كامن فارغ بأبعاد تطابق معلمات الفيديو المحددة | \ No newline at end of file +| `latent` | LATENT | موتر كامن فارغ بأبعاد تطابق معلمات الفيديو المحددة | diff --git a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/pt-BR.md index 118766a59..d561d113e 100644 --- a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/pt-BR.md @@ -26,4 +26,4 @@ O nó WanFirstLastFrameToVideo cria condicionamento de vídeo combinando quadros |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo com codificação de quadro de vídeo e recursos de visão CLIP aplicados | | `negative` | CONDITIONING | Condicionamento negativo com codificação de quadro de vídeo e recursos de visão CLIP aplicados | -| `latent` | LATENT | Tensor latente vazio com dimensões correspondentes aos parâmetros de vídeo especificados | \ No newline at end of file +| `latent` | LATENT | Tensor latente vazio com dimensões correspondentes aos parâmetros de vídeo especificados | diff --git a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/tr.md b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/tr.md index 9dbb0955b..eba6311f0 100644 --- a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/tr.md @@ -26,4 +26,4 @@ WanFirstLastFrameToVideo düğümü, başlangıç ve bitiş karelerini metin ist |-------------|-----------|-------------| | `negatif` | CONDITIONING | Uygulanan video kare kodlaması ve CLIP görsel özellikleri içeren pozitif koşullandırma | | `gizli` | CONDITIONING | Uygulanan video kare kodlaması ve CLIP görsel özellikleri içeren negatif koşullandırma | -| `latent` | LATENT | Belirtilen video parametreleriyle eşleşen boyutlara sahip boş gizli tensör | \ No newline at end of file +| `latent` | LATENT | Belirtilen video parametreleriyle eşleşen boyutlara sahip boş gizli tensör | diff --git a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/zh-TW.md index 46053e0bd..ead64e8b9 100644 --- a/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanFirstLastFrameToVideo/zh-TW.md @@ -26,4 +26,4 @@ WanFirstLastFrameToVideo 節點透過結合起始與結束畫面以及文字提 |-------------|-----------|-------------| | `負向` | CONDITIONING | 已應用影片畫面編碼與 CLIP 視覺特徵的正向條件化 | | `潛在空間` | CONDITIONING | 已應用影片畫面編碼與 CLIP 視覺特徵的負向條件化 | -| `latent` | LATENT | 符合指定影片參數維度的空潛在張量 | \ No newline at end of file +| `latent` | LATENT | 符合指定影片參數維度的空潛在張量 | diff --git a/comfyui_embedded_docs/docs/WanFunControlToVideo/ar.md b/comfyui_embedded_docs/docs/WanFunControlToVideo/ar.md index 0d28b291a..1713eb489 100644 --- a/comfyui_embedded_docs/docs/WanFunControlToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanFunControlToVideo/ar.md @@ -31,4 +31,4 @@ |:-------------------|:-------------------|:-------------------------------------------------------------| | positive | CONDITIONING | يوفر بيانات تكييف إيجابية مُحسنة، تتضمن start_image و control_video المُشفرين. | | negative | CONDITIONING | يوفر بيانات تكييف سلبية تم تحسينها أيضًا، تحتوي على نفس concat_latent_image. | -| latent | LATENT | قاموس يحتوي على موتر كمون فارغ بالمفتاح "samples". | \ No newline at end of file +| latent | LATENT | قاموس يحتوي على موتر كمون فارغ بالمفتاح "samples". | diff --git a/comfyui_embedded_docs/docs/WanFunControlToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanFunControlToVideo/pt-BR.md index 7bc791170..13bf47c65 100644 --- a/comfyui_embedded_docs/docs/WanFunControlToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanFunControlToVideo/pt-BR.md @@ -31,4 +31,4 @@ A posição do nó na hierarquia de nós do ComfyUI indica que ele opera nos est |:-------------------|:-------------------|:-----------------------------------------------------------| | `positive` | CONDITIONING | Fornece dados de condicionamento positivo aprimorados, incluindo a `start_image` e o `control_video` codificados. | | `negative` | CONDITIONING | Fornece dados de condicionamento negativo que também foram aprimorados, contendo o mesmo `concat_latent_image`. | -| `latent` | LATENT | Um dicionário contendo um tensor latente vazio com a chave "samples". | \ No newline at end of file +| `latent` | LATENT | Um dicionário contendo um tensor latente vazio com a chave "samples". | diff --git a/comfyui_embedded_docs/docs/WanFunControlToVideo/tr.md b/comfyui_embedded_docs/docs/WanFunControlToVideo/tr.md index 111f113b8..ba4cc4746 100644 --- a/comfyui_embedded_docs/docs/WanFunControlToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanFunControlToVideo/tr.md @@ -31,4 +31,4 @@ Düğümün ComfyUI düğüm hiyerarşisindeki konumu, video oluşturma işlem h |:-------------------|:-------------------|:-------------------------------------------------------------| | `negatif` | CONDITIONING | Kodlanmış `başlangıç_görüntüsü` ve `kontrol_videosu`'yu içeren geliştirilmiş pozitif koşullandırma verisini sağlar. | | `gizli` | CONDITIONING | Aynı `concat_latent_image`'ı içeren, aynı zamanda geliştirilmiş negatif koşullandırma verisini sağlar. | -| `latent` | LATENT | "samples" anahtarına sahip boş bir gizli tensör içeren bir sözlük. | \ No newline at end of file +| `latent` | LATENT | "samples" anahtarına sahip boş bir gizli tensör içeren bir sözlük. | diff --git a/comfyui_embedded_docs/docs/WanFunControlToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanFunControlToVideo/zh-TW.md index 97c20572d..ae662d8bc 100644 --- a/comfyui_embedded_docs/docs/WanFunControlToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanFunControlToVideo/zh-TW.md @@ -31,4 +31,4 @@ WanFunControlToVideo 節點是 ComfyUI 的擴充功能,旨在支援萬 Fun Con |:-------------------|:-------------------|:-----------------------------------------------------| | positive | CONDITIONING | 提供增強的正面條件資料,包括編碼後的 `起始影像` 和 `控制影片`。 | | negative | CONDITIONING | 提供同樣經過增強的負面條件資料,包含相同的 `concat_latent_image`。 | -| latent | LATENT | 包含帶有 "samples" 鍵的空潛在張量的字典。 | \ No newline at end of file +| latent | LATENT | 包含帶有 "samples" 鍵的空潛在張量的字典。 | diff --git a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/ar.md b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/ar.md index dc26257cb..b30a4f4a7 100644 --- a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/ar.md @@ -23,4 +23,4 @@ |-------------|-----------|-------------| | `سلبي` | CONDITIONING | ناتج التكييف الإيجابي المعالج | | `مضمر` | CONDITIONING | ناتج التكييف السلبي المعالج | -| `latent` | LATENT | التمثيل الكموني للفيديو المُولد | \ No newline at end of file +| `latent` | LATENT | التمثيل الكموني للفيديو المُولد | diff --git a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/pt-BR.md index 1f828459b..6a40a55a8 100644 --- a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/pt-BR.md @@ -23,4 +23,4 @@ O nó WanFunInpaintToVideo cria sequências de vídeo realizando inpainting entr |-------------|-----------|-------------| | `positive` | CONDITIONING | Saída de condicionamento positivo processada | | `negative` | CONDITIONING | Saída de condicionamento negativo processada | -| `latent` | LATENT | Representação latente do vídeo gerado | \ No newline at end of file +| `latent` | LATENT | Representação latente do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/tr.md b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/tr.md index 93d067017..1b8393353 100644 --- a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/tr.md @@ -23,4 +23,4 @@ WanFunInpaintToVideo düğümü, başlangıç ve bitiş görüntüleri arasında |-------------|-----------|-------------| | `negatif` | CONDITIONING | İşlenmiş pozitif koşullandırma çıktısı | | `gizli` | CONDITIONING | İşlenmiş negatif koşullandırma çıktısı | -| `latent` | LATENT | Oluşturulan video latent temsili | \ No newline at end of file +| `latent` | LATENT | Oluşturulan video latent temsili | diff --git a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/zh-TW.md index e2246f817..f006be0a2 100644 --- a/comfyui_embedded_docs/docs/WanFunInpaintToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanFunInpaintToVideo/zh-TW.md @@ -23,4 +23,4 @@ WanFunInpaintToVideo 節點透過在起始圖像和結束圖像之間進行修 |-------------|-----------|-------------| | `負向` | CONDITIONING | 處理後的正向條件輸出 | | `潛在空間` | CONDITIONING | 處理後的反向條件輸出 | -| `latent` | LATENT | 生成的影片潛在表示 | \ No newline at end of file +| `latent` | LATENT | 生成的影片潛在表示 | diff --git a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/ar.md b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/ar.md index 65bacf637..8bd7b0614 100644 --- a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/ar.md @@ -26,4 +26,4 @@ | `positive` | CONDITIONING | التكييف الإيجابي المعدل مع دمج الصورة المرجعية و/أو التضمينات الصوتية | | `negative` | CONDITIONING | التكييف السلبي المعدل مع دمج الصورة المرجعية و/أو التضمينات الصوتية | | `latent` | LATENT | التمثيل الكامن المُولد الذي يحتوي على بيانات تسلسل الفيديو | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/pt-BR.md index 88ac6a1c0..f5040b401 100644 --- a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó WanHuMoImageToVideo converte imagens em sequências de vídeo gerando repr |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com a imagem de referência e/ou embeddings de áudio incorporados | | `negative` | CONDITIONING | Condicionamento negativo modificado com a imagem de referência e/ou embeddings de áudio incorporados | -| `latent` | LATENT | Representação latente gerada contendo os dados da sequência de vídeo | \ No newline at end of file +| `latent` | LATENT | Representação latente gerada contendo os dados da sequência de vídeo | diff --git a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/tr.md b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/tr.md index 4635be828..7bab220c3 100644 --- a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/tr.md @@ -24,4 +24,4 @@ WanHuMoImageToVideo düğümü, görüntüleri video dizilerine dönüştürerek |-------------|-----------|-------------| | `positive` | CONDITIONING | Referans görüntü ve/veya ses gömüleri dahil edilmiş değiştirilmiş pozitif koşullandırma | | `negative` | CONDITIONING | Referans görüntü ve/veya ses gömüleri dahil edilmiş değiştirilmiş negatif koşullandırma | -| `latent` | LATENT | Video dizi verilerini içeren oluşturulmuş gizli temsil | \ No newline at end of file +| `latent` | LATENT | Video dizi verilerini içeren oluşturulmuş gizli temsil | diff --git a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/zh-TW.md index 4c467fde8..d4f8778a3 100644 --- a/comfyui_embedded_docs/docs/WanHuMoImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanHuMoImageToVideo/zh-TW.md @@ -24,4 +24,4 @@ WanHuMoImageToVideo 節點透過為影片影格生成潛在表徵來將圖像轉 |-------------|-----------|-------------| | `positive` | CONDITIONING | 經過修改的正向條件,已整合參考圖像和/或音訊嵌入 | | `negative` | CONDITIONING | 經過修改的負向條件,已整合參考圖像和/或音訊嵌入 | -| `latent` | LATENT | 生成的潛在表徵,包含影片序列資料 | \ No newline at end of file +| `latent` | LATENT | 生成的潛在表徵,包含影片序列資料 | diff --git a/comfyui_embedded_docs/docs/WanImageToImageApi/ar.md b/comfyui_embedded_docs/docs/WanImageToImageApi/ar.md index 2cdc3c67c..174b68486 100644 --- a/comfyui_embedded_docs/docs/WanImageToImageApi/ar.md +++ b/comfyui_embedded_docs/docs/WanImageToImageApi/ar.md @@ -21,4 +21,4 @@ | اسم المُخرَج | نوع البيانات | الوصف | |--------------|---------------|-------------------------------------------------| | `image` | IMAGE | الصورة المُنشأة بناءً على الصور المُدخلة والنصوص الموجهة. | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/WanImageToImageApi/pt-BR.md b/comfyui_embedded_docs/docs/WanImageToImageApi/pt-BR.md index f9c66d1f9..42920089a 100644 --- a/comfyui_embedded_docs/docs/WanImageToImageApi/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanImageToImageApi/pt-BR.md @@ -19,4 +19,4 @@ O nó Wan Image to Image gera uma imagem a partir de uma ou duas imagens de entr | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `image` | IMAGE | A imagem gerada com base nas imagens de entrada e prompts de texto. | \ No newline at end of file +| `image` | IMAGE | A imagem gerada com base nas imagens de entrada e prompts de texto. | diff --git a/comfyui_embedded_docs/docs/WanImageToImageApi/tr.md b/comfyui_embedded_docs/docs/WanImageToImageApi/tr.md index a57eb7e82..2d7a3f3b8 100644 --- a/comfyui_embedded_docs/docs/WanImageToImageApi/tr.md +++ b/comfyui_embedded_docs/docs/WanImageToImageApi/tr.md @@ -19,4 +19,4 @@ Wan Image to Image düğümü, bir veya iki giriş görseli ve bir metin istemin | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `image` | IMAGE | Girdi görselleri ve metin istemlerine dayalı olarak oluşturulan görsel. | \ No newline at end of file +| `image` | IMAGE | Girdi görselleri ve metin istemlerine dayalı olarak oluşturulan görsel. | diff --git a/comfyui_embedded_docs/docs/WanImageToImageApi/zh-TW.md b/comfyui_embedded_docs/docs/WanImageToImageApi/zh-TW.md index 0054eed4f..b8436988b 100644 --- a/comfyui_embedded_docs/docs/WanImageToImageApi/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanImageToImageApi/zh-TW.md @@ -19,4 +19,4 @@ Wan Image to Image 節點根據一或兩張輸入圖片和文字提示生成圖 | 輸出名稱 | 資料類型 | 輸出說明 | |-------------|-----------|-------------| -| `image` | IMAGE | 根據輸入圖片和文字提示生成的圖像。 | \ No newline at end of file +| `image` | IMAGE | 根據輸入圖片和文字提示生成的圖像。 | diff --git a/comfyui_embedded_docs/docs/WanImageToVideo/ar.md b/comfyui_embedded_docs/docs/WanImageToVideo/ar.md index 95c2cb918..7e741cfa9 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanImageToVideo/ar.md @@ -26,4 +26,4 @@ | `سلبي` | CONDITIONING | التكييف الإيجابي المعدل مع دمج بيانات الصورة والرؤية | | `مضمر` | CONDITIONING | التكييف السلبي المعدل مع دمج بيانات الصورة والرؤية | | `latent` | LATENT | موتر المساحة الكامنة الفارغ الجاهز لتوليد الفيديو | -``` \ No newline at end of file +``` diff --git a/comfyui_embedded_docs/docs/WanImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanImageToVideo/pt-BR.md index a8290ca1c..86241e0a3 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanImageToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó WanImageToVideo prepara representações de condicionamento e latentes par |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo modificado com dados de imagem e visão incorporados | | `negative` | CONDITIONING | Condicionamento negativo modificado com dados de imagem e visão incorporados | -| `latent` | LATENT | Tensor de espaço latente vazio pronto para geração de vídeo | \ No newline at end of file +| `latent` | LATENT | Tensor de espaço latente vazio pronto para geração de vídeo | diff --git a/comfyui_embedded_docs/docs/WanImageToVideo/tr.md b/comfyui_embedded_docs/docs/WanImageToVideo/tr.md index 0a7b46eb4..40303d5dc 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanImageToVideo/tr.md @@ -24,4 +24,4 @@ WanImageToVideo düğümü, video üretimi görevleri için koşullandırma ve g |-------------|-----------|-------------| | `negatif` | CONDITIONING | Görüntü ve görü verileri dahil edilmiş değiştirilmiş pozitif koşullandırma | | `gizli` | CONDITIONING | Görüntü ve görü verileri dahil edilmiş değiştirilmiş negatif koşullandırma | -| `latent` | LATENT | Video üretimi için hazır boş gizli alan tensörü | \ No newline at end of file +| `latent` | LATENT | Video üretimi için hazır boş gizli alan tensörü | diff --git a/comfyui_embedded_docs/docs/WanImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanImageToVideo/zh-TW.md index 8625f8a09..e4db63c40 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanImageToVideo/zh-TW.md @@ -24,4 +24,4 @@ WanImageToVideo 節點為影片生成任務準備條件約束和潛在表示。 |-------------|-----------|-------------| | `負向` | CONDITIONING | 已整合圖像和視覺資料的修改後正向條件約束 | | `潛在空間` | CONDITIONING | 已整合圖像和視覺資料的修改後負向條件約束 | -| `latent` | LATENT | 準備用於影片生成的空潛在空間張量 | \ No newline at end of file +| `latent` | LATENT | 準備用於影片生成的空潛在空間張量 | diff --git a/comfyui_embedded_docs/docs/WanImageToVideoApi/ar.md b/comfyui_embedded_docs/docs/WanImageToVideoApi/ar.md index 466f3449c..81e98eec8 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideoApi/ar.md +++ b/comfyui_embedded_docs/docs/WanImageToVideoApi/ar.md @@ -28,4 +28,4 @@ | اسم المخرج | نوع البيانات | الوصف | |------------|---------------|--------| -| `output` | VIDEO | الفيديو المُنشأ بناءً على صورة الإدخال والنص الموجه | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشأ بناءً على صورة الإدخال والنص الموجه | diff --git a/comfyui_embedded_docs/docs/WanImageToVideoApi/pt-BR.md b/comfyui_embedded_docs/docs/WanImageToVideoApi/pt-BR.md index 77f1cc7c5..75c628a3d 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideoApi/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanImageToVideoApi/pt-BR.md @@ -28,4 +28,4 @@ O nó Wan Image to Video gera conteúdo de vídeo a partir de uma única imagem | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | Vídeo gerado com base na imagem de entrada e no prompt | \ No newline at end of file +| `output` | VIDEO | Vídeo gerado com base na imagem de entrada e no prompt | diff --git a/comfyui_embedded_docs/docs/WanImageToVideoApi/tr.md b/comfyui_embedded_docs/docs/WanImageToVideoApi/tr.md index 73d249948..22965d247 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideoApi/tr.md +++ b/comfyui_embedded_docs/docs/WanImageToVideoApi/tr.md @@ -28,4 +28,4 @@ Wan Image to Video düğümü, tek bir giriş görüntüsü ve bir metin istemin | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Giriş görüntüsü ve istemine dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Giriş görüntüsü ve istemine dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/WanImageToVideoApi/zh-TW.md b/comfyui_embedded_docs/docs/WanImageToVideoApi/zh-TW.md index d8cc1f63d..c2e3d9043 100644 --- a/comfyui_embedded_docs/docs/WanImageToVideoApi/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanImageToVideoApi/zh-TW.md @@ -30,4 +30,4 @@ Wan Image to Video 節點從單一輸入圖像和文字提示開始生成影片 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 基於輸入圖像和提示生成的影片 | \ No newline at end of file +| `output` | VIDEO | 基於輸入圖像和提示生成的影片 | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ar.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ar.md index 624f1d257..476585318 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ar.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ar.md @@ -13,4 +13,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `tracks` | TRACKS | بيانات تتبع الحركة المدمجة، والتي تحتوي على `track_path` و `track_visibility` المجمعين من المدخلات. | \ No newline at end of file +| `tracks` | TRACKS | بيانات تتبع الحركة المدمجة، والتي تحتوي على `track_path` و `track_visibility` المجمعين من المدخلات. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/en.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/en.md index 350b9c079..918a4abb0 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/en.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/en.md @@ -13,4 +13,4 @@ The WanMoveConcatTrack node combines two sets of motion tracking data into a sin | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `tracks` | TRACKS | The concatenated motion tracking data, containing the combined `track_path` and `track_visibility` from the inputs. | \ No newline at end of file +| `tracks` | TRACKS | The concatenated motion tracking data, containing the combined `track_path` and `track_visibility` from the inputs. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/es.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/es.md index 43beba179..a77afa67a 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/es.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/es.md @@ -13,4 +13,4 @@ El nodo WanMoveConcatTrack combina dos conjuntos de datos de seguimiento de movi | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `tracks` | TRACKS | Los datos de seguimiento de movimiento concatenados, que contienen la combinación de `track_path` y `track_visibility` de las entradas. | \ No newline at end of file +| `tracks` | TRACKS | Los datos de seguimiento de movimiento concatenados, que contienen la combinación de `track_path` y `track_visibility` de las entradas. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/fr.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/fr.md index 29b8ccfbd..c8cfcad94 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/fr.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/fr.md @@ -15,4 +15,4 @@ Le nœud WanMoveConcatTrack combine deux ensembles de données de suivi de mouve | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `tracks` | TRACKS | Les données de suivi de mouvement concaténées, contenant la combinaison des `track_path` et `track_visibility` provenant des entrées. | \ No newline at end of file +| `tracks` | TRACKS | Les données de suivi de mouvement concaténées, contenant la combinaison des `track_path` et `track_visibility` provenant des entrées. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ja.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ja.md index 7f919f8bf..c5f7b1d1a 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ja.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ja.md @@ -13,4 +13,4 @@ WanMoveConcatTrackノードは、2つのモーショントラッキングデー | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `tracks` | TRACKS | 結合されたモーショントラッキングデータです。入力から結合された`track_path`と`track_visibility`を含みます。 | \ No newline at end of file +| `tracks` | TRACKS | 結合されたモーショントラッキングデータです。入力から結合された`track_path`と`track_visibility`を含みます。 | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ko.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ko.md index 030a36d28..d0ea1d5be 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ko.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ko.md @@ -13,4 +13,4 @@ WanMoveConcatTrack 노드는 두 세트의 모션 트래킹 데이터를 하나 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `tracks` | TRACKS | 연결된 모션 트래킹 데이터로, 입력에서 결합된 `track_path`와 `track_visibility`를 포함합니다. | \ No newline at end of file +| `tracks` | TRACKS | 연결된 모션 트래킹 데이터로, 입력에서 결합된 `track_path`와 `track_visibility`를 포함합니다. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/pt-BR.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/pt-BR.md index 183aa42c1..38a256fee 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/pt-BR.md @@ -13,4 +13,4 @@ O nó WanMoveConcatTrack combina dois conjuntos de dados de rastreamento de movi | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `tracks` | TRACKS | Os dados de rastreamento de movimento concatenados, contendo o `track_path` e o `track_visibility` combinados das entradas. | \ No newline at end of file +| `tracks` | TRACKS | Os dados de rastreamento de movimento concatenados, contendo o `track_path` e o `track_visibility` combinados das entradas. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ru.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ru.md index 0a9402a5d..c098b7e40 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/ru.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/ru.md @@ -13,4 +13,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `tracks` | TRACKS | Объединенные данные отслеживания движения, содержащие комбинированные `track_path` и `track_visibility` из входных данных. | \ No newline at end of file +| `tracks` | TRACKS | Объединенные данные отслеживания движения, содержащие комбинированные `track_path` и `track_visibility` из входных данных. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/tr.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/tr.md index d72b6b8fa..18671b3c0 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/tr.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/tr.md @@ -13,4 +13,4 @@ WanMoveConcatTrack düğümü, iki hareket izleme verisi setini tek, daha uzun b | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `tracks` | TRACKS | Birleştirilmiş hareket izleme verisi. Girişlerden gelen birleşik `track_path` ve `track_visibility` içerir. | \ No newline at end of file +| `tracks` | TRACKS | Birleştirilmiş hareket izleme verisi. Girişlerden gelen birleşik `track_path` ve `track_visibility` içerir. | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh-TW.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh-TW.md index 95b90683b..94e6a702e 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh-TW.md @@ -13,4 +13,4 @@ WanMoveConcatTrack 節點將兩組運動追蹤資料合併為一個更長的序 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `tracks` | TRACKS | 串接後的運動追蹤資料,包含來自輸入的合併 `track_path` 和 `track_visibility`。 | \ No newline at end of file +| `tracks` | TRACKS | 串接後的運動追蹤資料,包含來自輸入的合併 `track_path` 和 `track_visibility`。 | diff --git a/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh.md b/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh.md index 26c7f3aea..3d93a0164 100644 --- a/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh.md +++ b/comfyui_embedded_docs/docs/WanMoveConcatTrack/zh.md @@ -13,4 +13,4 @@ WanMoveConcatTrack 节点将两组运动跟踪数据合并为一个更长的序 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `tracks` | TRACKS | 连接后的运动跟踪数据,包含来自输入的合并后的 `track_path` 和 `track_visibility`。 | \ No newline at end of file +| `tracks` | TRACKS | 连接后的运动跟踪数据,包含来自输入的合并后的 `track_path` 和 `track_visibility`。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ar.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ar.md index 496add644..3195e1e98 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ar.md @@ -26,4 +26,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | التكييف الإيجابي المعدل، والذي قد يحتوي على `concat_latent_image` و `concat_mask` و `clip_vision_output`. | | `negative` | CONDITIONING | التكييف السلبي المعدل، والذي قد يحتوي على `concat_latent_image` و `concat_mask` و `clip_vision_output`. | -| `latent` | LATENT | موتر كامن فارغ بأبعاد مشكلة بواسطة مدخلات `batch_size` و `length` و `height` و `width`. | \ No newline at end of file +| `latent` | LATENT | موتر كامن فارغ بأبعاد مشكلة بواسطة مدخلات `batch_size` و `length` و `height` و `width`. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/en.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/en.md index a38e6c3f6..b69677036 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/en.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/en.md @@ -26,4 +26,4 @@ The WanMoveTrackToVideo node prepares conditioning and latent space data for vid |-------------|-----------|-------------| | `positive` | CONDITIONING | The modified positive conditioning, potentially containing `concat_latent_image`, `concat_mask`, and `clip_vision_output`. | | `negative` | CONDITIONING | The modified negative conditioning, potentially containing `concat_latent_image`, `concat_mask`, and `clip_vision_output`. | -| `latent` | LATENT | An empty latent tensor with dimensions shaped by the `batch_size`, `length`, `height`, and `width` inputs. | \ No newline at end of file +| `latent` | LATENT | An empty latent tensor with dimensions shaped by the `batch_size`, `length`, `height`, and `width` inputs. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/es.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/es.md index bf6b129dd..f35c76dac 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/es.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/es.md @@ -26,4 +26,4 @@ El nodo WanMoveTrackToVideo prepara datos de condicionamiento y del espacio late |-------------|-----------|-------------| | `positive` | CONDITIONING | El condicionamiento positivo modificado, que potencialmente contiene `concat_latent_image`, `concat_mask` y `clip_vision_output`. | | `negative` | CONDITIONING | El condicionamiento negativo modificado, que potencialmente contiene `concat_latent_image`, `concat_mask` y `clip_vision_output`. | -| `latent` | LATENT | Un tensor latente vacío con dimensiones configuradas por las entradas `batch_size`, `length`, `height` y `width`. | \ No newline at end of file +| `latent` | LATENT | Un tensor latente vacío con dimensiones configuradas por las entradas `batch_size`, `length`, `height` y `width`. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/fr.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/fr.md index 8323c0147..f24407bb8 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/fr.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/fr.md @@ -26,4 +26,4 @@ Le nœud WanMoveTrackToVideo prépare les données de conditionnement et d'espac |-------------|-----------|-------------| | `positive` | CONDITIONING | Le conditionnement positif modifié, contenant potentiellement `concat_latent_image`, `concat_mask` et `clip_vision_output`. | | `negative` | CONDITIONING | Le conditionnement négatif modifié, contenant potentiellement `concat_latent_image`, `concat_mask` et `clip_vision_output`. | -| `latent` | LATENT | Un tenseur latent vide dont les dimensions sont définies par les entrées `batch_size`, `length`, `height` et `width`. | \ No newline at end of file +| `latent` | LATENT | Un tenseur latent vide dont les dimensions sont définies par les entrées `batch_size`, `length`, `height` et `width`. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ja.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ja.md index 8de7d2239..e93c8312b 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ja.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ja.md @@ -26,4 +26,4 @@ WanMoveTrackToVideoノードは、オプションのモーショントラッキ |-------------|-----------|-------------| | `positive` | CONDITIONING | 修正されたポジティブコンディショニング。`concat_latent_image`、`concat_mask`、`clip_vision_output`を含む可能性があります。 | | `negative` | CONDITIONING | 修正されたネガティブコンディショニング。`concat_latent_image`、`concat_mask`、`clip_vision_output`を含む可能性があります。 | -| `latent` | LATENT | `batch_size`、`length`、`height`、`width`入力によって形状が決まる次元を持つ空の潜在テンソル。 | \ No newline at end of file +| `latent` | LATENT | `batch_size`、`length`、`height`、`width`入力によって形状が決まる次元を持つ空の潜在テンソル。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ko.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ko.md index 6a763c2e6..2cc1b012a 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ko.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ko.md @@ -26,4 +26,4 @@ WanMoveTrackToVideo 노드는 비디오 생성을 위한 조건화 및 잠재 |-------------|-----------|-------------| | `positive` | CONDITIONING | 수정된 긍정 조건화로, `concat_latent_image`, `concat_mask`, `clip_vision_output`를 포함할 수 있습니다. | | `negative` | CONDITIONING | 수정된 부정 조건화로, `concat_latent_image`, `concat_mask`, `clip_vision_output`를 포함할 수 있습니다. | -| `latent` | LATENT | `batch_size`, `length`, `height`, `width` 입력에 의해 형성된 차원을 가진 빈 잠재 텐서입니다. | \ No newline at end of file +| `latent` | LATENT | `batch_size`, `length`, `height`, `width` 입력에 의해 형성된 차원을 가진 빈 잠재 텐서입니다. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/pt-BR.md index 59bc43dc3..78252ebcc 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/pt-BR.md @@ -26,4 +26,4 @@ O nó WanMoveTrackToVideo prepara dados de condicionamento e do espaço latente |-------------|-----------|-------------| | `positive` | CONDITIONING | O condicionamento positivo modificado, potencialmente contendo `concat_latent_image`, `concat_mask` e `clip_vision_output`. | | `negative` | CONDITIONING | O condicionamento negativo modificado, potencialmente contendo `concat_latent_image`, `concat_mask` e `clip_vision_output`. | -| `latent` | LATENT | Um tensor latente vazio com dimensões moldadas pelas entradas `batch_size`, `length`, `height` e `width`. | \ No newline at end of file +| `latent` | LATENT | Um tensor latente vazio com dimensões moldadas pelas entradas `batch_size`, `length`, `height` e `width`. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ru.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ru.md index 82a9882b3..6a8eae73d 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ru.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/ru.md @@ -26,4 +26,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | Модифицированное позитивное кондиционирование, потенциально содержащее `concat_latent_image`, `concat_mask` и `clip_vision_output`. | | `negative` | CONDITIONING | Модифицированное негативное кондиционирование, потенциально содержащее `concat_latent_image`, `concat_mask` и `clip_vision_output`. | -| `latent` | LATENT | Пустой латентный тензор с размерами, заданными входами `batch_size`, `length`, `height` и `width`. | \ No newline at end of file +| `latent` | LATENT | Пустой латентный тензор с размерами, заданными входами `batch_size`, `length`, `height` и `width`. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/tr.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/tr.md index 53c749319..dc4c49e5d 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/tr.md @@ -26,4 +26,4 @@ WanMoveTrackToVideo düğümü, video oluşturma için koşullandırma ve gizli |-------------|-----------|-------------| | `positive` | CONDITIONING | Değiştirilmiş pozitif koşullandırma, potansiyel olarak `concat_latent_image`, `concat_mask` ve `clip_vision_output` içerir. | | `negative` | CONDITIONING | Değiştirilmiş negatif koşullandırma, potansiyel olarak `concat_latent_image`, `concat_mask` ve `clip_vision_output` içerir. | -| `latent` | LATENT | `batch_size`, `length`, `height` ve `width` girişleri tarafından şekillendirilen boyutlara sahip boş bir gizli tensör. | \ No newline at end of file +| `latent` | LATENT | `batch_size`, `length`, `height` ve `width` girişleri tarafından şekillendirilen boyutlara sahip boş bir gizli tensör. | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh-TW.md index 8e2aea90c..c53422bee 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh-TW.md @@ -26,4 +26,4 @@ WanMoveTrackToVideo 節點為影片生成準備條件設定和潛在空間資料 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改後的正向條件設定,可能包含 `concat_latent_image`、`concat_mask` 和 `clip_vision_output`。 | | `negative` | CONDITIONING | 修改後的負向條件設定,可能包含 `concat_latent_image`、`concat_mask` 和 `clip_vision_output`。 | -| `latent` | LATENT | 一個空的潛在張量,其維度由 `batch_size`、`length`、`height` 和 `width` 輸入參數決定。 | \ No newline at end of file +| `latent` | LATENT | 一個空的潛在張量,其維度由 `batch_size`、`length`、`height` 和 `width` 輸入參數決定。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh.md b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh.md index 18e600d8c..ac5a85aa9 100644 --- a/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh.md +++ b/comfyui_embedded_docs/docs/WanMoveTrackToVideo/zh.md @@ -26,4 +26,4 @@ WanMoveTrackToVideo 节点为视频生成准备条件数据和潜在空间数据 |-------------|-----------|-------------| | `positive` | CONDITIONING | 修改后的正向条件数据,可能包含 `concat_latent_image`、`concat_mask` 和 `clip_vision_output`。 | | `negative` | CONDITIONING | 修改后的负向条件数据,可能包含 `concat_latent_image`、`concat_mask` 和 `clip_vision_output`。 | -| `latent` | LATENT | 一个空的潜在张量,其维度由 `batch_size`、`length`、`height` 和 `width` 输入决定。 | \ No newline at end of file +| `latent` | LATENT | 一个空的潜在张量,其维度由 `batch_size`、`length`、`height` 和 `width` 输入决定。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ar.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ar.md index 59652ae83..d4ab224d4 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ar.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ar.md @@ -18,4 +18,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| | `tracks` | TRACKS | بيانات المسارات المُنشأة، والتي تحتوي على إحداثيات المسار ومعلومات الوضوح لكل مسار. | -| `track_length` | INT | العدد الإجمالي للإطارات في المسارات المُنشأة. | \ No newline at end of file +| `track_length` | INT | العدد الإجمالي للإطارات في المسارات المُنشأة. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/en.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/en.md index 2af4ee1d2..7043cfde5 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/en.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/en.md @@ -16,4 +16,4 @@ The WanMoveTracksFromCoords node creates a set of motion tracks from a list of c | Output Name | Data Type | Description | |-------------|-----------|-------------| | `tracks` | TRACKS | The generated track data, containing the path coordinates and visibility information for each track. | -| `track_length` | INT | The total number of frames in the generated tracks. | \ No newline at end of file +| `track_length` | INT | The total number of frames in the generated tracks. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/es.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/es.md index fbc6f7861..4172a9bd3 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/es.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/es.md @@ -16,4 +16,4 @@ El nodo WanMoveTracksFromCoords crea un conjunto de pistas de movimiento a parti | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| | `tracks` | TRACKS | Los datos de pista generados, que contienen las coordenadas de la ruta y la información de visibilidad para cada pista. | -| `track_length` | INT | El número total de fotogramas en las pistas generadas. | \ No newline at end of file +| `track_length` | INT | El número total de fotogramas en las pistas generadas. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/fr.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/fr.md index 8f4b52dc6..a6f62cbab 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/fr.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/fr.md @@ -18,4 +18,4 @@ Le nœud WanMoveTracksFromCoords génère un ensemble de pistes de mouvement à | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| | `tracks` | TRACKS | Les données de piste générées, contenant les coordonnées du chemin et les informations de visibilité pour chaque piste. | -| `track_length` | INT | Le nombre total d'images dans les pistes générées. | \ No newline at end of file +| `track_length` | INT | Le nombre total d'images dans les pistes générées. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ja.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ja.md index 278daba12..95a6df78e 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ja.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ja.md @@ -16,4 +16,4 @@ WanMoveTracksFromCoordsノードは、座標点のリストから一連のモー | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| | `tracks` | TRACKS | 生成されたトラックデータで、各トラックのパス座標と可視性情報を含みます。 | -| `track_length` | INT | 生成されたトラックの総フレーム数です。 | \ No newline at end of file +| `track_length` | INT | 生成されたトラックの総フレーム数です。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ko.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ko.md index ece553ea4..7f5cb037e 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ko.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ko.md @@ -16,4 +16,4 @@ WanMoveTracksFromCoords 노드는 좌표점 목록으로부터 모션 트랙 세 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| | `tracks` | TRACKS | 생성된 트랙 데이터로, 각 트랙의 경로 좌표와 가시성 정보를 포함합니다. | -| `track_length` | INT | 생성된 트랙의 총 프레임 수입니다. | \ No newline at end of file +| `track_length` | INT | 생성된 트랙의 총 프레임 수입니다. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/pt-BR.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/pt-BR.md index ab2100004..e57644f5f 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/pt-BR.md @@ -16,4 +16,4 @@ O nó WanMoveTracksFromCoords cria um conjunto de trilhas de movimento a partir | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| | `tracks` | TRACKS | Os dados de trilha gerados, contendo as coordenadas do caminho e as informações de visibilidade para cada trilha. | -| `track_length` | INT | O número total de quadros nas trilhas geradas. | \ No newline at end of file +| `track_length` | INT | O número total de quadros nas trilhas geradas. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ru.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ru.md index de0967d04..1b8ef4f2c 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ru.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/ru.md @@ -16,4 +16,4 @@ | Название выхода | Тип данных | Описание | |-------------|-----------|-------------| | `tracks` | TRACKS | Сгенерированные данные треков, содержащие координаты пути и информацию о видимости для каждого трека. | -| `track_length` | INT | Общее количество кадров в сгенерированных треках. | \ No newline at end of file +| `track_length` | INT | Общее количество кадров в сгенерированных треках. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/tr.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/tr.md index 83e90c48a..f5545cd72 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/tr.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/tr.md @@ -16,4 +16,4 @@ WanMoveTracksFromCoords düğümü, bir koordinat noktaları listesinden bir diz | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| | `tracks` | TRACKS | Oluşturulan iz verileri; her bir iz için yol koordinatlarını ve görünürlük bilgisini içerir. | -| `track_length` | INT | Oluşturulan izlerdeki toplam kare sayısı. | \ No newline at end of file +| `track_length` | INT | Oluşturulan izlerdeki toplam kare sayısı. | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh-TW.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh-TW.md index e460a93ee..9e45442f2 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh-TW.md @@ -16,4 +16,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| | `tracks` | TRACKS | 產生的軌跡資料,包含每條軌跡的路徑座標和可見性資訊。 | -| `track_length` | INT | 所產生軌跡的總幀數。 | \ No newline at end of file +| `track_length` | INT | 所產生軌跡的總幀數。 | diff --git a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh.md b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh.md index 66e875039..c83a2c9ce 100644 --- a/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh.md +++ b/comfyui_embedded_docs/docs/WanMoveTracksFromCoords/zh.md @@ -16,4 +16,4 @@ WanMoveTracksFromCoords 节点根据一系列坐标点创建一组运动轨迹 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| | `tracks` | TRACKS | 生成的轨迹数据,包含每条轨迹的路径坐标和可见性信息。 | -| `track_length` | INT | 生成轨迹的总帧数。 | \ No newline at end of file +| `track_length` | INT | 生成轨迹的总帧数。 | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ar.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ar.md index 49fc47dcd..a3a9dfecb 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ar.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | سلسلة الصور مع بيانات تتبع الحركة المرسومة كرسوم مركبة. إذا لم يتم توفير `tracks`، يتم إرجاع الصور المدخلة الأصلية. | \ No newline at end of file +| `IMAGE` | IMAGE | سلسلة الصور مع بيانات تتبع الحركة المرسومة كرسوم مركبة. إذا لم يتم توفير `tracks`، يتم إرجاع الصور المدخلة الأصلية. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/en.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/en.md index cdec48714..259209660 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/en.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/en.md @@ -19,4 +19,4 @@ The WanMoveVisualizeTracks node overlays motion tracking data onto a sequence of | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | The sequence of images with the motion tracking data visualized as overlays. If no `tracks` were provided, the original input images are returned. | \ No newline at end of file +| `IMAGE` | IMAGE | The sequence of images with the motion tracking data visualized as overlays. If no `tracks` were provided, the original input images are returned. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/es.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/es.md index 79cf78c79..7ff99f9e7 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/es.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/es.md @@ -19,4 +19,4 @@ El nodo WanMoveVisualizeTracks superpone datos de seguimiento de movimiento sobr | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | La secuencia de imágenes con los datos de seguimiento de movimiento visualizados como superposiciones. Si no se proporcionaron `tracks`, se devuelven las imágenes de entrada originales. | \ No newline at end of file +| `IMAGE` | IMAGE | La secuencia de imágenes con los datos de seguimiento de movimiento visualizados como superposiciones. Si no se proporcionaron `tracks`, se devuelven las imágenes de entrada originales. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/fr.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/fr.md index 582051fa1..a68280a1c 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/fr.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/fr.md @@ -19,4 +19,4 @@ Le nœud WanMoveVisualizeTracks superpose des données de suivi de mouvement sur | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | La séquence d'images avec les données de suivi de mouvement visualisées sous forme de superpositions. Si aucun `tracks` n'a été fourni, les images d'entrée originales sont renvoyées. | \ No newline at end of file +| `IMAGE` | IMAGE | La séquence d'images avec les données de suivi de mouvement visualisées sous forme de superpositions. Si aucun `tracks` n'a été fourni, les images d'entrée originales sont renvoyées. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ja.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ja.md index 2b06c29cc..b427b3a0a 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ja.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ja.md @@ -19,4 +19,4 @@ WanMoveVisualizeTracksノードは、モーション追跡データを一連の | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | モーション追跡データがオーバーレイとして可視化された画像シーケンス。`tracks`が提供されなかった場合は、元の入力画像が返されます。 | \ No newline at end of file +| `IMAGE` | IMAGE | モーション追跡データがオーバーレイとして可視化された画像シーケンス。`tracks`が提供されなかった場合は、元の入力画像が返されます。 | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ko.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ko.md index d18e48b61..682b165fd 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ko.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ko.md @@ -19,4 +19,4 @@ WanMoveVisualizeTracks 노드는 모션 트래킹 데이터를 일련의 이미 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 모션 트래킹 데이터가 오버레이로 시각화된 이미지 시퀀스입니다. `tracks`가 제공되지 않으면 원본 입력 이미지가 반환됩니다. | \ No newline at end of file +| `IMAGE` | IMAGE | 모션 트래킹 데이터가 오버레이로 시각화된 이미지 시퀀스입니다. `tracks`가 제공되지 않으면 원본 입력 이미지가 반환됩니다. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/pt-BR.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/pt-BR.md index 698e56c8f..9596043f9 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/pt-BR.md @@ -19,4 +19,4 @@ O nó WanMoveVisualizeTracks sobrepõe dados de rastreamento de movimento a uma | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A sequência de imagens com os dados de rastreamento de movimento visualizados como sobreposições. Se nenhum `tracks` foi fornecido, as imagens de entrada originais são retornadas. | \ No newline at end of file +| `IMAGE` | IMAGE | A sequência de imagens com os dados de rastreamento de movimento visualizados como sobreposições. Se nenhum `tracks` foi fornecido, as imagens de entrada originais são retornadas. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ru.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ru.md index bda05e9b6..d2b19a0b6 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ru.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/ru.md @@ -19,4 +19,4 @@ | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Последовательность изображений с данными отслеживания движения, визуализированными в виде наложений. Если данные `tracks` не были предоставлены, возвращаются исходные входные изображения. | \ No newline at end of file +| `IMAGE` | IMAGE | Последовательность изображений с данными отслеживания движения, визуализированными в виде наложений. Если данные `tracks` не были предоставлены, возвращаются исходные входные изображения. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/tr.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/tr.md index 07fb1c883..6d7fc7dbf 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/tr.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/tr.md @@ -19,4 +19,4 @@ WanMoveVisualizeTracks düğümü, hareket takip verilerini bir görüntü dizis | Çıkış Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | Hareket takip verisinin bindirme olarak görselleştirildiği görüntü dizisi. Eğer `tracks` sağlanmadıysa, orijinal giriş görüntüleri döndürülür. | \ No newline at end of file +| `IMAGE` | IMAGE | Hareket takip verisinin bindirme olarak görselleştirildiği görüntü dizisi. Eğer `tracks` sağlanmadıysa, orijinal giriş görüntüleri döndürülür. | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh-TW.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh-TW.md index 99f855395..81222be59 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh-TW.md @@ -19,4 +19,4 @@ WanMoveVisualizeTracks 節點將運動追蹤數據疊加在一系列圖像或影 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 已將運動追蹤數據視覺化為疊加層的圖像序列。如果未提供 `tracks`,則返回原始輸入圖像。 | \ No newline at end of file +| `IMAGE` | IMAGE | 已將運動追蹤數據視覺化為疊加層的圖像序列。如果未提供 `tracks`,則返回原始輸入圖像。 | diff --git a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh.md b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh.md index a2eaa7f31..c9ca22c2b 100644 --- a/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh.md +++ b/comfyui_embedded_docs/docs/WanMoveVisualizeTracks/zh.md @@ -19,4 +19,4 @@ WanMoveVisualizeTracks 节点将运动跟踪数据叠加到一系列图像或视 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 将运动跟踪数据可视化为叠加层后的图像序列。如果未提供 `tracks`,则返回原始输入图像。 | \ No newline at end of file +| `IMAGE` | IMAGE | 将运动跟踪数据可视化为叠加层后的图像序列。如果未提供 `tracks`,则返回原始输入图像。 | diff --git a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/ar.md b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/ar.md index 3adb6be75..04fc76f56 100644 --- a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/ar.md @@ -24,4 +24,4 @@ | `positive` | CONDITIONING | التكييف الإيجابي المعدل مع تسلسل بعد الزمن عند توفير الصور | | `negative_text` | CONDITIONING | التكييف السلبي المعدل مع تسلسل بعد الزمن عند توفير الصور | | `negative_img_text` | CONDITIONING | التكييف السلبي مع تسلسل بعد الزمن مُعادل بالصفر عند توفير الصور | -| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ بالأبعاد والطول المحددين | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ بالأبعاد والطول المحددين | diff --git a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/pt-BR.md index a58255b30..b58f74e7a 100644 --- a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/pt-BR.md @@ -24,4 +24,4 @@ O nó WanPhantomSubjectToVideo gera conteúdo de vídeo processando entradas de | `positive` | CONDITIONING | Condicionamento positivo modificado com concatenação temporal quando imagens são fornecidas | | `negative_text` | CONDITIONING | Condicionamento negativo modificado com concatenação temporal quando imagens são fornecidas | | `negative_img_text` | CONDITIONING | Condicionamento negativo com concatenação temporal zerada quando imagens são fornecidas | -| `latent` | LATENT | Representação latente de vídeo gerada com as dimensões e duração especificadas | \ No newline at end of file +| `latent` | LATENT | Representação latente de vídeo gerada com as dimensões e duração especificadas | diff --git a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/tr.md b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/tr.md index 66314c350..6b322728e 100644 --- a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/tr.md @@ -24,4 +24,4 @@ WanPhantomSubjectToVideo düğümü, koşullandırma girdilerini ve isteğe bağ | `positive` | CONDITIONING | Görüntüler sağlandığında zaman-boyutlu birleştirme ile değiştirilmiş pozitif koşullandırma | | `negative_text` | CONDITIONING | Görüntüler sağlandığında zaman-boyutlu birleştirme ile değiştirilmiş negatif koşullandırma | | `negative_img_text` | CONDITIONING | Görüntüler sağlandığında zaman-boyutlu birleştirme sıfırlanmış negatif koşullandırma | -| `latent` | LATENT | Belirtilen boyutlar ve uzunlukta üretilmiş gizli video temsili | \ No newline at end of file +| `latent` | LATENT | Belirtilen boyutlar ve uzunlukta üretilmiş gizli video temsili | diff --git a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/zh-TW.md index 5102417ad..51f64ebf5 100644 --- a/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanPhantomSubjectToVideo/zh-TW.md @@ -24,4 +24,4 @@ WanPhantomSubjectToVideo 節點透過處理條件輸入和可選的參考圖像 | `positive` | CONDITIONING | 修改後的正向條件資料,在提供圖像時包含時間維度串接 | | `negative_text` | CONDITIONING | 修改後的負向條件資料,在提供圖像時包含時間維度串接 | | `negative_img_text` | CONDITIONING | 負向條件資料,在提供圖像時時間維度串接被歸零 | -| `latent` | LATENT | 生成的潛在影片表徵,具有指定的尺寸和長度 | \ No newline at end of file +| `latent` | LATENT | 生成的潛在影片表徵,具有指定的尺寸和長度 | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ar.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ar.md index 30aeaa9b6..f4b07885b 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ar.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ar.md @@ -17,11 +17,12 @@ | `watermark` | BOOLEAN | لا | - | عند التمكين، يتم إضافة علامة مائية من إنشاء الذكاء الاصطناعي إلى الفيديو النهائي (القيمة الافتراضية: False). | **القيود:** -* يجب أن يكون طول كل فيديو مُقدم في `reference_videos` بين 2 و 30 ثانية. -* معامل `duration` محدود بقيم معينة (5 أو 10 ثوانٍ). + +* يجب أن يكون طول كل فيديو مُقدم في `reference_videos` بين 2 و 30 ثانية. +* معامل `duration` محدود بقيم معينة (5 أو 10 ثوانٍ). ## المخرجات | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | ملف الفيديو المُنشأ حديثًا. | \ No newline at end of file +| `output` | VIDEO | ملف الفيديو المُنشأ حديثًا. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/en.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/en.md index a00a6c1ba..2c5f38a49 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/en.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/en.md @@ -17,11 +17,12 @@ The Wan Reference to Video node uses the visual appearance and voice from one or | `watermark` | BOOLEAN | No | - | When enabled, an AI-generated watermark is added to the final video (default: False). | **Constraints:** -* Each video provided in `reference_videos` must be between 2 and 30 seconds in duration. -* The `duration` parameter is limited to specific values (5 or 10 seconds). + +* Each video provided in `reference_videos` must be between 2 and 30 seconds in duration. +* The `duration` parameter is limited to specific values (5 or 10 seconds). ## Outputs | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `output` | VIDEO | The newly generated video file. | \ No newline at end of file +| `output` | VIDEO | The newly generated video file. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/es.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/es.md index b7b4b3dc4..614f8375d 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/es.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/es.md @@ -17,11 +17,12 @@ El nodo Wan Reference to Video utiliza la apariencia visual y la voz de uno o m | `watermark` | BOOLEAN | No | - | Cuando está habilitado, se añade una marca de agua generada por IA al video final (por defecto: Falso). | **Restricciones:** -* Cada video proporcionado en `reference_videos` debe tener una duración entre 2 y 30 segundos. -* El parámetro `duration` está limitado a valores específicos (5 o 10 segundos). + +* Cada video proporcionado en `reference_videos` debe tener una duración entre 2 y 30 segundos. +* El parámetro `duration` está limitado a valores específicos (5 o 10 segundos). ## Salidas | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `output` | VIDEO | El archivo de video recién generado. | \ No newline at end of file +| `output` | VIDEO | El archivo de video recién generado. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/fr.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/fr.md index 6b2130366..7bed40422 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/fr.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/fr.md @@ -17,11 +17,12 @@ Le nœud Wan Reference to Video utilise l'apparence visuelle et la voix d'une ou | `watermark` | BOOLEAN | Non | - | Lorsqu'activé, un filigrane généré par IA est ajouté à la vidéo finale (par défaut : Faux). | **Contraintes :** -* Chaque vidéo fournie dans `reference_videos` doit avoir une durée comprise entre 2 et 30 secondes. -* Le paramètre `duration` est limité à des valeurs spécifiques (5 ou 10 secondes). + +* Chaque vidéo fournie dans `reference_videos` doit avoir une durée comprise entre 2 et 30 secondes. +* Le paramètre `duration` est limité à des valeurs spécifiques (5 ou 10 secondes). ## Sorties | Nom de sortie | Type de données | Description | |-------------|-----------|-------------| -| `output` | VIDEO | Le nouveau fichier vidéo généré. | \ No newline at end of file +| `output` | VIDEO | Le nouveau fichier vidéo généré. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ja.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ja.md index d946fd5b1..88feb35f1 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ja.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ja.md @@ -17,11 +17,12 @@ Wan Reference to Video ノードは、1つ以上の入力参照動画の視覚 | `watermark` | BOOLEAN | いいえ | - | 有効にすると、最終的な動画にAI生成の透かしが追加されます(デフォルト: False)。 | **制約事項:** -* `reference_videos` で提供される各動画の長さは、2秒から30秒の間である必要があります。 -* `duration` パラメータは特定の値(5秒または10秒)に制限されています。 + +* `reference_videos` で提供される各動画の長さは、2秒から30秒の間である必要があります。 +* `duration` パラメータは特定の値(5秒または10秒)に制限されています。 ## 出力 | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `output` | VIDEO | 新しく生成された動画ファイルです。 | \ No newline at end of file +| `output` | VIDEO | 新しく生成された動画ファイルです。 | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ko.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ko.md index 0f0e78838..826786b85 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ko.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ko.md @@ -17,11 +17,12 @@ Wan Reference to Video 노드는 하나 이상의 입력 참조 동영상에서 | `watermark` | BOOLEAN | 아니요 | - | 활성화하면 최종 동영상에 AI 생성 워터마크가 추가됩니다 (기본값: False). | **제약사항:** -* `reference_videos`에 제공된 각 동영상은 길이가 2초에서 30초 사이여야 합니다. -* `duration` 매개변수는 특정 값(5초 또는 10초)으로 제한됩니다. + +* `reference_videos`에 제공된 각 동영상은 길이가 2초에서 30초 사이여야 합니다. +* `duration` 매개변수는 특정 값(5초 또는 10초)으로 제한됩니다. ## 출력 | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `output` | VIDEO | 새로 생성된 동영상 파일입니다. | \ No newline at end of file +| `output` | VIDEO | 새로 생성된 동영상 파일입니다. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/pt-BR.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/pt-BR.md index 0dcceaae0..c433f2f6e 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/pt-BR.md @@ -17,11 +17,12 @@ O nó Wan Reference to Video utiliza a aparência visual e a voz de um ou mais v | `watermark` | BOOLEAN | Não | - | Quando habilitado, uma marca d'água gerada por IA é adicionada ao vídeo final (padrão: Falso). | **Restrições:** -* Cada vídeo fornecido em `reference_videos` deve ter entre 2 e 30 segundos de duração. -* O parâmetro `duration` está limitado a valores específicos (5 ou 10 segundos). + +* Cada vídeo fornecido em `reference_videos` deve ter entre 2 e 30 segundos de duração. +* O parâmetro `duration` está limitado a valores específicos (5 ou 10 segundos). ## Saídas | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O novo arquivo de vídeo gerado. | \ No newline at end of file +| `output` | VIDEO | O novo arquivo de vídeo gerado. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ru.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ru.md index d22196d59..248f9a3fb 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/ru.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/ru.md @@ -17,11 +17,12 @@ | `watermark` | BOOLEAN | Нет | - | При включении на итоговое видео добавляется сгенерированный AI водяной знак (по умолчанию: False). | **Ограничения:** -* Каждое видео, предоставленное в `reference_videos`, должно иметь продолжительность от 2 до 30 секунд. -* Параметр `duration` ограничен конкретными значениями (5 или 10 секунд). + +* Каждое видео, предоставленное в `reference_videos`, должно иметь продолжительность от 2 до 30 секунд. +* Параметр `duration` ограничен конкретными значениями (5 или 10 секунд). ## Выходные данные | Выходной параметр | Тип данных | Описание | |-------------|-----------|-------------| -| `output` | VIDEO | Вновь сгенерированный видеофайл. | \ No newline at end of file +| `output` | VIDEO | Вновь сгенерированный видеофайл. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/tr.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/tr.md index ff83f95d6..87159f6dc 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/tr.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/tr.md @@ -17,11 +17,12 @@ Wan Referanstan Video düğümü, bir veya daha fazla girdi referans videosundan | `watermark` | BOOLEAN | Hayır | - | Etkinleştirildiğinde, son videoya AI tarafından oluşturulmuş bir filigran eklenir (varsayılan: False). | **Kısıtlamalar:** -* `reference_videos` içinde sağlanan her video 2 ila 30 saniye arasında bir süreye sahip olmalıdır. -* `duration` parametresi belirli değerlerle (5 veya 10 saniye) sınırlıdır. + +* `reference_videos` içinde sağlanan her video 2 ila 30 saniye arasında bir süreye sahip olmalıdır. +* `duration` parametresi belirli değerlerle (5 veya 10 saniye) sınırlıdır. ## Çıktılar | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Yeni oluşturulan video dosyası. | \ No newline at end of file +| `output` | VIDEO | Yeni oluşturulan video dosyası. | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh-TW.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh-TW.md index ccdc41023..966972767 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh-TW.md @@ -17,11 +17,12 @@ Wan Reference to Video 節點使用一個或多個輸入參考影片的視覺外 | `watermark` | BOOLEAN | 否 | - | 啟用時,會在最終影片上添加一個 AI 生成的水印(預設值:False)。 | **限制條件:** -* `reference_videos` 中提供的每個影片時長必須在 2 到 30 秒之間。 -* `duration` 參數僅限於特定值(5 或 10 秒)。 + +* `reference_videos` 中提供的每個影片時長必須在 2 到 30 秒之間。 +* `duration` 參數僅限於特定值(5 或 10 秒)。 ## 輸出結果 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 新生成的影片檔案。 | \ No newline at end of file +| `output` | VIDEO | 新生成的影片檔案。 | diff --git a/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh.md b/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh.md index ee54f25b8..035d00185 100644 --- a/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh.md +++ b/comfyui_embedded_docs/docs/WanReferenceVideoApi/zh.md @@ -17,11 +17,12 @@ Wan Reference to Video 节点利用一个或多个输入参考视频的视觉外 | `watermark` | BOOLEAN | 否 | - | 启用后,会在最终视频上添加一个 AI 生成的水印(默认值:False)。 | **约束条件:** -* `reference_videos` 中提供的每个视频时长必须在 2 到 30 秒之间。 -* `duration` 参数仅限于特定值(5 或 10 秒)。 + +* `reference_videos` 中提供的每个视频时长必须在 2 到 30 秒之间。 +* `duration` 参数仅限于特定值(5 或 10 秒)。 ## 输出参数 | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 新生成的视频文件。 | \ No newline at end of file +| `output` | VIDEO | 新生成的视频文件。 | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideo/ar.md b/comfyui_embedded_docs/docs/WanSoundImageToVideo/ar.md index e0c91a811..e328a3b20 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideo/ar.md @@ -24,4 +24,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | التكييف الإيجابي المعالج الذي تم تعديله لتوليد الفيديو | | `negative` | CONDITIONING | التكييف السلبي المعالج الذي تم تعديله لتوليد الفيديو | -| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ في الفضاء الكامن والذي يمكن فك تشفيره إلى إطارات فيديو نهائية | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ في الفضاء الكامن والذي يمكن فك تشفيره إلى إطارات فيديو نهائية | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanSoundImageToVideo/pt-BR.md index 40bc972ef..c624d1513 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideo/pt-BR.md @@ -26,4 +26,4 @@ O nó WanSoundImageToVideo gera conteúdo de vídeo a partir de imagens com cond |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo processado que foi modificado para geração de vídeo | | `negative` | CONDITIONING | Condicionamento negativo processado que foi modificado para geração de vídeo | -| `latent` | LATENT | Representação do vídeo gerado no espaço latente, que pode ser decodificada em quadros de vídeo finais | \ No newline at end of file +| `latent` | LATENT | Representação do vídeo gerado no espaço latente, que pode ser decodificada em quadros de vídeo finais | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideo/tr.md b/comfyui_embedded_docs/docs/WanSoundImageToVideo/tr.md index 908a52a23..a12b6f2ea 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideo/tr.md @@ -24,4 +24,4 @@ WanSoundImageToVideo düğümü, görüntülerden isteğe bağlı ses koşulland |-------------|-----------|-------------| | `positive` | CONDITIONING | Video oluşturma için değiştirilmiş, işlenmiş olumlu koşullandırma | | `negative` | CONDITIONING | Video oluşturma için değiştirilmiş, işlenmiş olumsuz koşullandırma | -| `latent` | LATENT | Nihai video karelerine dönüştürülebilecek, latent uzayda oluşturulmuş video temsili | \ No newline at end of file +| `latent` | LATENT | Nihai video karelerine dönüştürülebilecek, latent uzayda oluşturulmuş video temsili | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanSoundImageToVideo/zh-TW.md index a62dfa960..66601e9aa 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideo/zh-TW.md @@ -24,4 +24,4 @@ WanSoundImageToVideo 節點能從圖像生成影片內容,並可選擇性地 |-------------|-----------|-------------| | `positive` | CONDITIONING | 經處理後適用於影片生成的正向條件 | | `negative` | CONDITIONING | 經處理後適用於影片生成的負向條件 | -| `latent` | LATENT | 在潛在空間中生成的影片表徵,可解碼為最終影片幀 | \ No newline at end of file +| `latent` | LATENT | 在潛在空間中生成的影片表徵,可解碼為最終影片幀 | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/ar.md b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/ar.md index 49f032424..cff0709c9 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/ar.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/ar.md @@ -21,4 +21,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | بيانات التكييف الإيجابية المعالجة مع تطبيق سياق الفيديو | | `negative` | CONDITIONING | بيانات التكييف السلبية المعالجة مع تطبيق سياق الفيديو | -| `latent` | LATENT | التمثيل الكامن للفيديو المُولد الذي يحتوي على تسلسل الفيديو الممتد | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو المُولد الذي يحتوي على تسلسل الفيديو الممتد | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/pt-BR.md b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/pt-BR.md index 0dbb1693b..4d8fc0aff 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/pt-BR.md @@ -21,4 +21,4 @@ O nó WanSoundImageToVideoExtend estende a geração de imagem para vídeo incor |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo processado com o contexto de vídeo aplicado | | `negative` | CONDITIONING | Condicionamento negativo processado com o contexto de vídeo aplicado | -| `latent` | LATENT | Representação latente de vídeo gerada contendo a sequência de vídeo estendida | \ No newline at end of file +| `latent` | LATENT | Representação latente de vídeo gerada contendo a sequência de vídeo estendida | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/tr.md b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/tr.md index 869a78540..ab90f704d 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/tr.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/tr.md @@ -21,4 +21,4 @@ WanSoundImageToVideoExtend düğümü, ses koşullandırması ve referans görü |-------------|-----------|-------------| | `positive` | CONDITIONING | Video bağlamı uygulanmış işlenmiş pozitif koşullandırma | | `negative` | CONDITIONING | Video bağlamı uygulanmış işlenmiş negatif koşullandırma | -| `latent` | LATENT | Genişletilmiş video dizisini içeren oluşturulmuş video latent temsili | \ No newline at end of file +| `latent` | LATENT | Genişletilmiş video dizisini içeren oluşturulmuş video latent temsili | diff --git a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/zh-TW.md b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/zh-TW.md index 4ee2ab4dd..515b1f624 100644 --- a/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanSoundImageToVideoExtend/zh-TW.md @@ -21,4 +21,4 @@ WanSoundImageToVideoExtend 節點透過整合音訊條件和參考圖像來擴 |-------------|-----------|-------------| | `positive` | CONDITIONING | 已應用影片上下文處理後的正向條件提示 | | `negative` | CONDITIONING | 已應用影片上下文處理後的負向條件提示 | -| `latent` | LATENT | 包含擴展影片序列的生成影片潛在表示 | \ No newline at end of file +| `latent` | LATENT | 包含擴展影片序列的生成影片潛在表示 | diff --git a/comfyui_embedded_docs/docs/WanTextToImageApi/ar.md b/comfyui_embedded_docs/docs/WanTextToImageApi/ar.md index 39deddd15..bb16ecb8c 100644 --- a/comfyui_embedded_docs/docs/WanTextToImageApi/ar.md +++ b/comfyui_embedded_docs/docs/WanTextToImageApi/ar.md @@ -19,4 +19,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|---------------|-------------------------------------------| -| `output` | IMAGE | الصورة المُولَّدة استنادًا إلى المطالبة النصية | \ No newline at end of file +| `output` | IMAGE | الصورة المُولَّدة استنادًا إلى المطالبة النصية | diff --git a/comfyui_embedded_docs/docs/WanTextToImageApi/pt-BR.md b/comfyui_embedded_docs/docs/WanTextToImageApi/pt-BR.md index 8243cfaf7..7afd5abf8 100644 --- a/comfyui_embedded_docs/docs/WanTextToImageApi/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanTextToImageApi/pt-BR.md @@ -19,4 +19,4 @@ O nó Wan Text to Image gera imagens com base em descrições textuais. Ele util | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | IMAGE | A imagem gerada com base no prompt de texto | \ No newline at end of file +| `output` | IMAGE | A imagem gerada com base no prompt de texto | diff --git a/comfyui_embedded_docs/docs/WanTextToImageApi/tr.md b/comfyui_embedded_docs/docs/WanTextToImageApi/tr.md index 04ba40784..cc5c56d68 100644 --- a/comfyui_embedded_docs/docs/WanTextToImageApi/tr.md +++ b/comfyui_embedded_docs/docs/WanTextToImageApi/tr.md @@ -19,4 +19,4 @@ Wan Metinden Görüntüye düğümü, metin açıklamalarına dayalı görüntü | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | IMAGE | Metin prompt'una dayalı olarak oluşturulan görüntü | \ No newline at end of file +| `output` | IMAGE | Metin prompt'una dayalı olarak oluşturulan görüntü | diff --git a/comfyui_embedded_docs/docs/WanTextToImageApi/zh-TW.md b/comfyui_embedded_docs/docs/WanTextToImageApi/zh-TW.md index 3050bc016..a8865f389 100644 --- a/comfyui_embedded_docs/docs/WanTextToImageApi/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanTextToImageApi/zh-TW.md @@ -19,4 +19,4 @@ Wan Text to Image 節點根據文字描述生成圖像。它使用 AI 模型從 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | IMAGE | 基於文字提示生成的圖像 | \ No newline at end of file +| `output` | IMAGE | 基於文字提示生成的圖像 | diff --git a/comfyui_embedded_docs/docs/WanTextToVideoApi/ar.md b/comfyui_embedded_docs/docs/WanTextToVideoApi/ar.md index 70b28e85f..bf6effa02 100644 --- a/comfyui_embedded_docs/docs/WanTextToVideoApi/ar.md +++ b/comfyui_embedded_docs/docs/WanTextToVideoApi/ar.md @@ -23,4 +23,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى المعاملات المدخلة | \ No newline at end of file +| `output` | VIDEO | الفيديو المُنشَأ استنادًا إلى المعاملات المدخلة | diff --git a/comfyui_embedded_docs/docs/WanTextToVideoApi/pt-BR.md b/comfyui_embedded_docs/docs/WanTextToVideoApi/pt-BR.md index f8ebc72c6..2943ebda8 100644 --- a/comfyui_embedded_docs/docs/WanTextToVideoApi/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanTextToVideoApi/pt-BR.md @@ -23,4 +23,4 @@ O nó Wan Text to Video gera conteúdo de vídeo com base em descrições de tex | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `output` | VIDEO | O vídeo gerado com base nos parâmetros de entrada | \ No newline at end of file +| `output` | VIDEO | O vídeo gerado com base nos parâmetros de entrada | diff --git a/comfyui_embedded_docs/docs/WanTextToVideoApi/tr.md b/comfyui_embedded_docs/docs/WanTextToVideoApi/tr.md index 97f0f0823..bc5352132 100644 --- a/comfyui_embedded_docs/docs/WanTextToVideoApi/tr.md +++ b/comfyui_embedded_docs/docs/WanTextToVideoApi/tr.md @@ -23,4 +23,4 @@ Wan Metinden Videoya düğümü, metin açıklamalarına dayalı olarak video i | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `output` | VIDEO | Giriş parametrelerine dayalı olarak oluşturulan video | \ No newline at end of file +| `output` | VIDEO | Giriş parametrelerine dayalı olarak oluşturulan video | diff --git a/comfyui_embedded_docs/docs/WanTextToVideoApi/zh-TW.md b/comfyui_embedded_docs/docs/WanTextToVideoApi/zh-TW.md index bd0c37dba..e741e1fca 100644 --- a/comfyui_embedded_docs/docs/WanTextToVideoApi/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanTextToVideoApi/zh-TW.md @@ -25,4 +25,4 @@ Wan 文字轉影片節點根據文字描述生成影片內容。它使用 AI 模 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `output` | VIDEO | 根據輸入參數生成的影片 | \ No newline at end of file +| `output` | VIDEO | 根據輸入參數生成的影片 | diff --git a/comfyui_embedded_docs/docs/WanTrackToVideo/ar.md b/comfyui_embedded_docs/docs/WanTrackToVideo/ar.md index 3d9d6f0c2..7d09c1e85 100644 --- a/comfyui_embedded_docs/docs/WanTrackToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanTrackToVideo/ar.md @@ -27,4 +27,4 @@ |-------------|-----------|-------------| | `positive` | CONDITIONING | التنسيق الإيجابي مع تطبيق معلومات مسار الحركة | | `negative` | CONDITIONING | التنسيق السلبي مع تطبيق معلومات مسار الحركة | -| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ | \ No newline at end of file +| `latent` | LATENT | التمثيل الكامن للفيديو المُنشأ | diff --git a/comfyui_embedded_docs/docs/WanTrackToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanTrackToVideo/pt-BR.md index e367696dd..7ac276f81 100644 --- a/comfyui_embedded_docs/docs/WanTrackToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanTrackToVideo/pt-BR.md @@ -27,4 +27,4 @@ O nó WanTrackToVideo converte dados de rastreamento de movimento em sequências |-------------|-----------|-------------| | `positive` | CONDITIONING | Condicionamento positivo com informações de rastreamento de movimento aplicadas | | `negative` | CONDITIONING | Condicionamento negativo com informações de rastreamento de movimento aplicadas | -| `latent` | LATENT | Representação latente do vídeo gerado | \ No newline at end of file +| `latent` | LATENT | Representação latente do vídeo gerado | diff --git a/comfyui_embedded_docs/docs/WanTrackToVideo/tr.md b/comfyui_embedded_docs/docs/WanTrackToVideo/tr.md index fc8599ca0..5c36c03b3 100644 --- a/comfyui_embedded_docs/docs/WanTrackToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanTrackToVideo/tr.md @@ -27,4 +27,4 @@ WanTrackToVideo düğümü, hareket izleme verilerini video dizilerine dönüşt |-------------|-----------|-------------| | `positive` | CONDITIONING | Hareket iz bilgisi uygulanmış pozitif koşullandırma | | `negative` | CONDITIONING | Hareket iz bilgisi uygulanmış negatif koşullandırma | -| `latent` | LATENT | Üretilen video gizli temsili | \ No newline at end of file +| `latent` | LATENT | Üretilen video gizli temsili | diff --git a/comfyui_embedded_docs/docs/WanTrackToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanTrackToVideo/zh-TW.md index 0a332d635..267c2ce8b 100644 --- a/comfyui_embedded_docs/docs/WanTrackToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanTrackToVideo/zh-TW.md @@ -27,4 +27,4 @@ WanTrackToVideo 節點透過處理追蹤點並生成對應的影片影格,將 |-------------|-----------|-------------| | `positive` | CONDITIONING | 已應用運動追蹤資訊的正向調節條件 | | `negative` | CONDITIONING | 已應用運動追蹤資訊的負向調節條件 | -| `latent` | LATENT | 生成的影片潛在表示 | \ No newline at end of file +| `latent` | LATENT | 生成的影片潛在表示 | diff --git a/comfyui_embedded_docs/docs/WanVaceToVideo/ar.md b/comfyui_embedded_docs/docs/WanVaceToVideo/ar.md index b299a983b..0a93b9ab8 100644 --- a/comfyui_embedded_docs/docs/WanVaceToVideo/ar.md +++ b/comfyui_embedded_docs/docs/WanVaceToVideo/ar.md @@ -27,4 +27,4 @@ | `سلبي` | CONDITIONING | التكييف الإيجابي مع تطبيق بيانات التحكم في الفيديو | | `مضمر` | CONDITIONING | التكييف السلبي مع تطبيق بيانات التحكم في الفيديو | | `اقتطاع المضمر` | LATENT | موتر كامن فارغ جاهز لتوليد الفيديو | -| `trim_latent` | INT | عدد الإطارات الكامنة التي يجب اقتطاعها عند استخدام الصورة المرجعية | \ No newline at end of file +| `trim_latent` | INT | عدد الإطارات الكامنة التي يجب اقتطاعها عند استخدام الصورة المرجعية | diff --git a/comfyui_embedded_docs/docs/WanVaceToVideo/pt-BR.md b/comfyui_embedded_docs/docs/WanVaceToVideo/pt-BR.md index 7902211c3..32d285108 100644 --- a/comfyui_embedded_docs/docs/WanVaceToVideo/pt-BR.md +++ b/comfyui_embedded_docs/docs/WanVaceToVideo/pt-BR.md @@ -27,4 +27,4 @@ O nó WanVaceToVideo processa dados de condicionamento de vídeo para modelos de | `positive` | CONDITIONING | Condicionamento positivo com dados de controle de vídeo aplicados | | `negative` | CONDITIONING | Condicionamento negativo com dados de controle de vídeo aplicados | | `latent` | LATENT | Tensor latente vazio pronto para geração de vídeo | -| `trim_latent` | INT | Número de quadros latentes a serem cortados quando a imagem de referência é usada | \ No newline at end of file +| `trim_latent` | INT | Número de quadros latentes a serem cortados quando a imagem de referência é usada | diff --git a/comfyui_embedded_docs/docs/WanVaceToVideo/tr.md b/comfyui_embedded_docs/docs/WanVaceToVideo/tr.md index d0bae9ef0..7f971deb3 100644 --- a/comfyui_embedded_docs/docs/WanVaceToVideo/tr.md +++ b/comfyui_embedded_docs/docs/WanVaceToVideo/tr.md @@ -27,4 +27,4 @@ WanVaceToVideo düğümü, video üretim modelleri için video koşullandırma v | `pozitif` | CONDITIONING | Video kontrol verisi uygulanmış pozitif koşullandırma | | `negatif` | CONDITIONING | Video kontrol verisi uygulanmış negatif koşullandırma | | `latent` | LATENT | Video üretimi için hazır boş gizli tensör | -| `trim_latent` | INT | Referans görüntüsü kullanıldığında kırpılacak gizli kare sayısı | \ No newline at end of file +| `trim_latent` | INT | Referans görüntüsü kullanıldığında kırpılacak gizli kare sayısı | diff --git a/comfyui_embedded_docs/docs/WanVaceToVideo/zh-TW.md b/comfyui_embedded_docs/docs/WanVaceToVideo/zh-TW.md index b45631de1..e26a1dc06 100644 --- a/comfyui_embedded_docs/docs/WanVaceToVideo/zh-TW.md +++ b/comfyui_embedded_docs/docs/WanVaceToVideo/zh-TW.md @@ -27,4 +27,4 @@ WanVaceToVideo 節點處理影片生成模型的影片條件資料。它接收 | `負向` | CONDITIONING | 已應用影片控制資料的正向條件 | | `潛在空間` | CONDITIONING | 已應用影片控制資料的負向條件 | | `裁剪潛空間` | LATENT | 準備用於影片生成的空潛在張量 | -| `trim_latent` | INT | 使用參考圖像時需要修剪的潛在幀數 | \ No newline at end of file +| `trim_latent` | INT | 使用參考圖像時需要修剪的潛在幀數 | diff --git a/comfyui_embedded_docs/docs/WebcamCapture/ar.md b/comfyui_embedded_docs/docs/WebcamCapture/ar.md index 895c7ee79..b72cd687a 100644 --- a/comfyui_embedded_docs/docs/WebcamCapture/ar.md +++ b/comfyui_embedded_docs/docs/WebcamCapture/ar.md @@ -15,4 +15,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | صورة الكاميرا الملتقطة المحولة إلى تنسيق الصور الخاص بـ ComfyUI | \ No newline at end of file +| `IMAGE` | IMAGE | صورة الكاميرا الملتقطة المحولة إلى تنسيق الصور الخاص بـ ComfyUI | diff --git a/comfyui_embedded_docs/docs/WebcamCapture/pt-BR.md b/comfyui_embedded_docs/docs/WebcamCapture/pt-BR.md index 1aa5b00ec..93094fc46 100644 --- a/comfyui_embedded_docs/docs/WebcamCapture/pt-BR.md +++ b/comfyui_embedded_docs/docs/WebcamCapture/pt-BR.md @@ -17,4 +17,4 @@ O nó WebcamCapture captura imagens de um dispositivo de webcam e as converte em | Nome da Saída | Tipo de Dado | Descrição | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | A imagem da webcam capturada, convertida para o formato de imagem do ComfyUI | \ No newline at end of file +| `IMAGE` | IMAGE | A imagem da webcam capturada, convertida para o formato de imagem do ComfyUI | diff --git a/comfyui_embedded_docs/docs/WebcamCapture/tr.md b/comfyui_embedded_docs/docs/WebcamCapture/tr.md index 7e6b217df..77d27e73d 100644 --- a/comfyui_embedded_docs/docs/WebcamCapture/tr.md +++ b/comfyui_embedded_docs/docs/WebcamCapture/tr.md @@ -17,4 +17,4 @@ WebcamCapture düğümü, bir web kamerası cihazından görüntü yakalar ve Co | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | ComfyUI'nin görüntü formatına dönüştürülmüş yakalanan web kamerası görüntüsü | \ No newline at end of file +| `IMAGE` | IMAGE | ComfyUI'nin görüntü formatına dönüştürülmüş yakalanan web kamerası görüntüsü | diff --git a/comfyui_embedded_docs/docs/WebcamCapture/zh-TW.md b/comfyui_embedded_docs/docs/WebcamCapture/zh-TW.md index 20c0380cc..620b47de6 100644 --- a/comfyui_embedded_docs/docs/WebcamCapture/zh-TW.md +++ b/comfyui_embedded_docs/docs/WebcamCapture/zh-TW.md @@ -17,4 +17,4 @@ WebcamCapture 節點從網路攝影機裝置擷取影像,並將其轉換為可 | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `IMAGE` | IMAGE | 已轉換為 ComfyUI 影像格式的擷取網路攝影機影像 | \ No newline at end of file +| `IMAGE` | IMAGE | 已轉換為 ComfyUI 影像格式的擷取網路攝影機影像 | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/ar.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/ar.md index 408dd5fa2..84dbde4e6 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/ar.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/ar.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `model` | MODEL | النموذج مع تطبيق ترقيع شبكة التحكم، جاهز للاستخدام في خطوة أخذ العينات. | | `positive` | CONDITIONING | التكييف الإيجابي، والذي قد يكون معدلاً بواسطة مدخلات شبكة التحكم. | -| `negative` | CONDITIONING | التكييف السلبي، والذي قد يكون معدلاً بواسطة مدخلات شبكة التحكم. | \ No newline at end of file +| `negative` | CONDITIONING | التكييف السلبي، والذي قد يكون معدلاً بواسطة مدخلات شبكة التحكم. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/en.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/en.md index b9221dd87..981a8a515 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/en.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/en.md @@ -22,4 +22,4 @@ The ZImageFunControlnet node applies a specialized control network to influence |-------------|-----------|-------------| | `model` | MODEL | The model with the control network patch applied, ready for use in a sampling pipeline. | | `positive` | CONDITIONING | The positive conditioning, potentially modified by the control network inputs. | -| `negative` | CONDITIONING | The negative conditioning, potentially modified by the control network inputs. | \ No newline at end of file +| `negative` | CONDITIONING | The negative conditioning, potentially modified by the control network inputs. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/es.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/es.md index a42444c28..2552d72a2 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/es.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/es.md @@ -22,4 +22,4 @@ El nodo ZImageFunControlnet aplica una red de control especializada para influir |-------------|-----------|-------------| | `model` | MODEL | El modelo con el parche de la red de control aplicado, listo para usar en un pipeline de muestreo. | | `positive` | CONDITIONING | El condicionamiento positivo, potencialmente modificado por las entradas de la red de control. | -| `negative` | CONDITIONING | El condicionamiento negativo, potencialmente modificado por las entradas de la red de control. | \ No newline at end of file +| `negative` | CONDITIONING | El condicionamiento negativo, potencialmente modificado por las entradas de la red de control. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/fr.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/fr.md index 0c1f6ffb0..a91eeffdc 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/fr.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/fr.md @@ -20,4 +20,4 @@ |-------------|-----------|-------------| | `model` | MODEL | Le modèle avec le patch du réseau de contrôle appliqué, prêt à être utilisé dans un pipeline d'échantillonnage. | | `positive` | CONDITIONING | Le conditionnement positif, potentiellement modifié par les entrées du réseau de contrôle. | -| `negative` | CONDITIONING | Le conditionnement négatif, potentiellement modifié par les entrées du réseau de contrôle. | \ No newline at end of file +| `negative` | CONDITIONING | Le conditionnement négatif, potentiellement modifié par les entrées du réseau de contrôle. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/ja.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/ja.md index 4f250f061..e89a5a37a 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/ja.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/ja.md @@ -22,4 +22,4 @@ ZImageFunControlnetノードは、画像生成や編集プロセスに影響を |-------------|-----------|-------------| | `model` | MODEL | 制御ネットワークパッチが適用されたモデル。サンプリングパイプラインで使用する準備ができています。 | | `positive` | CONDITIONING | 制御ネットワーク入力によって修正された可能性のあるポジティブコンディショニング。 | -| `negative` | CONDITIONING | 制御ネットワーク入力によって修正された可能性のあるネガティブコンディショニング。 | \ No newline at end of file +| `negative` | CONDITIONING | 制御ネットワーク入力によって修正された可能性のあるネガティブコンディショニング。 | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/ko.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/ko.md index c4ff54293..8a9a90c95 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/ko.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/ko.md @@ -22,4 +22,4 @@ ZImageFunControlnet 노드는 이미지 생성 또는 편집 과정에 영향을 |-------------|-----------|-------------| | `model` | MODEL | 컨트롤 네트워크 패치가 적용된 모델로, 샘플링 파이프라인에서 사용할 준비가 되었습니다. | | `positive` | CONDITIONING | 컨트롤 네트워크 입력에 의해 수정될 수 있는 긍정적 조건입니다. | -| `negative` | CONDITIONING | 컨트롤 네트워크 입력에 의해 수정될 수 있는 부정적 조건입니다. | \ No newline at end of file +| `negative` | CONDITIONING | 컨트롤 네트워크 입력에 의해 수정될 수 있는 부정적 조건입니다. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/pt-BR.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/pt-BR.md index c28717858..9e2563ea9 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/pt-BR.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/pt-BR.md @@ -22,4 +22,4 @@ O nó ZImageFunControlnet aplica uma rede de controle especializada para influen |-------------|-----------|-------------| | `model` | MODEL | O modelo com o patch da rede de controle aplicado, pronto para uso em um pipeline de amostragem. | | `positive` | CONDITIONING | O condicionamento positivo, potencialmente modificado pelas entradas da rede de controle. | -| `negative` | CONDITIONING | O condicionamento negativo, potencialmente modificado pelas entradas da rede de controle. | \ No newline at end of file +| `negative` | CONDITIONING | O condicionamento negativo, potencialmente modificado pelas entradas da rede de controle. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/ru.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/ru.md index c17ab3234..f3f26878a 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/ru.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/ru.md @@ -22,4 +22,4 @@ |-------------|-----------|-------------| | `model` | MODEL | Модель с применённым патчем управляющей сети, готовая к использованию в конвейере сэмплирования. | | `positive` | CONDITIONING | Положительное кондиционирование, потенциально модифицированное входными данными управляющей сети. | -| `negative` | CONDITIONING | Отрицательное кондиционирование, потенциально модифицированное входными данными управляющей сети. | \ No newline at end of file +| `negative` | CONDITIONING | Отрицательное кондиционирование, потенциально модифицированное входными данными управляющей сети. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/tr.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/tr.md index e3bc5c9f2..0ede34d56 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/tr.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/tr.md @@ -22,4 +22,4 @@ ZImageFunControlnet düğümü, görüntü oluşturma veya düzenleme sürecini |-------------|-----------|-------------| | `model` | MODEL | Kontrol ağı yaması uygulanmış, örnekleme işlem hattında kullanıma hazır model. | | `positive` | CONDITIONING | Kontrol ağı girdileri tarafından potansiyel olarak değiştirilmiş pozitif koşullandırma. | -| `negative` | CONDITIONING | Kontrol ağı girdileri tarafından potansiyel olarak değiştirilmiş negatif koşullandırma. | \ No newline at end of file +| `negative` | CONDITIONING | Kontrol ağı girdileri tarafından potansiyel olarak değiştirilmiş negatif koşullandırma. | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/zh-TW.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/zh-TW.md index 0a13f5281..7e57b0682 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/zh-TW.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/zh-TW.md @@ -22,4 +22,4 @@ ZImageFunControlnet 節點應用專門的控制網路來影響影像生成或編 |-------------|-----------|-------------| | `model` | MODEL | 已應用控制網路修補的模型,準備好用於採樣流程。 | | `positive` | CONDITIONING | 正向條件,可能已根據控制網路輸入進行修改。 | -| `negative` | CONDITIONING | 負向條件,可能已根據控制網路輸入進行修改。 | \ No newline at end of file +| `negative` | CONDITIONING | 負向條件,可能已根據控制網路輸入進行修改。 | diff --git a/comfyui_embedded_docs/docs/ZImageFunControlnet/zh.md b/comfyui_embedded_docs/docs/ZImageFunControlnet/zh.md index 3431e2380..23343f490 100644 --- a/comfyui_embedded_docs/docs/ZImageFunControlnet/zh.md +++ b/comfyui_embedded_docs/docs/ZImageFunControlnet/zh.md @@ -22,4 +22,4 @@ ZImageFunControlnet 节点应用专门的控制网络来影响图像生成或编 |-------------|-----------|-------------| | `model` | MODEL | 已应用控制网络补丁的模型,准备好在采样流程中使用。 | | `positive` | CONDITIONING | 可能被控制网络输入修改的正向条件。 | -| `negative` | CONDITIONING | 可能被控制网络输入修改的负向条件。 | \ No newline at end of file +| `negative` | CONDITIONING | 可能被控制网络输入修改的负向条件。 | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/ar.md b/comfyui_embedded_docs/docs/wanBlockSwap/ar.md index 4104f4bdd..a623acfb1 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/ar.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/ar.md @@ -12,4 +12,4 @@ | اسم المخرج | نوع البيانات | الوصف | |-------------|-----------|-------------| -| `model` | MODEL | نفس النموذج الذي تم توفيره كمدخل، دون تغيير. | \ No newline at end of file +| `model` | MODEL | نفس النموذج الذي تم توفيره كمدخل، دون تغيير. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/en.md b/comfyui_embedded_docs/docs/wanBlockSwap/en.md index 6fe3b8007..0ccbd06bf 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/en.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/en.md @@ -12,4 +12,4 @@ This node is deprecated and serves no function. It accepts a model as input and | Output Name | Data Type | Description | |-------------|-----------|-------------| -| `model` | MODEL | The same model that was provided as input, unchanged. | \ No newline at end of file +| `model` | MODEL | The same model that was provided as input, unchanged. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/es.md b/comfyui_embedded_docs/docs/wanBlockSwap/es.md index 17e619ec9..5abe18ebf 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/es.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/es.md @@ -12,4 +12,4 @@ Este nodo está obsoleto y no cumple ninguna función. Acepta un modelo como ent | Nombre de Salida | Tipo de Dato | Descripción | |-------------|-----------|-------------| -| `model` | MODEL | El mismo modelo que se proporcionó como entrada, sin cambios. | \ No newline at end of file +| `model` | MODEL | El mismo modelo que se proporcionó como entrada, sin cambios. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/fr.md b/comfyui_embedded_docs/docs/wanBlockSwap/fr.md index 630dad951..4f7594113 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/fr.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/fr.md @@ -12,4 +12,4 @@ Ce nœud est obsolète et ne remplit aucune fonction. Il accepte un modèle en e | Nom de la sortie | Type de données | Description | |-------------|-----------|-------------| -| `model` | MODEL | Le même modèle qui a été fourni en entrée, inchangé. | \ No newline at end of file +| `model` | MODEL | Le même modèle qui a été fourni en entrée, inchangé. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/ja.md b/comfyui_embedded_docs/docs/wanBlockSwap/ja.md index 4dd6253db..d1f87271f 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/ja.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/ja.md @@ -12,4 +12,4 @@ | 出力名 | データ型 | 説明 | |-------------|-----------|-------------| -| `model` | MODEL | 入力として提供されたものと同じ、変更されていないモデルです。 | \ No newline at end of file +| `model` | MODEL | 入力として提供されたものと同じ、変更されていないモデルです。 | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/ko.md b/comfyui_embedded_docs/docs/wanBlockSwap/ko.md index 944d3d263..aa34f00ba 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/ko.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/ko.md @@ -12,4 +12,4 @@ | 출력 이름 | 데이터 타입 | 설명 | |-------------|-----------|-------------| -| `model` | MODEL | 입력으로 제공된 것과 동일한, 변경되지 않은 모델입니다. | \ No newline at end of file +| `model` | MODEL | 입력으로 제공된 것과 동일한, 변경되지 않은 모델입니다. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/pt-BR.md b/comfyui_embedded_docs/docs/wanBlockSwap/pt-BR.md index 0cb801520..6f06be9f9 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/pt-BR.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/pt-BR.md @@ -12,4 +12,4 @@ Este nó está obsoleto e não possui função. Ele aceita um modelo como entrad | Nome da Saída | Tipo de Dados | Descrição | |-------------|-----------|-------------| -| `model` | MODEL | O mesmo modelo que foi fornecido como entrada, inalterado. | \ No newline at end of file +| `model` | MODEL | O mesmo modelo que foi fornecido como entrada, inalterado. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/ru.md b/comfyui_embedded_docs/docs/wanBlockSwap/ru.md index 894831785..1ee0e2aeb 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/ru.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/ru.md @@ -12,4 +12,4 @@ | Имя выхода | Тип данных | Описание | |-------------|-----------|-------------| -| `model` | MODEL | Та же модель, что была подана на вход, без изменений. | \ No newline at end of file +| `model` | MODEL | Та же модель, что была подана на вход, без изменений. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/tr.md b/comfyui_embedded_docs/docs/wanBlockSwap/tr.md index bfebf3f7f..ef737474b 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/tr.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/tr.md @@ -12,4 +12,4 @@ Bu düğüm kullanımdan kaldırılmıştır ve herhangi bir işlevi yoktur. Bir | Çıktı Adı | Veri Türü | Açıklama | |-------------|-----------|-------------| -| `model` | MODEL | Girdi olarak sağlanan, değiştirilmemiş aynı model. | \ No newline at end of file +| `model` | MODEL | Girdi olarak sağlanan, değiştirilmemiş aynı model. | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/zh-TW.md b/comfyui_embedded_docs/docs/wanBlockSwap/zh-TW.md index 41e87bc4d..5b0688900 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/zh-TW.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/zh-TW.md @@ -12,4 +12,4 @@ | 輸出名稱 | 資料類型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 與輸入提供的模型相同,未經更改。 | \ No newline at end of file +| `model` | MODEL | 與輸入提供的模型相同,未經更改。 | diff --git a/comfyui_embedded_docs/docs/wanBlockSwap/zh.md b/comfyui_embedded_docs/docs/wanBlockSwap/zh.md index bcbdd4056..72f403b4d 100644 --- a/comfyui_embedded_docs/docs/wanBlockSwap/zh.md +++ b/comfyui_embedded_docs/docs/wanBlockSwap/zh.md @@ -12,4 +12,4 @@ | 输出名称 | 数据类型 | 描述 | |-------------|-----------|-------------| -| `model` | MODEL | 与输入提供的模型相同,未作任何更改。 | \ No newline at end of file +| `model` | MODEL | 与输入提供的模型相同,未作任何更改。 | diff --git a/fix_markdown.sh b/fix_markdown.sh old mode 100644 new mode 100755 index cc79225a3..f01af2561 --- a/fix_markdown.sh +++ b/fix_markdown.sh @@ -24,27 +24,29 @@ else target_folder="$base_path" fi -# Find all markdown files in the target folder and subfolders -markdown_files=$(find "$target_folder" -type f -name "*.md") +# Find all markdown files (null-delimited for paths with spaces) +markdown_files=() +while IFS= read -r -d '' f; do markdown_files+=("$f"); done < <(find "$target_folder" -type f -name "*.md" -print0 2>/dev/null) # Check if any markdown files were found -if [ -z "$markdown_files" ]; then +if [ ${#markdown_files[@]} -eq 0 ]; then echo "No markdown files found" exit 0 fi -echo "Fixing markdown files..." - -# Loop through each markdown file and fix linting issues -for file in $markdown_files; do - # Run markdownlint and capture its output - output=$(markdownlint --fix "$file" 2>&1) - - # Only show output if the file was modified - if [ -n "$output" ]; then - relative_path=${file#$base_path/} - echo "Updated: $relative_path" +total=${#markdown_files[@]} +# Batch size to stay under system ARG_MAX (command-line length limit) +BATCH_SIZE=500 +echo "Fixing $total markdown files (batches of $BATCH_SIZE)..." + +batch=() +for f in "${markdown_files[@]}"; do + batch+=("$f") + if [ ${#batch[@]} -ge "$BATCH_SIZE" ]; then + markdownlint --fix "${batch[@]}" 2>/dev/null || true + batch=() fi done +[ ${#batch[@]} -gt 0 ] && markdownlint --fix "${batch[@]}" 2>/dev/null || true echo "Done!" diff --git a/pyproject.toml b/pyproject.toml index fcc358639..3bbd25a36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "comfyui-embedded-docs" -version = "0.4.1" +version = "0.4.2" description = "Embedded documentation for ComfyUI nodes" readme = "README.md" requires-python = ">=3.9"