Spiff, my question from above remains if you can answer it
Plus I've run into a problem I need some help with.
I have two regex for fanart, one for 720p and one for 1080p.
I need the results from both merged into a usable result. Right now I don't get any fanart at all in XBMC
1080p:
Code:
<RegExp conditional="fanart" input="$$4" output="<fanart url="http://files.mymovies.dk/Backdrops/">\1</fanart>" dest="5+"><RegExp input="$$1" output="<thumb preview="\1" resolution="1080p">\2</thumb>" dest="4"><expression repeat="yes">FileThumb="[^>]*\/(.+)" F[^<]*File1080P="[^>]*\/(.+)" Hash1080p</expression></RegExp><expression noclean="1">(.+)</expression></RegExp>
720p:
Code:
<RegExp conditional="fanart" input="$$4" output="<fanart url="http://files.mymovies.dk/Backdrops/">\1</fanart>" dest="5+"><RegExp input="$$1" output="<thumb preview="\1" resolution="720p">\2</thumb>" dest="4"><expression repeat="yes">FileThumb="[^>]*\/(.+)" File720P="[^>]*\/(.+)" Hash720p</expression></RegExp><expression noclean="1">(.+)</expression></RegExp>
XML which GetDetails is working on:
Code:
<Backdrops>
<Backdrop FileThumb="http://files.mymovies.dk/Backdrops/c4ead747-9c4f-4b6c-b0fd-a4e1d510c45d.jpg" File720P="http://files.mymovies.dk/Backdrops/6e28dea1-d97d-4be9-ac3e-59f3e4a71358.jpg" Hash720P="D7-90-83-0D-17-F4-6A-FB-34-BA-EC-DB-64-B9-14-9A-33-F5-FA-02" File1080P="" Hash1080P="" />
<Backdrop FileThumb="http://files.mymovies.dk/Backdrops/c4041a06-b2d5-42be-8b42-5a1d337bbbdf.jpg" File720P="http://files.mymovies.dk/Backdrops/00b6bc44-516c-4970-a216-a37df4e85707.jpg" Hash720P="E6-67-5D-91-C8-CF-9E-58-4A-58-47-E2-3A-B9-2D-F6-6E-3A-25-AE" File1080P="http://files.mymovies.dk/Backdrops/636eeccb-491a-4b18-9b5f-864426d8a916.jpg" Hash1080P="37-F3-8D-70-6E-81-2D-66-57-03-FB-68-E6-69-CA-F9-EC-A5-51-E8" />
<Backdrop FileThumb="http://files.mymovies.dk/Backdrops/5e88a73c-0927-49cf-8819-78ccf6c8188f.jpg" File720P="http://files.mymovies.dk/Backdrops/9626ceb4-f2c4-4fd3-beec-1571e6b0bdf5.jpg" Hash720P="7D-85-B6-DD-EB-C7-F4-42-F8-77-72-FA-26-A9-D4-A6-F3-45-A1-40" File1080P="http://files.mymovies.dk/Backdrops/231d1f6b-43f6-45c4-9619-b22496608c4b.jpg" Hash1080P="5E-69-1E-80-A3-B4-DA-9B-29-81-4E-54-97-DC-2E-7E-D5-FF-22-D9" />
</Backdrops>
I'm not a regex nor a scraper shark, so wondering if it is possible to merge these results into something which works with XBMC? Tnx