vikram25897 / flutter_cached_video_player

BSD 3-Clause "New" or "Revised" License
95 stars 145 forks source link

About the maxFileSize #9

Open PavieOlivier opened 4 years ago

PavieOlivier commented 4 years ago

What do you mean by the max file size? You mean the maximum size of the file that can be cached? if the file size is greater than 100MB will I still be able to play the video? Thank you

vikram25897 commented 4 years ago

From the official exoplayer documentation: The sink is configured to fragment data such that no single cache file is greater than maxCacheFileSize bytes. So if your file is greater than 100MB then it will be stored as multiple fragments on device.

shabake commented 4 years ago

From the official exoplayer documentation: The sink is configured to fragment data such that no single cache file is greater than maxCacheFileSize bytes. So if your file is greater than 100MB then it will be stored as multiple fragments on device.

Can I get the cache path

vikram25897 commented 4 years ago

You can refer to #3 .

shabake commented 4 years ago

You can refer to #3 .

thank you very much

Besides, can I get the download progress of the video?