简体   繁体   中英

How can I play a mp4 movie using Moviepy and Pygame

How do you play an mp4 video in Pygame?

I have tried pygame.movie but this does not work...

Theres also moviepy, but I am having trouble changing the title of the window that pops up. It says "MoviePy", not sure how to change that.

import moviepy
from moviepy.editor import *
import os


os.environ["SDL_VIDEO_CENTERED"] = "1"

clip = VideoFileClip('qq.mp4')


clip.preview()

execfile("qq.py") # Execute my game right after the clip shows

How would I change the title from "MoviePy" to my "my game name"

Any help would be appreciated!

First: you can use

import moviepy

print(moviepy.__file__)

to find source code and see how it works.


After searching in source code you will see that it uses pygame to display it and you can try to use pygame function set_caption() to change title.

from moviepy.editor import *
import pygame

pygame.display.set_caption('Hello World!')

clip = VideoFileClip('video.mp4')
clip.preview()

pygame.quit()

Have you tried converting from mp4 to the .mpg file format (MPEG-1 video, MPEG-1 Audio Layer III (MP3) sound) using ffmpeg video conversion program ( http://ffmpeg.org/ ):

ffmpeg -i <infile> -vcodec mpeg1video -acodec libmp3lame -intra <outfile.mpg>

(Pygame can playback video and audio from basic encoded MPEG-1 video files)

from moviepy.editor import *

import pygame

pygame.init()

pygame.display.set_caption('Show Video on screen')

video = VideoFileClip('name_of_your video.mp4')
video.preview()

pygame.quit()

I use this code and it work,you need moviepy and pydub libraries to let it work.

id_path='我不是购物狂 EP15 Rebirth Of Shopping Addicts EP15_HIGH.mp4' # Name of the video
au_path='Produce.wav'
import moviepy.editor as mp
video = mp.VideoFileClip(vid_path)
from pydub import AudioSegment
from pydub.playback import play
video.preview()
song = AudioSegment.from_wav(au_path)
play(song)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM