Zeugma440 / atldotnet

Fully managed, portable and easy-to-use C# library to read and edit audio data and metadata (tags) from various audio formats, playlists and CUE sheets
MIT License
460 stars 61 forks source link

Writing FPL Playlist Not Working #230

Closed nlogozzo closed 1 year ago

nlogozzo commented 1 year ago

According to this, looks like FPL playlists are supported...however on writing the file we get an error saying FPL writing not implemented.

Is support planned for it soon? If not, I'd suggest removing this format from the list

Zeugma440 commented 1 year ago

FPL is closed-source; there are no specs afaik.

The project's welcome page does say support is read-only.

image

I'm sorry but I can't go further on that one :(

nlogozzo commented 1 year ago

No worries...just cause we added playlist support to Tagger so I took the list of formats from there...but I'll just remove FPL since it's closed-source. Thanks!

Zeugma440 commented 1 year ago

Should I implement a Writable boolean flag on Format to have that information usable by your app dynamically?

foreach (Format f in PlaylistIOFactory.GetInstance().getFormats())
{
    if (f.Readable)
    {
       // do stuff
    }
    if (f.Writable)
    {
       // do stuff
    }
}
nlogozzo commented 1 year ago

Should I implement a Writable boolean flag on Format to have that information usable by your app dynamically?

Sure :)

Zeugma440 commented 1 year ago

Will do for next release!

nlogozzo commented 1 year ago

Will do for next release!

I'll reopen the issue to use to track :)

Zeugma440 commented 1 year ago

Available on today's v5.08