Upload progress in flutter with azure cloud - flutter

I want to show to progress of the video uploaded to the azure cloud can someone give me a sample code for that
i am using file picker to get files from local.
i found video for firebase storage using dio package but i cannot use dio as everthing breaks
A sample code or pseudo code

Related

Upload file to AWS s3 without backend only flutter

I'm trying to upload a video on s3 but nothing works.
Moreover, we can do it using the native code of iOS and Android and connect it using the flutter channel. But It seems too expensive in terms of time and complexity.
We have another way that we can send the media file to our backend server and from the server side, we can upload it to the S3 bucket.
But I'm trying to figure out a way to do this from the front-end side itself.
Thanks for any suggestions.

call google vision Api from Flutter

I want to make a Flutter app where I detect text and number from an image using Google Cloud vision API.
I see the API of Google Cloud Vision is here.
I know that from Flutter, I need to create a json file, with content is an image.
Then, sending that json file to Google Cloud vision endpoint, and get the result back.
However, how can I implement it in Flutter. Is there any example using this.

Flutter Video_Player - Play video from asp.net web API using stream

Flutter is new to me, and I'm creating an app using video_player library, where the video plays from local resource as well as from the internet using direct url like https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4.
However, I am trying to read a stream in chunks and play them to video_player, but it does not seem to be working.
I have created an API with the help of Asynchronously streaming video with ASP.NET Web API which return the Stream outputStream as return value.
Note: The video stored in my file server and API server are also different, and both are on the same network. API server can read the data in chunks from the actual url that is not publicly accessible and its working fine in html video tag.
Does the video_player support such streaming or do I need to use any other player?
Please help me guys, whether they are in the right direction or not.
I am sure the details provided are not enough, but as a flutter beginner this is what i can provide here.
Best Regards,
Hi ten

How to make chat app featuring with file upload like images, videos or pdf in Flutter

I know how to code a chat app with Firebase but have no clue with how to do the file sharing feature in flutter with in the chat screen. I am seeking tutorials to help me learn and understand the same. Also the db is not fixed with Firebase. socket.io is what I was thinking to use with MySQL to save the chat, as socket.io is free.
I am happy to hear what is the best suggested technology on the same in term of solution.
You can integrate image,video and pdf feature with the help you third party storage like firebase storage, aws s3 (simple storage service) etc.
And first you have to upload particular file upload into the storage and after that you will gate a link of that uploaded file and now you have to store that link into the firebase database. and after then you will share videourl in video library and imageurl in networkimage() and pdfurl in pdf library.

Flutter - Upload Video to Youtube

In my app I need the ability to take and upload or save a short 5 to 15 second video. I also need to be able to save the video if the user is offline, and upload it when connected to internet.
I can create the video file with the plugin image_picker, I tried to save it to the users gallery using plugin image_picker_saver but that seems to only handle images.
So I will probably have to use something like path_provider to save it to local storage (again examples of writing files are images as byte data)
When connected is there a way to upload a video to a Youtube account ?
I have read up on some Youtube plugins, but they are geared towards playing videos.
I was thinking of using WebViews to pop up the m.youtube.com/upload page but once you start an upload it goes to the desktop www.youtube.com
Other option to consider is using Firestore as the upload destination when they have a connection, but I would still have to manage offline local storage.
Thank you any help
Edit RE: comments below
Here is what I get when trying to capture a Landscape video on iPhone X with camera plugin: