how solve flutter with just_audio package problem - flutter

i used Just_audio pakage for load audio assets for windows app but when I turn the app show me
iam use this way to load assets
if you have solution for this problem or other ways to load assets or another package for windows flutter please tell me

Related

How to load and show a video file flutter web

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!

How to read images from mobile library

I am looking for flutter package that can help in reading images in mobile library. Any idea if such a package exists
I appreciate your help.
A Flutter plugin for iOS and Android for picking images from the image library, and taking new pictures with the camera.
$ flutter pub add image_picker

If I include asset images from my PC in my flutter app and publish it on the Play Store, will the images appear in the app?

I have included images from my PC instead of web images, do I need to use web images instead ?
You can include images from your PC too! But make sure you maintain a proper assets folder and update in pubspec.yaml such that you can use it in your app.
Refer: https://flutter.dev/docs/development/ui/assets-and-images

flutter play local video simply without video_player plugin

I am making application which plays local video simply.
At first I use https://pub.dev/packages/video_player,
video_player: ^0.10.2+1
However in some reason, it doesn't work in my environment, and more over only a few old version works on flutter 1.9 (my flutter is 1.9)
So, now I want to use play video another plugin or without plugin.
But,I cant find any document, other than this plugin.
What I want to do is just playing one video with native video player.
Where should I start??
I recommend updating your Flutter install with flutter upgrade. The current stable version is 1.12.13, and most of the plugins owned by the Flutter team have bumped their minimum SDK version to 1.12.13.

Is there a way to open other applications in flutter

I need to be able open other apps in my flutter application
In an application i am working on I need to be able to play videos however the video_player plugin in flutter only has play and pause options and there is chewie also however we don't have the option of pausing chewie with commands , so I am thinking of opening videos through other apps like vlc,MX players, etc. How do i open these apps in flutter.
Please take a look at the open_file plugin, it supports opening most of the file including videos.
Example usage:
Specify dependency in pubspec.yaml
dependencies:
open_file: ^1.1.1
then
import 'package:open_file/open_file.dart';
OpenFile.open(your_file_path);
Hope that helps!