Replies: 2 comments 2 replies
-
First of all, thanks for your interest 😄 So far I've seen people create children or util methods around Just to be sure I understand your request correctly... would a minimal implementation such at below meet your needs ? public static async Task<Track> FromFileAsync(string path)
{
return new Track(path);
} |
Beta Was this translation helpful? Give feedback.
2 replies
-
Async support is available on writing operations with today's v4.11 Details are documented here : https://github.com/Zeugma440/atldotnet/wiki/Progress-feedback |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've considered using this library because of its simplicity. But considering the amount of file IO in a project like this, I was a little surprised to see there are no async methods for loading metadata.
I realize this is a tall order; looking through the code it seems file reading is done in constructors, which cannot be async. If you could provide something like a LoadAsync method or a static FromFileAsync, that would be very nice.
Beta Was this translation helpful? Give feedback.
All reactions