http://carm3d.com/PureBasicForum/April6_Options.mp4
Enjoy!

EDIT: I am not keeping these older videos online.. Skip ahead to the end of the thread to see the latest updates.
Thanks! Have any of you guys utilized a video codec in PureBasic? I'm just loading sprite sheets of full frame images for my animation.
Code: Select all
;
; ------------------------------------------------------------
;
; PureBasic - Movie example file
;
; (c) Fantaisie Software
;
; ------------------------------------------------------------
;
If InitMovie() = 0
MessageRequester("Error", "Can't initialize movie playback !", 0)
End
EndIf
MovieName$ = OpenFileRequester("Choose the movie to play", "", "Movie files|*.avi;*.mpg|All Files|*.*", 0)
If MovieName$
If LoadMovie(0, MovieName$)
OpenWindow(0, 100, 150, MovieWidth(0), MovieHeight(0), "PureBasic - Movie")
PlayMovie(0, WindowID(0))
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
Else
MessageRequester("Error", "Can't load the movie...", 0)
EndIf
EndIf
Oh thank you very much!pjay wrote: Sun Apr 06, 2025 3:32 pm PureBasic has built-in movie playing functionality, the sample below is from the help file:
Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167Carm3D wrote: Thu Feb 27, 2025 4:11 am You can't see the images? Strange.. They are showing for me. They are links to images I posted to Discord. Unless I am mistaken there is no way to attach images or files to my posts.
I do! Teach me your secrets!SPH wrote: Tue Apr 22, 2025 10:56 pm Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167
Yoo see pics ?![]()
With that :Carm3D wrote: Thu Apr 24, 2025 1:29 amI do! Teach me your secrets!SPH wrote: Tue Apr 22, 2025 10:56 pm Look my post : https://www.purebasic.fr/english/viewtopic.php?t=81167
Yoo see pics ?![]()
Meanwhile.. Here's another fun update on my game:
http://www.carm3d.com/PureBasicForum/DI_CaseAppears.mp4
D'awww.. That's no secret. You're hosting it externally.