This might help you :) 👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com Source Code: github.com/JohannesMilke/video_example Video Player FullScreen & Orientation Tutorial: kzbin.info/www/bejne/rmG9f4Rmjr2snKc Share Images & Videos Tutorial: kzbin.info/www/bejne/Y4HQhnmYl6ZgfNU Video Skip & Rewind Tutorial: kzbin.info/www/bejne/jqCcZGxjhL6EmK8 Fitness App Video Player Tutorial: kzbin.info/www/bejne/pJ6lZaWGor5rmsk Pick & Crop Image Tutorial: kzbin.info/www/bejne/ponFc4eAqZyZqK8 Image Tutorial: kzbin.info/www/bejne/gHWnoIFoia2qq8k Advanced Image Tutorial: kzbin.info/www/bejne/bXnSdqaCq9uFhsk Fade In Image Tutorial: kzbin.info/www/bejne/hmXbnHR7hNiEiKs Progress Indicator Tutorial: kzbin.info/www/bejne/r2XCqWmJqJ2ahac Detect App Background & App Closed Tutorial: kzbin.info/www/bejne/gKrEoamip9KAaJY Animated Switcher Tutorial: kzbin.info/www/bejne/pmO2o2ukZ69mf5I SharedPreferences Store & Load Data Tutorial: kzbin.info/www/bejne/qauynZ9-iZaGbbs Detect Wifi, Mobile & No Internet Tutorial: kzbin.info/www/bejne/lXXEfXp9r9lrfsU
@ahmadsalem54184 жыл бұрын
You are the best programmer I have seen in my life Thank you continue I wish you good luck
@goplayman56583 жыл бұрын
Thanks for this! If anyone is experiencing issues running on the emulator, run it on a real device :)
@mathemithirn23693 жыл бұрын
If someone has the same problem like me: At 3:20 it's not "&& controller.value.initialized" anymore, but you have to write "&& controller.value.isInitialized" I think that's cause of changes in the newest version of the video_player. BUT nevertheless thanks a lot for that perfect video!!!
@reemaahuja83972 жыл бұрын
Hey .. How to add animated text over video and then save Pls help. Thank you!
@shaansen68213 жыл бұрын
need help... At 3:48 my video is not playing at all. all i am seeing is the circular progress indicator. also, the controller.value.initialized is showing an error and asking to change to controller.value.isInitialized. after print('$controller') it is showing that the controller is not initialized.
@Xx-nd1rs2 жыл бұрын
i have the same issue , did you find a soultion?
@Counter_Hour2 жыл бұрын
Great video! Just one question: is the addListener(()=>SetState(){}) at 1:57 really necessary? It does not appear in the package documentation, sounds a bit expensive for me since it is rebuilding the entire widget tree every time. Am I overlooking something?
@Counter_Hour2 жыл бұрын
@@HeyFlutter thank you, but the listener in this case is not firing every time the controller value changes, rebuilding the state every frame? Big fan of yours 🙏
@HeyFlutter2 жыл бұрын
Thank you, Il Controra! 🙂. It is in init state and only called once when the widget is build initially for the first time
@OBLIVIOUSKARI3 жыл бұрын
I hope you get a million subscribers. Thank you!
@pranavvariar2751 Жыл бұрын
Videos does not play in android while you are on a phone call , even if we press play. How to solve this issue?
@HeyFlutter Жыл бұрын
Thank You @pranavvariar2751! Follow this link: github.com/flutter/flutter/issues/131127 I hope you will get your answer 🙂
@weirdbuggames Жыл бұрын
this channel is a freakin gold mine!
@HeyFlutter Жыл бұрын
Glad it was helpful, @v2gamedev 😀
@gabrielb.90213 жыл бұрын
Therefore I subscribed to your channel and therefore liked the video.
@tycoonthinkers2 жыл бұрын
will the same works well with getx frame work inplace or will work only with stateful widget
@Gammer-zi7wk2 жыл бұрын
very clear & attractive voice that makes the learning process even more better :) and interesting.
@NitishKumar-gx9hu3 жыл бұрын
Hey thank your I am going to subscribe to your channel you deserve our support
@vijaypanday7290 Жыл бұрын
Is there a way to add srt file from a webadress?
@samfights Жыл бұрын
what if i need to initialize video_player from API call?
@HeyFlutter Жыл бұрын
Thank You @sam2ko! Follow this link: pub.dev/packages/video_player I hope you will get your answer 🙂
@nyzmemre3 жыл бұрын
hello i have a mobile application and i developed it with flutter. my app contains iap. I want to show videos to users who purchased premium membership. Does it make sense to give access to hidden videos on youtube channel? Is it a violation for youtube. If so, how should I pull these videos into my mobile app?
@pookystudio67023 жыл бұрын
Hi Johannes , can we also add the video quality change functionality in this player, like quality of video (240p, 360p, 720p etc.)
@pookystudio67023 жыл бұрын
Some please reply...
@pookystudio67023 жыл бұрын
Thanks for the reply Johannes, my video format is .m3u8 , now I want to add video quality change functionality , is it possible??
@nileshkumarsingh98033 жыл бұрын
@@pookystudio6702 did you get any solution .. please help me i am also looking for it :/
@pookystudio67023 жыл бұрын
@@nileshkumarsingh9803 No, still pending...
@HeyFlutter2 жыл бұрын
Thanks, Pooky Studio! 🙂 This depends on the video format. Learn more about it here: www.wowza.com/blog/video-formats-for-on-demand-streaming
@allenrichardyeager84493 жыл бұрын
Hi thank you for making this video its really useful. so I just was wondering about how to make it fullscreen or use I icon button to make it full screen
@pavankumarreddy70513 жыл бұрын
Very well explained and clear voice.
@RajA-me9cl3 жыл бұрын
Question. The field asset @1:10 has a specific value. What if a user wants to select a value from a video list? Cannot be done right? because one has to initialize the Videocontroller.asset() in init method. Is there a way Videoplayer can play the video selected from a List of videoassets? or this is the limitations of using Flutter? Sorry to bombard you with questions Johan, I'm just curious and confused. 🙂
@RajA-me9cl3 жыл бұрын
@@HeyFlutter I've seen it. Thanks for the advice, I'll try it out.
@HeyFlutter2 жыл бұрын
Thanks, Raj A! 🙂 You don't need to initialize the video controller within your init state instead you can also initialize the controller when you have clicked on an item of your list. Check also my tutorials below out: DropdownButton Tutorial: kzbin.info/www/bejne/pmLQq61sYpZssNE AutoComplete TextField & Suggestions Tutorial: kzbin.info/www/bejne/r5O5YpR_rrB5e5I
@RajA-me9cl2 жыл бұрын
@@HeyFlutter Hehe, a year ago, I figured it out. I appreciate your response much more.
@vunguyenquanghoang97322 жыл бұрын
Your videos are always so awesome and helpful, it is very easy to follow and understand, especially for a newbie like me!! Great work !! And big thanks to you
@givansot45813 жыл бұрын
exactly what i was looking for. Thankyou
@bewhy64102 жыл бұрын
how are you my friend I face an issue when I put my video in the assent folder the flutter unable to read the format mp4 so he is asking me to choose an other prefix like .img or .txt ..etc how can I download the mp4 format to my sdk so the android studio will be able to read this kind of files thanks
@HeyFlutter2 жыл бұрын
Thank You Be Why ?! Follow this link: stackoverflow.com/questions/61203212/how-to-download-video-mp4-file-in-flutter I hope you will get your answer 🙂
@kavimanir18723 жыл бұрын
I am using real device for runing. But i am getting platform exception when running the code. can you help me?
@stefanomilani4 жыл бұрын
Great explanation as always! Many compliments Johannes
@mruduladdipalli54173 жыл бұрын
Thanks A Lot, this video helped me a lot, along with mute feature I added extra feature to control volumn using gesturedetector
@josephkamande32192 жыл бұрын
What if you want to play multiple videos?? How will you initialize them?
@HeyFlutter2 жыл бұрын
Hey, Joseph Kamande 🙂 It is not suggested to play multiple videos at once, you need to play single video at a time, initialize it and dispose its controller and switch to next one
@josephkamande32192 жыл бұрын
@@HeyFlutter Thank you Johannes Milke for the reply
@akamadmanfire3 жыл бұрын
Am I the only one who has got up to 3:39 and its not working. The video is playing as I can hear it but i cant see the video playing, just a blank screen. What have I done wrong :(
@akamadmanfire3 жыл бұрын
Sorry it is working. For some reason the video wont show on iPhone Emulator but is showing up on the Andriod
@fgghgfjklhgg91183 жыл бұрын
thanks a lot Johannes Milke for ur awesome tutorials , but does there a viewer for image&video together ?
@stvapp3 жыл бұрын
Hey, really helpful! Do you know any way to save a local video (from project assets) to device local storage? Thank you!
@HeyFlutter2 жыл бұрын
Thank You Stif! Follow this link: stackoverflow.com/questions/41369633/how-to-save-to-local-storage-using-flutter I hope you will get your answer 🙂
@LuminousAsianBeauties3 жыл бұрын
I got this error: ERROR:NoDMA context bound! if that because API28???
@abhishekagarwal67502 жыл бұрын
as always fantabulous!
@rajapaul45003 жыл бұрын
I want my video to be played in zoom to fill like KZbin in flutter app. Is it possible using Chewie video player?
@HeyFlutter2 жыл бұрын
Thank you, Raja! 🙂 Simply watch my tutorial about Videos in Fullscreen: kzbin.info/www/bejne/rmG9f4Rmjr2snKc Yep, sure Chewie is a wrapper around the normal video player by the Flutter Team and gives you a more high-level UI & functionality.
@tusharshah5708 Жыл бұрын
hello im creating a app using video player and im using seekTo to skip videos but my method of seekTo doesnt work for videos over 720p, video is playing from start again, How can i solve this issue. im using videos from gallery and playing them.
@HeyFlutter Жыл бұрын
Thank You Tushar Shah! Follow this link: stackoverflow.com/questions/tagged/flutter-video-player I hope you will get your answer 🙂
@sanjibdutta92704 жыл бұрын
Great as always 👍
@asaelamete3663 жыл бұрын
how can i put the video on a card like on FB or Instagram ??
@andrewdavies57222 жыл бұрын
Hi thanks for the tutorial. It is very helpful. Sometimes though I get the error: Unsupported profile 4 for video/mp4v-es when playing a network asset. Othertimes the videos works. Any idea why that happens?
@HeyFlutter2 жыл бұрын
Thank You Andrew Davies! Follow this link: stackoverflow.com/questions/70553147/video-player-crashes-android-emulator-in-flutter I hope you will get your answer 🙂
@damithdilanka6613 жыл бұрын
You are an awesome programmer
@khanisrarahmedalihusain3 жыл бұрын
Awesome explanation, thanks 👍
@perplexedyou9729 Жыл бұрын
bro can you listen to me
@natnaelmesele4262 жыл бұрын
Thank you very much John! Superb explanation on some overlooked details. Easy to follow. Subscribed! One little question though, how can we catch videos while streaming from network? Any workarounds with the cache manager package?? It would be awesome if you make a video on video caching.
@nishantpantha40372 жыл бұрын
how to retrieve video in our app which is uploaded in firebase storage ?
@nishantpantha40372 жыл бұрын
We can’t view video directly in app unless we download
@priyankadas16262 жыл бұрын
thank you so much.. but following the same ..videos are not running. getting error Error: PlatformException(MEDIA_ERR_SRC_NOT_SUPPORTED, MEDIA_ELEMENT_ERROR: Format error, The video has been found to be unsuitable (missing or in a format not supported by your browser)., null),, only circularprogressindigator is getting displayed. plz help me to understand why video is not initialized.....
@HeyFlutter2 жыл бұрын
Thank You Priyanka Das! Follow this link: stackoverflow.com/questions/67675317/video-player-breaks-down-in-flutter-2-0-null-safety I hope you will get your answer 🙂
@saitejd81083 жыл бұрын
Hey Milke. How can I build a complete video player app where first I show all the videos on the phone in a listview and when he selects one he can see the video on the other screen. Basically what I want here is that how can I access all videos from the user's phone. Hope u will get me a solution. Thank you.
@saitejd81083 жыл бұрын
@@HeyFlutter but there i can't get all the videos from my phone right? How can I do that??
@HeyFlutter2 жыл бұрын
Hello, TEJA DANDE! Follow these links: pub.dev/packages/video_player. I hope it will help you. Thank You 🙂
@fakeandfool64633 жыл бұрын
Hello can you please tell that how to fetch video from firestore also ?
@HeyFlutter2 жыл бұрын
Thank You Siddharth Sharma! Follow this link: stackoverflow.com/questions/56713600/streaming-videos-from-firebase-storage-in-flutter I hope you will get your answer 🙂
@jayswalviraj45282 жыл бұрын
Hallo Sir, How to work this dependency in future builder? Please have you any code?
@HeyFlutter2 жыл бұрын
Thank You Jayswal Viraj! Follow this link: stackoverflow.com/questions/67484069/flutter-change-video-source-dynamically-based-on-video-id I hope you will get your answer 🙂
@jayswalviraj45282 жыл бұрын
@@HeyFlutter dear page not found
@johnniegilkerson47242 жыл бұрын
VideoPlayerFullscreenWidget(controller: controller, key: null,); key:null gives errors on all instances
@samjo75163 жыл бұрын
Great help! Well, how can i play video in local storage in phone
@HeyFlutter2 жыл бұрын
Thank You sam jo! Follow this link: flutter.dev/docs/cookbook/plugins/play-video I hope you will get your answer 🙂
@Xx-nd1rs2 жыл бұрын
the circle progress keeps showing and the video is not displaying at all , can you help me here:(
@fgghgfjklhgg91183 жыл бұрын
on 9:14 you have an mistake which you must put controller into setState .. otherwise on the 8:34 methos will never work .. wonder why you didn't test it on the simolator
@user-uq7zx5nc3t3 жыл бұрын
Hi, Nice video. Much appreciated, thanks. Is there a way to control scrubbing ourselves ? My idea is that it could be used to implement 'scroll to play' , where the video plays fwd or backward as the user scrolls up and down ?
@HeyFlutter2 жыл бұрын
Thank you, Bianca Cat!😊, This is not possible with this package. Simply file an issue here: github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
@lowlydeveloper36933 жыл бұрын
Excellent tutorial! Question: does the movie (video.mp4) have audio track included? On my system (macOS), both in QuickTime player and in the Android Simulator there is no sound playing. If the included video does contain the audio, do you have any suggestions how to fix this?
@lowlydeveloper36933 жыл бұрын
@@HeyFlutter Thanks for your prompt reply, much appreciated! However, the link was not too helpful. I cannot create audio track if it does not exist in the first place. So I only wanted to know if the file (video.mp4) you included inside your projects assets on github did include any audio track or not. ... On my end, I have inspected the file in QuickTime, iMovie and in Handbrake. None of them show any audio track exists, so I assume there is no sound. It could be macOS issue (although I see that you use a mac machine in your tutorial). ... If I am wrong, and if the audio track does exist, can somebody let me know please. Cheers! And keep that funky music playing.
@HeyFlutter2 жыл бұрын
Thank You Lowly Developer! Follow this link: stackoverflow.com/questions/50616323/flutter-apps-audio-not-working-through-speaker I hope you will get your answer 🙂
@johnniegilkerson47242 жыл бұрын
The argument type 'Null' can't be assigned to the parameter type 'Key'
@douglasibiba65903 жыл бұрын
please sir how do i upload music from my phone to my flutter app like Boomplay and the rest thank you
@HeyFlutter2 жыл бұрын
Thank You Douglas ibiba! Follow this link: medium.com/flutter-community/how-to-add-music-audio-to-your-flutter-app-dcb6162c32d7 I hope you will get your answer 🙂
@amirulalif17953 жыл бұрын
Hi, im having a problem with (LateError (LateInitializationError: Field 'blank' has not been initialized.)). What do i need to do?
@amirulalif17953 жыл бұрын
@@HeyFlutter Thanks a lot Johannes!
@HeyFlutter2 жыл бұрын
Thank You Amirul Alif! Follow this link: stackoverflow.com/questions/66734015/lateinitializationerror-field-userdata32329253-has-not-been-initialized I hope you will get your answer 🙂
@hectorprx4 жыл бұрын
Very Nicely Done, Thanks
@KaysonKidsTv3 жыл бұрын
Very good step by step explain ..
@aungkyawmyo28083 жыл бұрын
Can play http URL in network video like m3u8?
@aungkyawmyo28083 жыл бұрын
@@HeyFlutter Thanks Bro 🙏🙏🙏
@dmytro20223 жыл бұрын
can it play 2 videos at the same time?
@dmytro20223 жыл бұрын
@@HeyFlutter well that's what I'm trying to make. Unfortunately I'm still stuck.
@HeyFlutter2 жыл бұрын
Thank You Дмитрий К! Follow this link: stackoverflow.com/questions/65462871/flutter-video-player-multiple-videos I hope you will get your answer 🙂
@ramansharma68883 жыл бұрын
Sir can we save video as life photo in flutter?
@ramansharma68883 жыл бұрын
@@HeyFlutter sir this library not support null safety and its only for ios .
@HeyFlutter2 жыл бұрын
Thank You Raman Sharma! Follow this link: pub.dev/packages/live_photos I hope you will get your answer 🙂
@perplexedyou9729 Жыл бұрын
i cant extract the zip file you have uploaded on the github?? why
@HeyFlutter Жыл бұрын
Hey, @perplexedyou9729 🙂 you need to subscribe on github to access code
@javieraravena83033 жыл бұрын
"The file is not displayed in the editor becouse it is either binary or uses an unsupported text encoding. " Im trying to put a splash screen with a Mp4 file and at the right side of the file inside the assets folder there is an 'U' and when i try to open whe mp4 file this message appears. Any idea ? :X
@javieraravena83033 жыл бұрын
@@HeyFlutter Thank You Johannes very helpful !
@HeyFlutter2 жыл бұрын
Hello, Javier Aravena! Follow this link: stackoverflow.com/questions/40081801/decode-binary-file-in-visual-studio-code, I hope it will solve your problem. Thank You 🙂
@deepjyotibaishya75763 жыл бұрын
how to play video in list view from local File access
@deepjyotibaishya75763 жыл бұрын
@@HeyFlutter Thank you
@HeyFlutter2 жыл бұрын
Thank You Deepjyoti Baishya! Follow this link: pub.dev/packages/video_player I hope you will get your answer 🙂
@pedrodelacruz23694 жыл бұрын
Excellent!!! Thanks men
@theghost66063 жыл бұрын
When im trying to use the .file method im getting an error that it couldnt find the file although ive entered the correct file.
@theghost66063 жыл бұрын
@@HeyFlutter Thank you Johannes for your help. I already did this and the error still persists. This is the File : File file = File('C:/Users/Username/OneDrive/Desktop/testfile/testVid.mp4');
@theghost66063 жыл бұрын
@@riazulislamrifat485 No still having the Problem :( After trying a bit i found out that when im using a file on my virutal device the error message changes from a file not found exception to a permisson denied exceiption. So maybe you have to use a file on your virtual device. If you find a solution please let me know : )
@HeyFlutter2 жыл бұрын
Thanks, The Ghost! 🙂 Simply pick your file first and then you can print the path to your file to verify that you have chosen the right one. Learn more about picking videos or images here: kzbin.info/www/bejne/eHLKfYJ3fMyUaNE
@ahmedtaha10572 жыл бұрын
Do you know, my friend, if I want to make an application to upload videos, this application using flutter, please help me
@HeyFlutter2 жыл бұрын
Thank you, Ahmed taha! Check out this video about uploading videos to firestore: kzbin.info/www/bejne/aamcY61mpK2Vqrs&ab_channel=JohannesMilke
@ahmedtaha10572 жыл бұрын
@@HeyFlutter thank you so so so so so so much
@fadyna5la3 жыл бұрын
i have a problem when i try this tutorial on emulator it is run , but on physical android device video is not play and still loading
@HeyFlutter2 жыл бұрын
Thank you, fady! 🙂 Please file an issue for the video player package then here: github.com/flutter/flutter/issues
@qamarabbasi46953 жыл бұрын
how to automatically play the next video?
@animeclips3 Жыл бұрын
Please Sir guide me I want to play network video but for each link(Facebook, KZbin or Instagram ) i got Playback error UnknownHostException (no Network) Video player had error ExoPlaybackException: Source error
@HeyFlutter Жыл бұрын
Thank You @animeclips3! Follow this link: stackoverflow.com/questions/19951466/java-net-unknownhostexception-unable-to-resolve-host-url-no-address-associ I hope you will get your answer 🙂
@adeelzahid96224 жыл бұрын
awesome. helpful, easy, quality content .. Thanks
@ChuckyMasterDF3 жыл бұрын
Hi Johannes.. when I try to import video_player, error 65 appears. I've tried the other versions that are on pub.dev but none of them worked. Do you know how to solve this problem?
@ChuckyMasterDF3 жыл бұрын
@@HeyFlutter Firend.. I discovered the problem. It conflicts with the name of the project for the same as the package.
@HeyFlutter2 жыл бұрын
Thanks, CuckyMaster 🙂 Simply open an issue for the Flutter Team here: github.com/flutter/flutter/issues Also make sure to run flutter upgrade to have the latest version of Flutter.
@androider58303 жыл бұрын
How to retrieve all the videos from internal and external storage?
@HeyFlutter2 жыл бұрын
Hello, Androider! Follow these links: stackoverflow.com/questions/49399958/how-to-get-all-pdf-files-from-internal-as-well-as-external-storage-in-flutter, I hope it will help you. Thank You 🙂
@ankiy4 жыл бұрын
But what if we want double tap feature like KZbin forward and backward.?
@ankiy4 жыл бұрын
@@HeyFlutter thanks man will follow this tutorial 😊
@HeyFlutter2 жыл бұрын
Watch this tutorial on how to rewind & skip the video: kzbin.info/www/bejne/jqCcZGxjhL6EmK8 You could create within the Stack of your OverlayWidget 2 Containers which are Expanded and if you tap on the right side of the Container you will go forward and if you tap on the left side of the Container you will go backward. Watch also my tutorial about Expanded to learn how to implement this Expanded Container: kzbin.info/www/bejne/jpmrnIWKjbZlmaM
@hypealex3 жыл бұрын
I love your voice!
@AndersonSantos-qx5lu3 жыл бұрын
support m3u source?
@AndersonSantos-qx5lu3 жыл бұрын
@@HeyFlutter do you know any plugin that allows streaming using magnet link?
@HeyFlutter2 жыл бұрын
Thank you, Anderson Santos!😊, This is not possible with this package. Simply file an issue here: github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
@trinhnguyenhuongkieufgwhcm21662 жыл бұрын
Hi have a problem like this : FlutterError (No Material widget found. IconButton widgets require a Material widget ancestor. In Material Design, most widgets are conceptually "printed" on a sheet of material. In Flutter's material library, that material is represented by the Material widget. It is the Material widget that renders ink splashes, for instance. Because of this, many material library widgets require that there be a Material widget in the tree above them. To introduce a Material widget, you can either directly include one, or use a widget that contains Material itself, such as a Card, Dialog, Drawer, or Scaffold. The specific widget that could not find a Material ancestor was: IconButton Are u have any idea, many thanks
@HeyFlutter2 жыл бұрын
Hello, Trinh Nguyen Huong Kieu (FGW HCM)! Follow this stackoverflow.com/questions/43947552/no-material-widget-found I hope it will solve your problem. Thank You 🙂
@salihmohammad92572 жыл бұрын
Thanks 😊
@HeyFlutter2 жыл бұрын
You are welcome, Salih Mohammad!
@saadelka Жыл бұрын
you are the best
@HeyFlutter Жыл бұрын
Glad to hear that, Thank you @saadelka! 😊
@johnniegilkerson47242 жыл бұрын
you did not include the packages: f'package:file_picker/file_picker.dart'; and package:video_player/video_player.dart'; on github
@johnniegilkerson47242 жыл бұрын
@@HeyFlutter thank you for your reply
@ezone27264 жыл бұрын
How can we make an flutter app where one app can login only one device ; if user will add another account it won't sign in the app? Also teach us how to change the account and have to access the admin will delete account? Does this will be possible? If possible please help me! #helpmeout #thankyou #flutter #happycoding
@HeyFlutter2 жыл бұрын
There will be soon a video about changing accounts, Ezone! 👍 For the other question "How can we make a flutter app where one app can login only one device". You could work with SharedPreferences here and save the account name of the signedin user, if the user tries to logout and login in again you load the SharedPreferences and check if he is using the same username or a different one to determine if he is allowed to login again. Check also my tutorials out about SharedPreferences to learn more about it: 1) Shared Preferences & Json Tutorial for Beginners: kzbin.info/www/bejne/qauynZ9-iZaGbbs 2) Load & Save JSON Complete GUIDE Tutorial: kzbin.info/www/bejne/Y2SVeXyph8tlbNE 3) Load JSON From Network Tutorial: kzbin.info/www/bejne/iJ3JZqRoeqx7sMU
@bariscelebi7013 жыл бұрын
Can you show me all the codes you wrote?
@HeyFlutter2 жыл бұрын
Thank you 😊, Barış Çelebi! Check out this code here :kzbin.info?event=video_description&redir_token=QUFFLUhqbVNYWHZheGYyUDZuRi1ySjlwYk5sNkdPSHNOZ3xBQ3Jtc0tsYW02MjU2dlcxOEVuSzNGS09aQXpZSlJ6OHdhQmdFY1E4QmZFa3gwUnI3VzV5Yzlzekd4Rm01dnI3TEdhanNVc0diX0xoRFJWd3FBRm00ekJFc25MZGJmRkQ5Ykw0MWw2ajZYVWc2MnNvNzBQNldBMA&q=https%3A%2F%2Fgithub.com%2FJohannesMilke%2Fvideo_example
@explorersagnik85223 жыл бұрын
Thank you so much
@explorersagnik85223 жыл бұрын
@@HeyFlutter I am trying to make an instagram clone but i am not able to use the video player properly in feeds part. When i am using a listview builder to show the user all the different post of the user's followers then the video posts are not working right manner.Can you please make a video on how to display multiple video in a listviewbuilder using auto play just like the instagram feed
@Designguidetv2 жыл бұрын
uh oh, this code doesnt really seem to work anymore. Mainly because of the null rules?
@HeyFlutter2 жыл бұрын
Thank you, Designguide.tv! 🙂. May be it needs only slightly changes.
@Designguidetv2 жыл бұрын
manage to get it working in the end!
@Designguidetv2 жыл бұрын
@@HeyFlutter I did discover a different problem with the videoplayer on android, when playing large files it is giving out of memory, waitforGcToComplete and clamp target GC before it crashes, apparently flutter video on android can't handle big files, is there a trick to avoid this memory leak?
@niteshsurya29313 жыл бұрын
Thank You. bro love you
@triandrewicaksono55533 жыл бұрын
how to solve, flutter Failed to initialize OMX.qcom.video.decoder.avc, error 0xfffffff4, this disaster bug pulling my hair so hard
@HeyFlutter2 жыл бұрын
Thank you, Tri! 🙂 Make sure to file an issue about your video package issue here: github.com/flutter/flutter/issues
@bluetim68484 жыл бұрын
thank you siir,
@aliqadomy2 жыл бұрын
this for only .mp4 i can't play yhoutube video
@HeyFlutter2 жыл бұрын
Hey 😊, @user-rt1zt5nc8p! Check out this video for playing youtube videos: kzbin.info/www/bejne/fYLciHyrp5Vml9k
@aliqadomy2 жыл бұрын
@@HeyFlutter thank you
@TheLeadStriker4 жыл бұрын
We don't deserve Johannes 😭
@mohtarifhossame2 жыл бұрын
best
@HeyFlutter2 жыл бұрын
Thanks, محترف Mohtarif! 🙂
@tommytbonescramer39083 жыл бұрын
I'm lost and I've only watched 30 seconds of this tutorial. switching between files and moving so fast I don't know what file I'm suppose to be working with. I stopped watching because I'm so confused with instructions and after the 3rd time watching I'm not any closer to accomplishing my goal. I don't think this video is helpful
@tommytbonescramer39083 жыл бұрын
@@HeyFlutter I'm not a beginner I've been coding for 20 plus years
@HeyFlutter2 жыл бұрын
Thanks, Tommy TBones Cramer! 🙂 This video is for more advanced Flutter developers. Check out my Flutter beginner tutorials here: kzbin.info/www/bejne/rqCuooSgiKmNbJI
@khubaibirfan92152 жыл бұрын
Sir?
@HeyFlutter2 жыл бұрын
Thank you, khubaib irfan! 🙂. Yes.
@danieldickson46563 жыл бұрын
Legen.....dary
@yknmalayalam5 ай бұрын
സാധാ വീഡിയോ പ്ലെയറാണ് മോനേ ഇത്
@HeyFlutter5 ай бұрын
Thank you, @yknmalayalam! 🙂
@khubaibirfan92152 жыл бұрын
video loaded through network PlatformException(VideoError, Video player had error com.google.android.exoplayer2.ExoPlaybackException: Source error, null, null).this is a error
@khubaibirfan92152 жыл бұрын
??
@HeyFlutter2 жыл бұрын
Thank You khubaib irfan! Follow this link: stackoverflow.com/questions/68608353/platformexceptionvideoerror-video-player-had-error-com-google-android-exoplaye I hope you will get your answer 🙂
@khubaibirfan92152 жыл бұрын
@@HeyFlutter sir apke audio player wale video outdated hu gae hai pls new vidoe bnade