Hey everyone, sorry for the title, couldn't think of something proper.
I've had an app idea on my mind for a while. I have a lot of music and I want to be able to tag them properly and also be able to create playlists from them.
I've been working on it for a while and I recently finished the tagging part of things and it works amazingly.
But I'm having issues with creating the playlists.
I've thought of 2 ways to achieve it so far;
- Simply "open" the files with the default associated application.
Which was much more complicated than I thought. I want to use my program both in Windows and Linux. The last commands I came to for linux was "posix_spawn" and for Windows it was "ShellExecute". Both have security issues, permission issues and such.
- Create playlist files
Cross-platform but not cross-media players 😄 Also doesn't need bunch of permissions and won't light up Windows' anti-virus stuff. But then I'd have to deal with each player's own playlist format (such as VLC, windows media player, etc.)
How do you guys think I should achieve this? So far I think the best solution seems to be creating playlist files but I just wanted to hear some ideas.
Thank you.