Tecnología Eva IES Ramiro II
Wednesday, 15 April 2026
Thursday, 9 April 2026
Python (2) - Primeros Programas
Es muy habitual en el mundo de la programación, comenzar escribiendo un programa que
visualice un mensaje por pantalla y de esta forma muestre como se hace una de las tareas
más simples y habituales, la de mostrar información.
A este programa se le suele llamar ¡Hola Mundo!, que viene a representar un saludo a este
nuevo lenguaje de programación.
Wednesday, 8 April 2026
AUDACITY
Realiza un mix con fragmentos de 5 canciones que te gusten mezclados con algunos efectos. web para descargar efectos de audio gratis: https://pixabay.com/es/sound-effects/
Puedes también modificar la velocidad y realiza un fundido de entrada y salida. Duración máxima de 1 minuto!! El mix debe comenzar con una voz que diga "MAX MIX VERANO 2026", te animo a que lo grabes con tu propia voz o utilices un conversor de texto a voz con IA, como por ejemplo vidnoz.
Para descargar música en mp3 de youtube puedes utilizar este enlace: https://y2mate.sc/es/ pero ten en cuenta que la música comercial tiene derechos de autor y no deberías utilizarla en proyectos públicos
También puedes visitar páginas de música libre como jamendo, fiftysound, etc...
Cuando termines tu proyecto crea un canal de podcast con IVOOX y publícalo en tu blog
Tuesday, 7 April 2026
MULTIMEDIA
Python (1)
PROCESSING
Processing is an open-source programming language and integrated development environment based on Java, used as a medium for teaching and creating multimedia and interactive digital design projects. It is developed by artists and designers as an alternative tool to proprietary software.
Processing es un lenguaje de programación y entorno de desarrollo integrado de código abierto basado en Java, que sirve como medio para la enseñanza y producción de proyectos multimedia e interactivos de diseño digital. Es desarrollado por artistas y diseñadores como una herramienta alternativa al software propietario.
PIXELS AND COLORS
Computer screens are made up of a matrix of dots that we call PIXELS. The more pixels a screen or digital image has, the higher its resolution. Each pixel can have a different color, which is a combination of three components: RED (R), GREEN (G), and BLUE (B). This is the RGB code, which expresses each component as a number between 0 and 255.
Thus, 0,0,0 is black and 255,255,255 is white.
COORDINATES
The coordinate origin (0,0) on a computer screen is the top-left corner. Each pixel has two coordinates (x, y) to indicate its position on the screen.
The x coordinate (width) is the horizontal distance from the left edge of the screen, and
The y coordinate (height) is the vertical distance from the top edge of the screen.
WINDOW SIZE
You can define the size of the window where you run the program with the command size(x,y);
x = width y=height
URL to download the program: https://processing.org/
You can download processing-4.3.3. for windows x64 here (you dont need to install anything only run the exe file)








