In current agora Flutter SDK, I can't able to take screenshot. Please guide is there is any API or workaround to take a screenshot using the agora plugin
I tried to take a screenshot using the screenshot plugin(https://pub.dev/packages/screenshot#-installing-tab). But it produces a blank screen image
Please guide to fix this
Agora Flutter SDK is using Surface View because of which you wont be able to take screenshot of the stream, as it will return with a black screen.
This is the workaround that I found for this: I used this package instead
to take the screenshot. I also have also written a sample code to illustrate agora flutter SDK and native_screenshot package. You can have a look here : https://github.com/Meherdeep/agora-videocall-demo
Note: This package is only supported for API version > 24
Related
I want to show a video in my website developed using flutter web, what the solution for this problem?
Note: Using video_player package doesn't work for file. VideoPlayerController.file() not implemented for flutter web.
Thx for help!
Is there any way to use the following link's structure to build app in flutter?
I want to make a document collaborated app.
https://www.pdftron.com/blog/android/build-real-time-collab-with-firebase-1/
Just scrubbing a bit through PDFtron docs and you will realize they offer pretty neat support for flutter.
As written in the docs you can access all native APIs, so you can achieve the same result from your link with the structure custom-tailored for your needs.
There is even a flutter repo with a wrapper that you can start at.
You can do the following:
Build the project in Flutter with Firebase support by reviewing the
official Flutter docs.
Build the User Interface using Flutter widgets (see sample below and customize for your usage)
Get the PDFTron/Flutter SDK
Build the document viewer in Flutter (this is a flutter code sample)
Read the other samples and cookbooks for more info at the same site
Additional setup for having the Firebase work on the iOS side
will be needed. See the Firebase docs noted earlier and this video for an overview
I am trying to use the audioplayers plugin in flutter to play the radio at the following link
https://video2b.vixtream.net/radio/v/fbcfm
I tried setting the url but that doesn't work.
I am not sure how to extract the streaming url and set it in the AudioPlayer.
Any help is appreciated.
Thanks
You can use flutter radio package. It will full fill your requirements. Check working flutter app here...
Source code
Here iam working with Unity+Vuforia and Flutter
While i play and build the unity app in the unity with vuforia, it works fine
But after i export it to my flutter project using this method, when i press the button from my app to open the unity scene, it says : error screenshot
Any suggestions?
Regards, Slim
The package is corrupted, you can see the many problems in the issues section. Unity runs better on flutter using this package. You can see a full integration example we created in this repo.
I am trying to add a photo editor functionality to my ionic framework application. How ever I couldn't find a decent sdk that goes with it. I'd like add
aviary/creative
sdk but there is not an obvious way to do it. I tried angular-aviary plugin for cordova but that is not working anymore. Please help me find a good photo editor sdk that works with cordova/ionic framework. Any help would be appreciated, thanks...
I've spent about a week looking for the same thing. Beyond the Creative SDK there is also the img.ly PhotoEditor SDK which offers Android, IOS, and HTML5 as well. But as with Creative none of it is easily compatible with Ionic. I'm still looking for a solution but would be very interested if others have ideas as well!
Have a look at the PhotoEditor SDK Cordova Plugin Demo and the guide for integrating the editor under Ionic and Cordova to get an idea of how to get the editor working under Ionic. Basically, it works like this:
The idea is to create a Cordova app that allows the user to open an image from their photo library and edit this image using the PhotoEditor SDK on iOS and Android. This is done by using an existing library to access native photo pickers on both platforms and passing the path to the found image to a plugin. The plugin manages the configuration and opening of the PhotoEditor SDK’s editor and passes the edited image back to Cordova.
I was in search of this functionality and founded a proper documentation for ionic Framework from PhotoEditor SDK . Please follow the instructions given here to add Photo Editing functionality in ionic app Quickstart for ionic Framework
Hope it will help someone.