First of all, thank you to everyone who's made this awesome app! To my knowledge, it is the only Android song player that has the ability to delete files, which is thanks to having its own media library implementation rather than using the quite limited one built into Android.
The only major shortcoming the Android app has right now is not being able to save/edit playlist files. I am an experienced developer and I like open-source software and since this feature is important for me, I would like to contribute the complete implementation.
I have been reading the relevant codebases and documentation, and I have come up with 2 possible implementation plans:
- extending libvlc: add new export functionality to libvlc_media_list_t, then use this from vlc-android. Could be something like this:
This function would then convert libvlc_media_list_t to vlc_playlist and call vlc_playlist_Export.
Code: Select all
int libvlc_media_list_export( libvlc_media_list_t * p_mlist, const char *filename, const char *type)
Problems/difficulties:- converting libvlc_media_list_t to vlc_playlist
- making sure vlc_playlist_Export and file-specific exporter modules are available in the Android build
- changes need to be propagated to libvlcjni
- directly in vlc-android
Problems/difficulties:- exporting (playlist file writing) logic needs to be reimplemented in Kotlin
Please help me decide which approach is preferable, or if there's a better alternative.
Thank you in advance