You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the the latest VS 2022 as of 11 Jan.2025, .Net 9
Use the latest the Mediapicker nuget package
When taking a video from MAUI app on iPhone, and video is NOT saved the album folder. The source code sample is below:
FileResult video = await MediaPicker.Default.CaptureVideoAsync();
// UIVideo.SaveToPhotosAlbum()
// save the file into local storage
string localFilePath = Path.Combine(FileSystem.CacheDirectory, video.FileName);
using Stream sourceStream = await video.OpenReadAsync();
using FileStream localFileStream = File.OpenWrite(localFilePath);
await sourceStream.CopyToAsync(localFileStream);
The text was updated successfully, but these errors were encountered:
Use the the latest VS 2022 as of 11 Jan.2025, .Net 9
Use the latest the Mediapicker nuget package
When taking a video from MAUI app on iPhone, and video is NOT saved the album folder. The source code sample is below:
The text was updated successfully, but these errors were encountered: