diff --git a/README.md b/README.md index dcc3a7b..8906bf2 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ You can manage looping operations, generate randomized content, trigger logical `1.` [πŸ‘ Show (Text, Int, Float)](#1----show-text-int-float) `49.` [πŸ“ΉπŸ‘ Video Preview](#49----video-preview) `68.` [πŸ”’ Add line numbers](#68----add-line-numbers) -`71.` [πŸ‘ Show (Int)](#) -`72.` [πŸ‘ Show (Float)](#) -`73.` [πŸ‘ Show (String/Text)](#) -`74.` [πŸ‘ Show (JSON)](#) +`71.` [πŸ‘ Show (Int)](#71----show-int) +`72.` [πŸ‘ Show (Float)](#72----show-float) +`73.` [πŸ‘ Show (String/Text)](#73----show-stringtext) +`74.` [πŸ‘ Show (JSON)](#74----show-json) ## βœ’ Text βœ’ `2.` [βœ’ Write Text](#2----write-text) @@ -33,9 +33,9 @@ You can manage looping operations, generate randomized content, trigger logical `28.` [πŸ”’πŸŽ² Text with random Seed](#28----text-with-random-seed) `32.` [πŸ§‘πŸ“ Character Description Generator](#32----character-description-generator) `48.` [πŸ”€πŸŽ² Text scrambler (πŸ§‘ Character)](#48----text-scrambler--character) -`67.` [πŸ“βžœβœ¨ Text to Anything](#) -`68.` [βœ¨βžœπŸ“ Anything to Text](#) -`75.` [πŸ“βžœπŸ“ Replace text](#) +`67.` [πŸ“βžœβœ¨ Text to Anything](#67----text-to-anything) +`68.` [βœ¨βžœπŸ“ Anything to Text](#68----anything-to-text) +`75.` [πŸ“βžœπŸ“ Replace text](#75----replace-text) ## β™» Loop β™» `6.` [β™» Loop](#6----loop) @@ -93,7 +93,7 @@ You can manage looping operations, generate randomized content, trigger logical `60.` [πŸ–ΌπŸ–Ό Merge Images/Videos πŸ“ΉπŸ“Ή (Horizontally)](#60----merge-imagesvideos--horizontally) `61.` [πŸ–ΌπŸ–Ό Merge Images/Videos πŸ“ΉπŸ“Ή (Vertically)](#61----merge-imagesvideos--vertically) `62.` [πŸ¦™πŸ‘ Ollama Vision](#62----ollama-vision) -`69.` [πŸ“ Resize Image Percentage](#69) +`70.` [πŸ“ Resize Image Percentage](#70----resize-image-percentage) ## πŸš€ Load checkpoints πŸš€ `40.` [🎲 Random (Model+Clip+Vae) - aka Checkpoint / Model](#40----random-modelclipvae---aka-checkpoint--model) @@ -116,10 +116,10 @@ You can manage looping operations, generate randomized content, trigger logical `59.` [πŸ“ΉπŸ”Š Combine Video + Audio](#59----combine-video--audio) `60.` [πŸ–ΌπŸ–Ό Merge Images/Videos πŸ“ΉπŸ“Ή (Horizontally)](#60----merge-imagesvideos--horizontally) `61.` [πŸ–ΌπŸ–Ό Merge Images/Videos πŸ“ΉπŸ“Ή (Vertically)](#61----merge-imagesvideos--vertically) -`76.` [βš™πŸ“Ή FFmpeg Configuration πŸ“Ήβš™](#76) -`77.` [πŸ“ΉπŸ” Video details βš™](#77) -`78.` [πŸ“ΉβžœπŸ“Ή Convert Video](#78) -`79.` [πŸ“ΉπŸ”— Concat Videos from list](#79) +`76.` [βš™πŸ“Ή FFmpeg Configuration πŸ“Ήβš™](#76----ffmpeg-configuration-) +`77.` [πŸ“ΉπŸ” Video details βš™](#77----video-details-) +`78.` [πŸ“ΉβžœπŸ“Ή Convert Video](#78----convert-video) +`79.` [πŸ“ΉπŸ”— Concat Videos from list](#79----concat-videos-from-list) ## πŸ€– AI πŸ€– `19.` [πŸ¦™πŸ’¬ Ollama Talk](#19----ollama-talk) @@ -1160,17 +1160,24 @@ Resize an image by percentage. ### 71 - πŸ‘ Show (Int) **Description:** -Basic node, show an INT. (You can simply drag any INT node and it will be recommended.) +Basic node, show an INT. (You can simply drag any INT node and it will be recommended.) + +![show int](screenshots/show_int.png) ### 72 - πŸ‘ Show (Float) **Description:** -Basic node, show a FLOAT. (You can simply drag any FLOAT node and it will be recommended.) +Basic node, show a FLOAT. (You can simply drag any FLOAT node and it will be recommended.) + +![show float](screenshots/show_float.png) ### 73 - πŸ‘ Show (String/Text) **Description:** -Basic node, show a STRING. (You can simply drag any STRING node and it will be recommended.) +Basic node, show a STRING. (You can simply drag any STRING node and it will be recommended.) + +![show string](screenshots/show_string_1.png) +![show string](screenshots/show_string_2.png) ### 74 - πŸ‘ Show (JSON) diff --git a/screenshots/show_float.png b/screenshots/show_float.png new file mode 100644 index 0000000..d4063a5 Binary files /dev/null and b/screenshots/show_float.png differ diff --git a/screenshots/show_int.png b/screenshots/show_int.png new file mode 100644 index 0000000..24e7dfc Binary files /dev/null and b/screenshots/show_int.png differ diff --git a/screenshots/show_string_1.png b/screenshots/show_string_1.png new file mode 100644 index 0000000..f8931a9 Binary files /dev/null and b/screenshots/show_string_1.png differ diff --git a/screenshots/show_string_2.png b/screenshots/show_string_2.png new file mode 100644 index 0000000..5401103 Binary files /dev/null and b/screenshots/show_string_2.png differ