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
{{ message }}
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
Version Number of Plugin: 4.4.1
Device Tested On: iPhone 11 Pro
Simulator Tested On: None
Version of VS: 8.3.3 MacOS
Version of Xamarin:
Versions of other things you are using: N/A
Steps to reproduce the Behavior
Pick Video on iOS device and print Path.
Expected Behavior
Returns file with proper extension
Actual Behavior
Does not include a "." in the extension. trim_15708509373509446EF85-239D-4BBB-ACC9-B3128EEEACC3MOV is an example of a file name without the period just MOV no dot. This could be hard to figure out the mime type if you are dealing with more then 2-3 potential media formats that aren't pre defined. Also, I'm not sure if they always end in MOV or if sometimes they don't even have that which could be even more problematic. Thanks, love this plugin.
Code snippet
LoggingController.Info("PickVideoTapped");
await CrossMedia.Current.Initialize();
if (!CrossMedia.Current.IsPickVideoSupported)
{
//DisplayAlert("No Camera", ":( No camera available.", "OK");
return;
}
MediaFile file = await CrossMedia.Current.PickVideoAsync();
if (file == null)
return;
LoggingController.Info("File is not null");
LoggingController.Info(file.Path);
LoggingController.Info(file.AlbumPath);
The text was updated successfully, but these errors were encountered:
Bug Information
Version Number of Plugin: 4.4.1
Device Tested On: iPhone 11 Pro
Simulator Tested On: None
Version of VS: 8.3.3 MacOS
Version of Xamarin:
Versions of other things you are using: N/A
Steps to reproduce the Behavior
Pick Video on iOS device and print Path.
Expected Behavior
Returns file with proper extension
Actual Behavior
Does not include a "." in the extension. trim_15708509373509446EF85-239D-4BBB-ACC9-B3128EEEACC3MOV is an example of a file name without the period just MOV no dot. This could be hard to figure out the mime type if you are dealing with more then 2-3 potential media formats that aren't pre defined. Also, I'm not sure if they always end in MOV or if sometimes they don't even have that which could be even more problematic. Thanks, love this plugin.
Code snippet
The text was updated successfully, but these errors were encountered: