Participants viewed the animated film ‘Partly Cloudy’ and rated 16 short scenes throughout the film.
To run the task in Psychopy, you will need a copy of the 'Partly Cloudy' film (https://www.pixar.com/partly-cloudy#partly-cloudy-1). Subsequently, you can use the timing information provided in the movie_events_1.xlsx and movie_events_2.xlsx files to create the clips for the task. The timing is based on Richardson and colleagues (2018).
You can use ffmpeg to compress the clips using:
for i in *.m4v; do ffmpeg -i "$i" "$(basename "$i" .m4v)_2".mp4 ; done;