Hello,
Is it possible to display images in local directory one by one as slideshow?
I tried TRVCamera set to rvdtFile, URL to directory, CycleVideoImages to True and then via TRVCamera.VideoImagesURLs.Add(filename with or withou path) and then call PlayVideoStream but nothing happened.
RVMedia 9.2, VCL, FFMPEG, Delphi 11.2, 64bit
How to play image files in specified local directory
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: How to play image files in specified local directory
CycleVideoImages works only with DeviceType=rvdtIPCamera or rvdtHTTP, and images must be on HTTP location.
If you want to make video from custom images, assign DeviceType = rvdtUserData, and provide images in OnNewImage event.
If you want to make video from custom images, assign DeviceType = rvdtUserData, and provide images in OnNewImage event.
Re: How to play image files in specified local directory
Thanks it works