This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: Inventeaza o SCENA DECLANSATOARE | |
Description: Cum să creezi un punct de plecare pentru un text narativ | |
Instructions: | |
1. ANALIZA TEXTULUI ORIGINAL | |
- Identifică tema principală și atmosfera textului | |
- Găsește frazele cheie care transmit esența narațiunii | |
- Observă stările și sentimentele personajului principal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from docx import Document | |
from datetime import date | |
# Traducerea în limba engleză | |
translated_text = """ | |
Statement of Consent for the Use of Images on Wikipedia | |
I, Viorel Iulian Peștean, hereby declare that I am the creator and/or sole copyright holder of the following images categorized as media files: | |
- Viorel_Iulian_Peștean_2.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Corecturi facute de Neculai Fantanaru in cartea sa. https://neculaifantanaru.com | |
Primul aspect de care sa tii cont. Tine minte bine asta. Cand oferi citate cu fragmente din carti. Daca fragmentul nu exista in cartea scriitorului? In acest caz nu trebuie sa minti, sau sa faci greseala de a spune ca ai extras textul din cartea aia. Poti folosi un mijloc comod, un tertip frumos si amiabil care introduce fragmentul, dar printr-o formulare cheie. | |
De exemplu, sa spunem ca ai introdus un fragment, si ai mentionat ca este din cartea "Pustia tătară" de Carlos Fuentes. Dar exista intr-adevar vreo carte "Pustia tătară" de Carlos Fuentes? | |
Nu, nu există o carte intitulată Pustia tătară scrisă de Carlos Fuentes. Expresia „Pustia tătară” nu apare în lista operelor cunoscute ale lui Fuentes, iar o căutare detaliată a titlurilor sale nu relevă nicio lucrare cu acest nume. Fuentes, un renumit scriitor mexican, a scris numeroase romane, printre care Terra Nostra (1975), Moartea lui Artemio Cruz (1962), Aura (1962), Bătrânul |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import numpy as np | |
from moviepy.editor import VideoClip | |
from PIL import Image | |
import cv2 | |
import time | |
# Calea imaginii | |
IMAGE_PATH = r"d:\family-hugging.jpg" | |
OUTPUT_PATH = r"d:\family-hugging-animation.mp4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import numpy as np | |
from moviepy.editor import ImageClip, VideoClip | |
from PIL import Image | |
# Calea imaginii | |
IMAGE_PATH = r"d:\family-hugging.jpg" | |
OUTPUT_PATH = r"d:\family-hugging-animation.mp4" | |
# Durata animației |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from docx import Document | |
from datetime import date | |
# Traducerea în limba engleză | |
translated_text = """ | |
Statement of Consent for the Use of Images on Wikipedia | |
I, Viorel Iulian Peștean, hereby declare that I am the creator and/or sole copyright holder of the following images categorized as media files: | |
- Viorel_Iulian_Peștean_2.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import numpy as np | |
from moviepy.editor import ImageClip, CompositeVideoClip, vfx | |
from PIL import Image | |
import cv2 | |
# Calea imaginii | |
IMAGE_PATH = r"d:\family-hugging.jpg" | |
OUTPUT_PATH = r"d:\family-hugging-animation.mp4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import numpy as np | |
from moviepy.editor import ImageClip, CompositeVideoClip, vfx | |
from PIL import Image | |
import cv2 | |
# Calea imaginii | |
IMAGE_PATH = r"d:\family-hugging.jpg" | |
OUTPUT_PATH = r"d:\family-hugging-animation.mp4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import numpy as np | |
from moviepy.editor import ImageClip, CompositeVideoClip, vfx | |
from PIL import Image | |
import cv2 | |
# Calea imaginii și a fișierului de ieșire | |
IMAGE_PATH = r"d:\family-hugging.jpg" | |
OUTPUT_PATH = r"d:\family-hugging-animation.mp4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
import time | |
import os | |
from PIL import Image, ImageEnhance, ImageFilter | |
# Calea către imaginea ta | |
image_path = "d:/family-hugging.jpg" | |
# Verificăm dacă imaginea există |