SpaceK33z / plex2netflix

See how much of your media from Plex is available on Netflix.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Filter output

Ackis opened this issue · comments

commented

An option to filter the output would be nice - only showing those that are matched, or only those that are unmatched.

Good idea!

Until there's an option, there are alternate ways to achieve this. In Linux, something like this should work (I've not tried it to be sure):

plex2netflix --host xxxx --token=xxxxx -s "Movies" | grep " - yes" | tr -d " - yes"

In Windows, this would limit it. I don't know how to remove the ending bit, but that can be done in Notepad or whatever easily. I'm sure someone will come along with a solution for that.

plex2netflix --host xxxx --token=xxxx -s "Movies" | findstr /C:" - yes"

When I tested the Windows one, I did note that it kinda screwed up the character ⅓ though, so that's worth keeping in mind.