[1]watched_line # Required Python modules from moviepy.editor import VideoFileClip # for video processing from pylab import * # for mathematics/plotting # load the video, keep the clip between t=2s and t= 30s video = VideoFileClip('./limehouse_nights.mp4').subclip(2,30) # extract the focus lines in the different frames, stack them. roll_picture = vstack([frame[[156],58:478] for frame in video.iter_frames()]) imshow( roll_picture ) # display the obtained picture References Visible links 1. http://icopiedyou.com/wp-content/uploads/2015/08/watched_line.jpeg