Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/14/20 in all areas

  1. Renate Schaaf

    Project Bitmaps2Video on GitHub

    This is my video-project on GitHub: https://github.com/rmesch/Bitmaps2Video I am presenting it here, because it is useful as it is, but could use some ideas for improvement. Features: A Delphi-class to support encoding of a series of bitmaps and video clips to a video file Requires the ffmpeg-library and is intended as an easy to use interface to this library Versions for Win32/Win64 and a cross-platform version currently supporting Win32/Win64/Android32/Android64 Most popular file formats and codecs supported, more codecs contained in FFMpeg can be registered Rudimentary support for adding an audio-stream Demos for both versions, set up to compile and run "out of the box", as library files and support for their deployment to Android are included There are some problem areas though, the most important one in my opinion being threading issues with TBitmap under Android. For more see the readme and the demos. Critique, ideas, bug reports most welcome, maybe someone would even like to contribute, that would be delightful. There have been valuable contributions so far, but there are some areas which could use the input of an expert. Thanks for reading, Renate
  2. dummzeuch

    Feature request: remember debugger exception dialog size

    OK, even though you didn't file a feature request, I just implemented this in revision #3370.
  3. Remy Lebeau

    TIDMessage Date

    The TIdMessage.Date property is expressed in LOCAL TIME, not in UTC. The only way the TIdMessage.Date property would be in UTC is if either the calling machine is actually in the UTC timezone (which you say is the case here), or if Indy can't determine the local machine's timezone correctly. If you want to read an email's original timestamp (which may or may not be in UTC to begin with), you can read the raw 'Date' header via the TIdMessage.Headers.Values['Date] property. But then you will have to parse the string yourself.
  4. Remy Lebeau

    Opening a document in FMX without custom code

    There is no cross-platform way to open a path/url. Every platform has different requirements, so you need platform-specific coding.
  5. Jose Morango

    Problem with Delphi RIO 10.3.3 and Google API Level 29

    Dave I Finally got it working, Thanks
  6. aehimself

    fun coding challenge

    Just store the TMemos in a TList when you create them so you don't have to find them later. When generating; have two nested cycles going through that list. Outer from Low(list) To High(list) - 1; inner from outer var to High(list). Not efficient, but easy enough to understand what is going on.
  7. Fr0sT.Brutal

    fun coding challenge

    Quite trivial with recursion
×