diff --git a/examples/girl_org.gif b/examples/girl_org.gif
new file mode 100644
index 0000000..899eeb1
Binary files /dev/null and b/examples/girl_org.gif differ
diff --git a/examples/girl_to_jc.gif b/examples/girl_to_jc.gif
new file mode 100644
index 0000000..bec3a32
Binary files /dev/null and b/examples/girl_to_jc.gif differ
diff --git a/examples/girl_to_jc.mp4 b/examples/girl_to_jc.mp4
new file mode 100644
index 0000000..35014e4
Binary files /dev/null and b/examples/girl_to_jc.mp4 differ
diff --git a/examples/girl_to_wc.gif b/examples/girl_to_wc.gif
new file mode 100644
index 0000000..5c66c7f
Binary files /dev/null and b/examples/girl_to_wc.gif differ
diff --git a/examples/girl_to_wc.mp4 b/examples/girl_to_wc.mp4
new file mode 100644
index 0000000..665f92a
Binary files /dev/null and b/examples/girl_to_wc.mp4 differ
diff --git a/readme.md b/readme.md
index ca7a3b0..bbbff19 100644
--- a/readme.md
+++ b/readme.md
@@ -3,11 +3,25 @@ This project allows you to automate video stylization task using StableDiffusion
### Video to Video Examples:
+
+
+
+
+  |
+  |
+  |
+
+
+ | Original video |
+ "Jessica Chastain" |
+ "Watercolor painting" |
+
+
+Examples presented are generated at 1024x576 resolution using the 'realisticVisionV13_v13' model as a base. They were cropt, downsized and compressed for better loading speed. You can see them in their original quality in the 'examples' folder.
### Text to Video Examples:
diff --git a/vid2vid.py b/vid2vid.py
index 8a13e64..5dd47bf 100644
--- a/vid2vid.py
+++ b/vid2vid.py
@@ -13,10 +13,10 @@ import datetime
INPUT_VIDEO = "input.mp4"
FLOW_MAPS = "flow.h5"
-OUTPUT_VIDEO = f'result_{datetime.datetime.now().strftime("%Y-%m-%d_%H:%M:%S")}.mp4'
+OUTPUT_VIDEO = f'videos/result_{datetime.datetime.now().strftime("%Y-%m-%d_%H:%M:%S")}.mp4'
-PROMPT = "RAW photo, Jessica Chastain, (high detailed skin:1.2), 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3"
-N_PROMPT = "person, skin, (deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.4), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck"
+PROMPT = "Watercolor painting"
+N_PROMPT = "(deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.4), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck"
w,h = 1024, 576 # Width and height of the processed image. Note that actual image processed would be a W x H resolution.
START_FROM_IND = 0 # index of a frame to start a processing from. Might be helpful with long animations where you need to restart the script multiple times