Flutter Audio with Circle Progress - flutter

I need to create a screen that plays back mp4 audio files, with play, pause, stop controls and shows progress via a circle progress indictor. Does anyone know if a package exists for this, or combination of packages?
So what I am trying to create would be similar to the following:

I made a clone of the Circular Progress Indicator using the documentation described by pskink in the comments enter link description here . Many thanks and gratitude to him for helping with this.

Related

How to build a Flutter app for video editing with pause, shape annotations, and saving features?

I want to build a Flutter app that allows users to edit videos by pausing at any frame, add shapes such as arrows, circles, or any custom shapes on the video by choosing the shape and add it to the desired position in this frame (the user should add it by finger),this frame will be paused for some specific seconds then the video continue, and save the new video. What is the best way to implement this functionality if possible?
the image below for a pc program clarifies what I want:
video editor for windows
Specifically, I'm looking for suggestions on:
How to add shape annotations to the video?
How to make elongate the edited frame for a specified time
How to save the edited video
Any code snippets, tutorials, or examples would be greatly appreciated. Thanks in advance!
I've tried searching for packages or libraries that can help me achieve this, but haven't found anything specific(i found ffmpeg for flutter but I couldn't find how to use it to add the overlay for specified time and for choosing the position by finger ) . I'm also not sure about the best approach to implement this feature. Can someone provide some guidance on how to proceed?

Flutter How to make background Carousal image like below image

Is there any package to design below screen like. I tried lot of time on Online to get solution, but i didn't get any solution.
Can any one help me how to develop carosual card like below image ?
I've used this carousel slider package once.
also, this video might help. Kind of similar to your needs.
(I'll update the answer once I get to my computer.)

How to create a custom video palyer in Flutter?

I need to create the following video player for my app: Screenshot from Netflix. I need a start/pause button, a back button, the title of the video, and a time indicator. The video should also always be in landscape mode. I've already found a lot of video players in flutter but I haven't found a way to modify them. If anybody knows a good library, a tutorial, or has some source code it would really help me out, thanks.
I think your best bet is using the video_player package, as it's the most bare-bones package out there. You can make the player all to your liking by using the Stack Widget, having the video at its base and any other elements on top of it. It should be very doable; only the progress indicator is kind of complex, but it's not too bad.

How to create thumb button VB.net

Excuse me, I'm developing Music player and I want to create thumb button same as Windows media player. How to create it? Thanks
Hey i been looking for the same answer, so far no luck
but i found these.
https://msdn.microsoft.com/en-us/library/system.windows.shell.taskbariteminfo%28v=vs.110%29.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
Scroll down to Remarks.
there are example provided by Microsoft how to create a small play button and stop button.
Hope that's helpful

iPhone video recording app with label on top

The idea of the app is that the phone records some footage and on top of that should be a label which changes value throughout the filming process. How can the label be added on to the final movie? Is it possible to directly integrate the label to the movie while recording? Any helpful tips or links will be highly appreciated.
Check AVFoundation's reference of AVAssetWriter.
Besides that, there are plenty examples and questions out there on that component - also here on StackOverflow.