MoviePy – Obtener fotogramas de un clip de archivo de vídeo

En este artículo veremos cómo podemos obtener el cuadro en un momento dado del clip de archivo de video en MoviePy. MoviePy es un módulo de Python para la edición de videos, que se puede usar para operaciones básicas en videos y GIF. La combinación de cuadros crea el video, en cada momento existe un cuadro específico que es similar a la imagen normal. Obtener un cuadro significa obtener una array numérica que representa la imagen RGB del clip en el momento t o el valor (mono o estéreo) para un sonido acortar.

Para hacer esto, usaremos get_frameel método con el objeto VideoFileClip

Sintaxis: clip.get_frame(n)

Argumento: toma valor flotante como argumento

Retorno: Devuelve numpy ndarray

A continuación se muestra la implementación.

# importing matplotlib
from matplotlib import pyplot as plt
  
# importing numpy
import numpy as np
  
# Import everything needed to edit video clips
from moviepy.editor import *
  
# loading video gfg
clip = VideoFileClip("geeks.mp4")
  
# getting only first 5 seconds
clip = clip.subclip(0, 5)
    
# getting only first 5 seconds 
clip = clip.subclip(0, 5) 
  
# getting frame at time 3
frame = clip.get_frame(3)
  
# showing the frame with the help of matplotlib
plt.imshow(frame, interpolation ='nearest')
  
# show
plt.show()

Producción :

Otro ejemplo

# importing matplotlib
from matplotlib import pyplot as plt
  
# importing numpy
import numpy as np
  
# Import everything needed to edit video clips 
from moviepy.editor import *
    
# loading video dsa gfg intro video 
clip = VideoFileClip("dsa_geek.mp4") 
     
# getting only first 5 seconds
clip = clip.subclip(0, 5)
  
  
# getting frame at time 2
frame = clip.get_frame(2)
  
# showing the frame with the help of matplotlib
plt.imshow(frame, interpolation ='nearest')
  
# show
plt.show()

Producción :

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *