I have a tiny, very simple avi file, 100 x 100pix. Plays back perfectly in WMP and QT.
When PB plays it, the movie is distorted, because it gets re-sized to 125 x 100.
Code: Select all
InitMovie()
Procedure Win()
;--------------
Protected sMovie.s = GetPathPart(ProgramFilename()) + "Busy.avi"
Protected iMovie.i = LoadMovie(#PB_Any, sMovie)
If OpenWindow(0, 0, 0, 200, 200, "Wonky PlayMovie", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
ResizeMovie(iMovie, 0, 0, 100, 100)
PlayMovie(iMovie, WindowID(0))
While MovieStatus(iMovie) = 0 : Wend
EndIf
EndProcedure
Win()
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
End
