I'm creating a simple pygame, and cannot find out how to make Moviepy preview clip in full screen. Using Moviepy for my opening cinematic. Here is my code:
import moviepy
import os
from moviepy.editor import *
import pygame
pygame.display.set_caption('Game title')
os.environ["SDL_VIDEO_CENTERED"] = "1"
clip = VideoFileClip('qq.mp4')
clip.preview()
execfile("startGame.py")
I'm not sure if this is the best practice in pygame to use for an opening full-screen cinematic...