Jump to content

Dave Nottage

Members
  • Content Count

    1613
  • Joined

  • Last visited

  • Days Won

    37

Posts posted by Dave Nottage


  1. 4 hours ago, fkork said:

    We are need rtmp live camera sdk for delphi  which is a  live camera rtmp publish component for Android and IOS can be used to develop video broadcast mobileapp

    Does it absolutely have to be RTMP? Just seems like RTMP is fading while other streaming methods like WebRTC are taking over.

     

    Alcinoe has implementations for WebRTC for Android and iOS: https://github.com/Zeus64/alcinoe. There's also a demo that uses it, here: https://github.com/Zeus64/alcinoe/tree/master/demos/ALLiveVideoChat


  2. 3 hours ago, meshael said:

    I couldn't determine where to put my project's files that the program uses

    I had a look at Packages and could not work that out, either.

    3 hours ago, meshael said:

    Its about 20 subfolders holding about 1,000 text files and images.

    Your project is?

     

    I've been working on an app called Mosco that creates .pkg installers (amongst a number of other things). It doesn't have the Presentation customizations that Packages does, but I might be able to add those if needed. I have a plan to release it commercially sometime early next year. If you're interested in Mosco and use Slack, you could use this self-invite link to join my Slack workspace: https://slack.delphiworlds.com and I could add you to the private beta channel.

     


  3. 1 hour ago, at3s said:

    Has anyone something similar?

    Yes - are you perhaps using an older version of the Grijjy Error Reporting code? The error in question was happening before they updated this unit:

     

    https://github.com/grijjy/JustAddCode/blob/master/ErrorReporting/Grijjy.ErrorReporting.pas

     

    Otherwise, you'd need to detail exactly what you're compiling and perhaps include a reproducible example.

     

     

    • Thanks 1

  4. 8 hours ago, zburns said:

    Checking out the platform status page - looks like Android 11 isn't supported anyway

    It's yet to be officially supported, however you can build apps with 10.4.1 that will run on Android 11 devices.

    8 hours ago, zburns said:

    stating to contact the developer

    What is the exact message? Is this an app that was created in an earlier version of Delphi?


  5. 2 hours ago, eg1 said:

    Also jvesoft have Admob and Facebook Audience component but I don't understand how he is added this framework successfully

    Given that the instructions are to include the framework with the project, I assume he is loading it dynamically. If I have time, I'll give it a shot myself, however if you have this file:

     

      https://github.com/DelphiWorlds/Kastri/blob/master/API/DW.iOSapi.FBAudienceNetwork.pas

     

    Replace the implementation section with:

    uses
      Posix.Dlfcn;
    
    var
      FANModule: THandle;
    
    // procedure FBAudienceNetworkLoader; cdecl; external libFBAudienceNetwork; // <---- Uncomment this if using static binding
    
    initialization
      FANModule := dlopen(MarshaledAString(libFBAudienceNetwork), RTLD_LAZY);
    
    finalization
      dlclose(FANModule);
    
    end.

    You'll still need to follow the instructions on the jvesoft site regarding signing/deploying FBAudienceNetwork

     

    Good luck! 🙂

     

    • Like 1

  6. 18 hours ago, MikeMon said:

    Actually, I think this has to do with Firebase using Kastri

    I'm having similar issues, i.e. building Firebase against iOS 14.2 SDK. Looking into it...

    • Like 1

  7. 2 hours ago, Eric58 said:

    Modifications Needed on Han's code:

    The only changed that Hans needed to stop it crashing for him was to change this:

    FProductsRequest.setDelegate((FProductsRequestDelegate as ILocalObject).GetObjectID);

    to this:

    FProductsRequest.setDelegate(FProductsRequestDelegate.GetObjectID);

     

    • Like 2
×