kawaiiDango / pano-scrobbler

Scrobbles to last.fm, ListenBrainz, libre.fm, GNU FM, Maloja, Pleroma or to a file, on Android

Home Page:https://kawaiidango.github.io/pano-scrobbler/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Extract Feature!

isthatwyll opened this issue · comments

Hi!

I'm having quite a headache trying to figure out how to make use of this new extract feature. I have a private web readio that streams the metadata in the [track] tag as follows:
[artist • track • album]
Example:
Bon Jovi • Never Say Goodbye • Slippery When Wet (Deluxe)

I'd like to make it so that the fields between bullet points get extracted to the metadata field it belongs to, I tried several regex combinations but none were successful.

If someone could help me or point me to a direction, I'd be grateful!!!

Use this for track (?<artist>.*) • (?<track>.*) • (?<album>.*)

OMG many thanks, worked like a charm!!!!