Hi,
the project 'VideoPlayback' official installed by AppGameKit 2017.05.15 (windows) don't run if used with the video.mp4
in the media folder there are 2 videos (video.wmv e video.mp4) installed by official setup AppGameKit 2017.05.15 (windows)
this is the code:
LoadVideo("video.wmv")
SetVideoDimensions(0,0,100,93)
PlayVideo()
rem Prompt
CreateText(1,"Press screen to replay")
SetTextPosition(1,50,93)
SetTextAlignment(1,1)
SetTextSize(1,5)
do
if GetPointerPressed()=1
StopVideo()
PlayVideo()
endif
Sync()
loop
with video.wmv all is ok. but i use the LoadVideo("video.mp4") instead of LoadVideo("video.wmv") it crash (see image)
I run it from windows.
codec audio and video of the video.pm4 are mpeg-4 and AAC , so are ok.
If I play the video with media player o vlc the video play correctly.
Can anyone help me ?